diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs index 8fe09b5e06ff..dbb64ba1046f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs @@ -401,6 +401,28 @@ public static ProxyModels.CloudTaskListResponse CreateCloudTaskListResponse(IEnu return response; } + /// + /// Builds a CloudTaskListSubtasksResponse object + /// + public static ProxyModels.CloudTaskListSubtasksResponse CreateCloudTaskListSubtasksResponse(IEnumerable subtaskIds) + { + ProxyModels.CloudTaskListSubtasksResponse response = new ProxyModels.CloudTaskListSubtasksResponse(); + response.StatusCode = HttpStatusCode.OK; + + List subtasks = new List(); + + foreach (int id in subtaskIds) + { + ProxyModels.SubtaskInformation subtask = new ProxyModels.SubtaskInformation(); + subtask.Id = id; + subtasks.Add(subtask); + } + + response.SubtasksInformation = subtasks; + + return response; + } + /// /// Builds a NodeFileGetPropertiesResponse object /// diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj index 58c260efde12..07b4281442bd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -43,9 +43,9 @@ ..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll - - False - ..\..\..\packages\Azure.Batch.2.0.2\lib\net45\Microsoft.Azure.Batch.dll + + ..\..\..\packages\Azure.Batch.3.0.0\lib\net45\Microsoft.Azure.Batch.dll + True ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll @@ -180,6 +180,8 @@ + + @@ -225,6 +227,7 @@ + @@ -335,6 +338,12 @@ Always + + Always + + + Always + Always @@ -608,9 +617,15 @@ Always + + Always + Always + + Always + Always @@ -650,6 +665,9 @@ + + PreserveNewest + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/DisableBatchComputeNodeSchedulingCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/DisableBatchComputeNodeSchedulingCommandTests.cs new file mode 100644 index 000000000000..b166ac044fa4 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/DisableBatchComputeNodeSchedulingCommandTests.cs @@ -0,0 +1,97 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System.Collections.Generic; +using System.Management.Automation; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; +using Microsoft.Azure.Batch.Common; + +namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodes +{ + public class DisableBatchComputeNodeSchedulingCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase + { + private DisableBatchComputeNodeSchedulingCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public DisableBatchComputeNodeSchedulingCommandTests() + { + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new DisableBatchComputeNodeSchedulingCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void DisableComputeNodeSchedulingParametersTest() + { + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.PoolId = null; + cmdlet.Id = null; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.PoolId = "testPool"; + cmdlet.Id = "computeNode01"; + + // Don't go to the service on an Disable Compute Node Scheduling call + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Verify no exceptions when required parameter is set + cmdlet.ExecuteCmdlet(); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void DisableComputeNodeSchedulingRequestTest() + { + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + + DisableComputeNodeSchedulingOption? disableOption = DisableComputeNodeSchedulingOption.TaskCompletion; + DisableComputeNodeSchedulingOption? requestDisableOption = null; + + cmdlet.PoolId = "testPool"; + cmdlet.Id = "computeNode1"; + cmdlet.DisableSchedulingOption = disableOption; + + // Don't go to the service on an Disable Compute Node Scheduling call + Action> extractFormulaAction = + (request) => + { + requestDisableOption = request.TypedParameters.DisableComputeNodeSchedulingOption; + }; + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(requestAction: extractFormulaAction); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + cmdlet.ExecuteCmdlet(); + + // Verify that the parameters were properly set on the outgoing request + Assert.Equal(disableOption, requestDisableOption); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/EnableBatchComputeNodeSchedulingCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/EnableBatchComputeNodeSchedulingCommandTests.cs new file mode 100644 index 000000000000..f0ced1666cec --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/EnableBatchComputeNodeSchedulingCommandTests.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System.Collections.Generic; +using System.Management.Automation; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; + +namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodes +{ + public class EnableBatchComputeNodeSchedulingCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase + { + private EnableBatchComputeNodeSchedulingCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public EnableBatchComputeNodeSchedulingCommandTests() + { + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new EnableBatchComputeNodeSchedulingCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void EnableComputeNodeSchedulingParametersTest() + { + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.PoolId = null; + cmdlet.Id = null; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.PoolId = "testPool"; + cmdlet.Id = "computeNode01"; + + // Don't go to the service on an Enable Compute Node Scheduling call + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Verify no exceptions when required parameter is set + cmdlet.ExecuteCmdlet(); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs index 9ce1294d31de..2c2dae15c3a9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs @@ -54,10 +54,6 @@ public void EnableAutoScaleParametersTest() cmdlet.Id = "testPool"; - Assert.Throws(() => cmdlet.ExecuteCmdlet()); - - cmdlet.AutoScaleFormula = "formula"; - // Don't go to the service on an Enable AutoScale call RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; @@ -74,24 +70,29 @@ public void EnableAutoScaleRequestTest() cmdlet.BatchContext = context; string formula = "$TargetDedicated=2"; + TimeSpan? interval = TimeSpan.FromMinutes(6); string requestFormula = null; + TimeSpan? requestInterval = null; cmdlet.Id = "testPool"; cmdlet.AutoScaleFormula = formula; + cmdlet.AutoScaleEvaluationInterval = interval; // Don't go to the service on an Enable AutoScale call Action> extractFormulaAction = (request) => { requestFormula = request.TypedParameters.AutoScaleFormula; + requestInterval = request.TypedParameters.AutoScaleEvaluationInterval; }; RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(requestAction: extractFormulaAction); cmdlet.AdditionalBehaviors = new List() { interceptor }; cmdlet.ExecuteCmdlet(); - // Verify that the autoscale formula was properly set on the outgoing request + // Verify that the autoscale parameters were properly set on the outgoing request Assert.Equal(formula, requestFormula); + Assert.Equal(interval, requestInterval); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Resources/MSMpiSetup.exe b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Resources/MSMpiSetup.exe new file mode 100644 index 000000000000..0d81d75cd34f Binary files /dev/null and b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Resources/MSMpiSetup.exe differ diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs index 44e681b2f016..d8f1c60b4499 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs @@ -193,6 +193,20 @@ public void TestReimageComputeNodePipeline() TestReimageComputeNode(true, TestUtilities.GetCurrentMethodName()); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDisableAndEnableComputeNodeSchedulingById() + { + TestDisableAndEnableComputeNodeScheduling(false, TestUtilities.GetCurrentMethodName()); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDisableAndEnableComputeNodeSchedulingPipeline() + { + TestDisableAndEnableComputeNodeScheduling(true, TestUtilities.GetCurrentMethodName()); + } + private void TestRemoveComputeNode(bool usePipeline, string testMethodName) { BatchController controller = BatchController.NewInstance; @@ -253,5 +267,23 @@ private void TestReimageComputeNode(bool usePipeline, string testMethodName) TestUtilities.GetCallingClass(), testMethodName); } + + private void TestDisableAndEnableComputeNodeScheduling(bool usePipeline, string testMethodName) + { + BatchController controller = BatchController.NewInstance; + BatchAccountContext context = null; + string computeNodeId = null; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-DisableAndEnableComputeNodeScheduling '{0}' '{1}' '{2}' '{3}'", ScenarioTestHelpers.MpiOnlineAccount, poolId, computeNodeId, usePipeline ? 1 : 0) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, ScenarioTestHelpers.MpiOnlineAccount); + computeNodeId = ScenarioTestHelpers.GetComputeNodeId(controller, context, poolId); + ScenarioTestHelpers.WaitForIdleComputeNode(controller, context, poolId, computeNodeId); + }, + null, + TestUtilities.GetCallingClass(), + testMethodName); + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 index c2ca4fea1eb7..4c18487c6277 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 @@ -267,4 +267,38 @@ function Test-ReimageComputeNode $computeNode = Get-AzureBatchComputeNode -PoolId $poolId -Filter "id eq '$computeNodeId'" -BatchContext $context Assert-AreEqual 'Reimaging' $computeNode.State +} + +<# +.SYNOPSIS +Tests disabling and enabling compute node scheduling +#> +function Test-DisableAndEnableComputeNodeScheduling +{ + param([string]$accountName, [string]$poolId, [string]$computeNodeId, [string]$usePipeline) + + $context = Get-ScenarioTestContext $accountName + + $disableOption = ([Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption]::Terminate) + if ($usePipeline -eq '1') + { + Get-AzureBatchComputeNode $poolId $computeNodeId -BatchContext $context | Disable-AzureBatchComputeNodeScheduling -DisableSchedulingOption $disableOption -BatchContext $context + } + else + { + Disable-AzureBatchComputeNodeScheduling $poolId $computeNodeId -DisableSchedulingOption $disableOption -BatchContext $context + } + $computeNode = Get-AzureBatchComputeNode -PoolId $poolId -Filter "id eq '$computeNodeId'" -Select "id,schedulingState" -BatchContext $context + Assert-AreEqual 'Disabled' $computeNode.SchedulingState + + if ($usePipeline -eq '1') + { + Get-AzureBatchComputeNode $poolId $computeNodeId -BatchContext $context | Enable-AzureBatchComputeNodeScheduling -BatchContext $context + } + else + { + Enable-AzureBatchComputeNodeScheduling $poolId $computeNodeId -BatchContext $context + } + $computeNode = Get-AzureBatchComputeNode -PoolId $poolId -Filter "id eq '$computeNodeId'" -Select "id,schedulingState" -BatchContext $context + Assert-AreEqual 'Enabled' $computeNode.SchedulingState } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs index fb73d8955d06..2b60d290c5e4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs @@ -29,7 +29,7 @@ public class PoolTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase private const string testPoolId = ScenarioTestHelpers.SharedPool; // Get from WATaskOSFamilyVersions table, which lags behind https://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/ - private const string specificOSVersion = "WA-GUEST-OS-4.22_201507-01"; + private const string specificOSVersion = "WA-GUEST-OS-4.25_201510-01"; [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] @@ -425,14 +425,14 @@ public void TestEvaluateAutoScaleByPipeline() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "WATaskOSFamilyVersions table appears to be out of date, re-record when updated")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestChangeOSVersionById() { TestChangeOSVersion(false); } - [Fact(Skip = "WATaskOSFamilyVersions table appears to be out of date, re-record when updated")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestChangeOSVersionPipeline() { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 index 633c610e2156..1874201df195 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 @@ -47,6 +47,7 @@ function Test-NewPool # Create a complicated pool using AutoScale parameter set $maxTasksPerComputeNode = 2 $autoScaleFormula = '$TargetDedicated=2' + $evalInterval = [TimeSpan]::FromMinutes(7) $startTask = New-Object Microsoft.Azure.Commands.Batch.Models.PSStartTask $startTaskCmd = "cmd /c dir /s" @@ -69,7 +70,7 @@ function Test-NewPool $displayName = "displayName" - New-AzureBatchPool -Id $poolId2 -VirtualMachineSize $vmSize -OSFamily $osFamily -TargetOSVersion $targetOSVersion -DisplayName $displayName -MaxTasksPerComputeNode $maxTasksPerComputeNode -AutoScaleFormula $autoScaleFormula -StartTask $startTask -TaskSchedulingPolicy $schedulingPolicy -InterComputeNodeCommunicationEnabled -Metadata $metadata -BatchContext $context + New-AzureBatchPool -Id $poolId2 -VirtualMachineSize $vmSize -OSFamily $osFamily -TargetOSVersion $targetOSVersion -DisplayName $displayName -MaxTasksPerComputeNode $maxTasksPerComputeNode -AutoScaleFormula $autoScaleFormula -AutoScaleEvaluationInterval $evalInterval -StartTask $startTask -TaskSchedulingPolicy $schedulingPolicy -InterComputeNodeCommunicationEnabled -Metadata $metadata -BatchContext $context $pool2 = Get-AzureBatchPool -Id $poolId2 -BatchContext $context @@ -82,6 +83,7 @@ function Test-NewPool Assert-AreEqual $maxTasksPerComputeNOde $pool2.MaxTasksPerComputeNode Assert-AreEqual $true $pool2.AutoScaleEnabled Assert-AreEqual $autoScaleFormula $pool2.AutoScaleFormula + Assert-AreEqual $evalInterval $pool2.AutoScaleEvaluationInterval Assert-AreEqual $true $pool2.InterComputeNodeCommunicationEnabled Assert-AreEqual $startTaskCmd $pool2.StartTask.CommandLine Assert-AreEqual $resourceFileCount $pool2.StartTask.ResourceFiles.Count @@ -342,7 +344,7 @@ function Test-StopResizePoolById # Start a resize and then stop it $pool = Get-AzureBatchPool -Id $poolId -BatchContext $context - $initialTargetDedicated = $pool.TargetDedicated + $initialTargetDedicated = $pool.CurrentDedicated $newTargetDedicated = $initialTargetDedicated + 2 Start-AzureBatchPoolResize -Id $poolId -TargetDedicated $newTargetDedicated -BatchContext $context @@ -365,7 +367,7 @@ function Test-StopResizePoolByPipeline # Start a resize and then stop it $pool = Get-AzureBatchPool -Id $poolId -BatchContext $context - $initialTargetDedicated = $pool.TargetDedicated + $initialTargetDedicated = $pool.CurrentDedicated $newTargetDedicated = $initialTargetDedicated + 2 $pool | Start-AzureBatchPoolResize -TargetDedicated $newTargetDedicated -BatchContext $context @@ -387,6 +389,7 @@ function Test-EnableAutoScale $context = Get-ScenarioTestContext $accountName $formula = '$TargetDedicated=2' + $interval = ([TimeSpan]::FromMinutes(8)) # Verify pool starts with autoscale disabled $pool = Get-AzureBatchPool $poolId -BatchContext $context @@ -394,17 +397,18 @@ function Test-EnableAutoScale if ($usePipeline -eq '1') { - Get-AzureBatchPool -Id $poolId -BatchContext $context | Enable-AzureBatchAutoScale -AutoScaleFormula $formula -BatchContext $context + Get-AzureBatchPool -Id $poolId -BatchContext $context | Enable-AzureBatchAutoScale -AutoScaleFormula $formula -AutoScaleEvaluationInterval $interval -BatchContext $context } else { - Enable-AzureBatchAutoScale $poolId $formula -BatchContext $context + Enable-AzureBatchAutoScale $poolId $formula $interval -BatchContext $context } # Verify that autoscale was enabled. # Use a filter because it seems that the recorder sometimes gets confused when two identical URLs are sent too close together $pool = Get-AzureBatchPool -Filter "id eq '$poolId'" -BatchContext $context Assert-True { $pool.AutoScaleEnabled } + Assert-AreEqual $interval $pool.AutoScaleEvaluationInterval } <# diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs index 6725c06344de..4dff7a47102b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs @@ -22,6 +22,9 @@ using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Blob; using System; using System.Collections.Generic; using System.Linq; @@ -49,6 +52,19 @@ public static class ScenarioTestHelpers internal const string SharedPoolStartTaskStdOut = "startup\\stdout.txt"; internal const string SharedPoolStartTaskStdOutContent = "hello"; + // TO DO: MPI and online/offline node scheduling are only enabled in a few regions, so they need a dedicated account. Once the features are + // enabled everywhere, the tests for these features can just use the default shared account. + internal const string MpiOnlineAccount = "batchtest"; + + // MPI requires a special pool configuration. When recording, the Storage environment variables need to be + // set so we can upload the MPI installer for use as a start task resource file. + internal const string MpiPoolId = "mpiPool"; + internal const string MpiSetupFileContainer = "mpi"; + internal const string MpiSetupFileName = "MSMpiSetup.exe"; + internal const string MpiSetupFileLocalPath = "Resources\\MSMpiSetup.exe"; + internal const string StorageAccountEnvVar = "AZURE_STORAGE_ACCOUNT"; + internal const string StorageKeyEnvVar = "AZURE_STORAGE_ACCESS_KEY"; + /// /// Creates an account and resource group for use with the Scenario tests /// @@ -180,7 +196,8 @@ public static void WaitForCertificateToFailDeletion(BatchController controller, /// /// Creates a test pool for use in Scenario tests. /// - public static void CreateTestPool(BatchController controller, BatchAccountContext context, string poolId, int targetDedicated, CertificateReference certReference = null) + public static void CreateTestPool(BatchController controller, BatchAccountContext context, string poolId, int targetDedicated, + CertificateReference certReference = null, StartTask startTask = null) { BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); @@ -189,6 +206,11 @@ public static void CreateTestPool(BatchController controller, BatchAccountContex { certReferences = new PSCertificateReference[] { new PSCertificateReference(certReference) }; } + PSStartTask psStartTask = null; + if (startTask != null) + { + psStartTask = new PSStartTask(startTask); + } NewPoolParameters parameters = new NewPoolParameters(context, poolId) { @@ -197,17 +219,62 @@ public static void CreateTestPool(BatchController controller, BatchAccountContex TargetOSVersion = "*", TargetDedicated = targetDedicated, CertificateReferences = certReferences, + StartTask = psStartTask, + InterComputeNodeCommunicationEnabled = true }; client.CreatePool(parameters); } + /// + /// Creates an MPI pool. + /// + public static void CreateMpiPoolIfNotExists(BatchController controller, BatchAccountContext context, int targetDedicated = 3) + { + BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); + ListPoolOptions listOptions = new ListPoolOptions(context) + { + PoolId = MpiPoolId + }; + + try + { + client.ListPools(listOptions); + return; // The call returned without throwing an exception, so the pool exists + } + catch (AggregateException aex) + { + BatchException innerException = aex.InnerException as BatchException; + if (innerException == null || innerException.RequestInformation == null || innerException.RequestInformation.AzureError == null || + innerException.RequestInformation.AzureError.Code != BatchErrorCodeStrings.PoolNotFound) + { + throw; + } + // We got the pool not found error, so continue and create the pool + } + + string blobUrl = UploadBlobAndGetUrl(MpiSetupFileContainer, MpiSetupFileName, MpiSetupFileLocalPath); + + StartTask startTask = new StartTask(); + startTask.CommandLine = string.Format("cmd /c set & {0} -unattend -force", MpiSetupFileName); + startTask.ResourceFiles = new List(); + startTask.ResourceFiles.Add(new ResourceFile(blobUrl, MpiSetupFileName)); + startTask.RunElevated = true; + startTask.WaitForSuccess = true; + + CreateTestPool(controller, context, MpiPoolId, targetDedicated, startTask: startTask); + } + + public static void EnableAutoScale(BatchController controller, BatchAccountContext context, string poolId) { BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); string formula = "$TargetDedicated=2"; - AutoScaleParameters parameters = new AutoScaleParameters(context, poolId, null, formula); + EnableAutoScaleParameters parameters = new EnableAutoScaleParameters(context, poolId, null) + { + AutoScaleFormula = formula + }; client.EnableAutoScale(parameters); } @@ -228,7 +295,7 @@ public static string WaitForOSVersionChange(BatchController controller, BatchAcc PoolId = poolId }; - DateTime timeout = DateTime.Now.AddMinutes(2); + DateTime timeout = DateTime.Now.AddMinutes(5); PSCloudPool pool = client.ListPools(options).First(); while (pool.CurrentOSVersion != pool.TargetOSVersion) { @@ -345,12 +412,12 @@ public static void CreateTestJobSchedule(BatchController controller, BatchAccoun /// /// Creates a test job for use in Scenario tests. /// - public static void CreateTestJob(BatchController controller, BatchAccountContext context, string jobId) + public static void CreateTestJob(BatchController controller, BatchAccountContext context, string jobId, string poolId = SharedPool) { BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); PSPoolInformation poolInfo = new PSPoolInformation(); - poolInfo.PoolId = SharedPool; + poolInfo.PoolId = poolId; NewJobParameters parameters = new NewJobParameters(context, jobId) { @@ -391,14 +458,22 @@ public static string WaitForRecentJob(BatchController controller, BatchAccountCo /// /// Creates a test task for use in Scenario tests. /// - public static void CreateTestTask(BatchController controller, BatchAccountContext context, string jobId, string taskId, string cmdLine = "cmd /c dir /s") + public static void CreateTestTask(BatchController controller, BatchAccountContext context, string jobId, string taskId, string cmdLine = "cmd /c dir /s", int numInstances = 0) { BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); + PSMultiInstanceSettings multiInstanceSettings = null; + if (numInstances > 1) + { + multiInstanceSettings = new PSMultiInstanceSettings(numInstances); + multiInstanceSettings.CoordinationCommandLine = "cmd /c echo coordinating"; + } + NewTaskParameters parameters = new NewTaskParameters(context, jobId, null, taskId) { CommandLine = cmdLine, - RunElevated = true + MultiInstanceSettings = multiInstanceSettings, + RunElevated = numInstances <= 1 }; client.CreateTask(parameters); @@ -421,7 +496,7 @@ public static void WaitForTaskCompletion(BatchController controller, BatchAccoun if (HttpMockServer.Mode == HttpRecorderMode.Record) { TaskStateMonitor monitor = context.BatchOMClient.Utilities.CreateTaskStateMonitor(); - monitor.WaitAll(tasks.Select(t => t.omObject), TaskState.Completed, TimeSpan.FromMinutes(2), null); + monitor.WaitAll(tasks.Select(t => t.omObject), TaskState.Completed, TimeSpan.FromMinutes(10), null); } } @@ -494,12 +569,13 @@ public static void WaitForIdleComputeNode(BatchController controller, BatchAccou ListComputeNodeOptions options = new ListComputeNodeOptions(context, poolId, null) { - ComputeNodeId = computeNodeId + ComputeNodeId = computeNodeId, + Select = "id,state" }; - DateTime timeout = DateTime.Now.AddMinutes(2); + DateTime timeout = DateTime.Now.AddMinutes(5); PSComputeNode computeNode = client.ListComputeNodes(options).First(); - if (computeNode.State != ComputeNodeState.Idle) + while (computeNode.State != ComputeNodeState.Idle) { if (DateTime.Now > timeout) { @@ -539,6 +615,43 @@ public static void DeleteComputeNodeUser(BatchController controller, BatchAccoun client.DeleteComputeNodeUser(parameters); } + /// + /// Uploads a blob to Storage if it doesn't exist and gets the url + /// + private static string UploadBlobAndGetUrl(string containerName, string blobName, string localFilePath) + { + string blobUrl = "https://defaultUrl.blob.core.windows.net/blobName"; + + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + // Create container and upload blob if they don't exist + string storageAccountName = Environment.GetEnvironmentVariable(StorageAccountEnvVar); + string storageKey = Environment.GetEnvironmentVariable(StorageKeyEnvVar); + StorageCredentials creds = new StorageCredentials(storageAccountName, storageKey); + CloudStorageAccount storageAccount = new CloudStorageAccount(creds, true); + + CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); + CloudBlobContainer container = blobClient.GetContainerReference(containerName); + container.CreateIfNotExists(); + + CloudBlockBlob blob = container.GetBlockBlobReference(blobName); + if (!blob.Exists()) + { + blob.UploadFromFile(localFilePath, System.IO.FileMode.Open); + } + + // Get blob url with SAS string + SharedAccessBlobPolicy sasPolicy = new SharedAccessBlobPolicy(); + sasPolicy.Permissions = SharedAccessBlobPermissions.Read; + sasPolicy.SharedAccessExpiryTime = DateTime.UtcNow.AddHours(10); + string sasString = container.GetSharedAccessSignature(sasPolicy); + + blobUrl = string.Format("{0}/{1}{2}", container.Uri, blobName, sasString); + } + + return blobUrl; + } + /// /// Sleep method used for Scenario Tests. Only sleep when recording. /// diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs index 51bab695b7b2..246d746676a8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs @@ -36,10 +36,10 @@ public void TestCreateTask() string jobId = "createTaskJob"; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-CreateTask '{0}' '{1}'", accountName, jobId) }; }, + () => { return new string[] { string.Format("Test-CreateTask '{0}' '{1}'", ScenarioTestHelpers.MpiOnlineAccount, jobId) }; }, () => { - context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, ScenarioTestHelpers.MpiOnlineAccount); ScenarioTestHelpers.CreateTestJob(controller, context, jobId); }, () => @@ -312,5 +312,60 @@ public void TestTerminateTask() TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestListSubtasksWithMaxCount() + { + BatchController controller = BatchController.NewInstance; + string jobId = "maxCountSubtaskJob"; + string taskId = "testTask"; + int numInstances = 3; + int maxCount = 1; + BatchAccountContext context = null; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-ListSubtasksWithMaxCount '{0}' '{1}' '{2}' '{3}'", ScenarioTestHelpers.MpiOnlineAccount, jobId, taskId, maxCount) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, ScenarioTestHelpers.MpiOnlineAccount); + ScenarioTestHelpers.CreateMpiPoolIfNotExists(controller, context); + ScenarioTestHelpers.CreateTestJob(controller, context, jobId, ScenarioTestHelpers.MpiPoolId); + ScenarioTestHelpers.CreateTestTask(controller, context, jobId, taskId, "cmd /c hostname", numInstances); + ScenarioTestHelpers.WaitForTaskCompletion(controller, context, jobId, taskId); + }, + () => + { + ScenarioTestHelpers.DeleteJob(controller, context, jobId); + }, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName()); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestListAllSubtasks() + { + BatchController controller = BatchController.NewInstance; + string jobId = "listSubtaskJob"; + string taskId = "testTask"; + int numInstances = 3; + BatchAccountContext context = null; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-ListAllSubtasks '{0}' '{1}' '{2}' '{3}'", ScenarioTestHelpers.MpiOnlineAccount, jobId, taskId, numInstances) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, ScenarioTestHelpers.MpiOnlineAccount); + ScenarioTestHelpers.CreateMpiPoolIfNotExists(controller, context); + ScenarioTestHelpers.CreateTestJob(controller, context, jobId, ScenarioTestHelpers.MpiPoolId); + ScenarioTestHelpers.CreateTestTask(controller, context, jobId, taskId, "cmd /c hostname", numInstances); + ScenarioTestHelpers.WaitForTaskCompletion(controller, context, jobId, taskId); + }, + () => + { + ScenarioTestHelpers.DeleteJob(controller, context, jobId); + }, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName()); + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 index 55b2a7a2c714..e377d493eb37 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 @@ -47,14 +47,23 @@ function Test-CreateTask $envSettings = @{"env1"="value1";"env2"="value2"} - New-AzureBatchTask -JobId $jobId -Id $taskId2 -CommandLine $cmd -RunElevated -EnvironmentSettings $envSettings -ResourceFiles $resourceFiles -AffinityInformation $affinityInfo -Constraints $taskConstraints -BatchContext $context + $numInstances = 3 + $multiInstanceSettings = New-Object Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings -ArgumentList @($numInstances) + $multiInstanceSettings.CoordinationCommandLine = $coordinationCommandLine = "cmd /c echo coordinating" + $multiInstanceSettings.CommonResourceFiles = New-Object System.Collections.Generic.List``1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile] + $commonResourceBlob = "https://common.blob.core.windows.net/" + $commonResourceFile = "common.exe" + $commonResource = New-Object Microsoft.Azure.Commands.Batch.Models.PSResourceFile -ArgumentList @($commonResourceBlob,$commonResourceFile) + $multiInstanceSettings.CommonResourceFiles.Add($commonResource) + + New-AzureBatchTask -JobId $jobId -Id $taskId2 -CommandLine $cmd -EnvironmentSettings $envSettings -ResourceFiles $resourceFiles -AffinityInformation $affinityInfo -Constraints $taskConstraints -MultiInstanceSettings $multiInstanceSettings -BatchContext $context $task2 = Get-AzureBatchTask -JobId $jobId -Id $taskId2 -BatchContext $context # Verify created task matches expectations Assert-AreEqual $taskId2 $task2.Id Assert-AreEqual $cmd $task2.CommandLine - Assert-AreEqual $true $task2.RunElevated + Assert-AreEqual $false $task2.RunElevated Assert-AreEqual $affinityId $task2.AffinityInformation.AffinityId Assert-AreEqual $maxWallClockTime $task2.Constraints.MaxWallClockTime Assert-AreEqual $retentionTime $task2.Constraints.RetentionTime @@ -69,6 +78,11 @@ function Test-CreateTask { Assert-AreEqual $envSettings[$e.Name] $e.Value } + Assert-AreEqual $numInstances $task2.MultiInstanceSettings.NumberOfInstances + Assert-AreEqual $coordinationCommandLine $task2.MultiInstanceSettings.CoordinationCommandLine + Assert-AreEqual 1 $task2.MultiInstanceSettings.CommonResourceFiles.Count + Assert-AreEqual $commonResourceBlob $task2.MultiInstanceSettings.CommonResourceFiles[0].BlobSource + Assert-AreEqual $commonResourceFile $task2.MultiInstanceSettings.CommonResourceFiles[0].FilePath } <# @@ -282,4 +296,45 @@ function Test-TerminateTask { Assert-AreEqual 'completed' $task.State.ToString().ToLower() } -} \ No newline at end of file +} + +<# +.SYNOPSIS +Tests querying for Batch subtasks and supplying a max count +#> +function Test-ListSubtasksWithMaxCount +{ + param([string]$accountName, [string]$jobId, [string]$taskId, [string]$maxCount) + + $context = Get-ScenarioTestContext $accountName + $subtasks = Get-AzureBatchSubtask $jobId $taskId -MaxCount $maxCount -BatchContext $context + + Assert-AreEqual $maxCount $subtasks.Length + + # Verify parent object parameter set also works + $task = Get-AzureBatchTask $jobId $taskId -BatchContext $context + $subtasks = $task | Get-AzureBatchSubtask -MaxCount $maxCount -BatchContext $context + + Assert-AreEqual $maxCount $subtasks.Length +} + +<# +.SYNOPSIS +Tests querying for all subtasks under a task +#> +function Test-ListAllSubtasks +{ + param([string]$accountName, [string] $jobId, [string]$taskId, [string]$numInstances) + + $numSubTasksExpected = $numInstances - 1 + + $context = Get-ScenarioTestContext $accountName + $subtasks = Get-AzureBatchSubtask $jobId $taskId -BatchContext $context + + Assert-AreEqual $numSubTasksExpected $subtasks.Length + + # Verify pipeline also works + $subtasks = Get-AzureBatchTask $jobId $taskId -BatchContext $context | Get-AzureBatchSubtask -BatchContext $context + + Assert-AreEqual $numSubTasksExpected $subtasks.Length +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestAddCertificate.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestAddCertificate.json index 333224b54cd5..1adea87b4c67 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestAddCertificate.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestAddCertificate.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "f16240d4-e0c7-4fc3-af81-e9ecdd7e9436" + "f903909b-ce29-4fb7-98f9-24b6e3a7397d" ], "x-ms-correlation-request-id": [ - "f16240d4-e0c7-4fc3-af81-e9ecdd7e9436" + "f903909b-ce29-4fb7-98f9-24b6e3a7397d" ], "x-ms-routing-request-id": [ - "WESTUS:20151110T235747Z:f16240d4-e0c7-4fc3-af81-e9ecdd7e9436" + "CENTRALUS:20151221T211858Z:f903909b-ce29-4fb7-98f9-24b6e3a7397d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 10 Nov 2015 23:57:46 GMT" + "Mon, 21 Dec 2015 21:18:58 GMT" ] }, "StatusCode": 200 @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:57:48 GMT" + "Mon, 21 Dec 2015 21:18:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d5f6256b-f956-4afd-a0a8-6674af4e079e" + "be8045d2-1715-439d-9116-6fbea11f1917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-request-id": [ - "fb9c8671-dfb8-4bf9-a68c-21496123bdfd" + "3746eb91-5a90-4c25-839e-b06217cdeadf" ], "x-ms-correlation-request-id": [ - "fb9c8671-dfb8-4bf9-a68c-21496123bdfd" + "3746eb91-5a90-4c25-839e-b06217cdeadf" ], "x-ms-routing-request-id": [ - "WESTUS:20151110T235748Z:fb9c8671-dfb8-4bf9-a68c-21496123bdfd" + "CENTRALUS:20151221T211859Z:3746eb91-5a90-4c25-839e-b06217cdeadf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 10 Nov 2015 23:57:47 GMT" + "Mon, 21 Dec 2015 21:18:59 GMT" ], "ETag": [ - "0x8D2EA2ABCA530B0" + "0x8D30A4C57000640" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,7 +139,7 @@ "no-cache" ], "request-id": [ - "0f1bbf81-9dd2-4683-b1b4-c4ff5b44d6a3" + "c74f6525-4641-4652-af4c-c54bc1127f29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "1199" ], "x-ms-request-id": [ - "3bf29cb1-9c59-42ed-88c8-558893ed5cab" + "33463f3e-4a63-4c16-b634-483d6908aa7c" ], "x-ms-correlation-request-id": [ - "3bf29cb1-9c59-42ed-88c8-558893ed5cab" + "33463f3e-4a63-4c16-b634-483d6908aa7c" ], "x-ms-routing-request-id": [ - "WESTUS:20151110T235748Z:3bf29cb1-9c59-42ed-88c8-558893ed5cab" + "CENTRALUS:20151221T211859Z:33463f3e-4a63-4c16-b634-483d6908aa7c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 10 Nov 2015 23:57:48 GMT" + "Mon, 21 Dec 2015 21:18:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -181,16 +181,16 @@ "816" ], "client-request-id": [ - "c261762c-abb4-45c2-a0ea-020e9da8d88c" + "41e7bcab-6461-4f01-bc1f-06d1c188487c" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:48 GMT" + "Mon, 21 Dec 2015 21:18:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -200,13 +200,13 @@ "chunked" ], "request-id": [ - "59ae4189-a2a2-482f-9823-6b85e73558e5" + "45619d96-fb13-46d6-bf83-bc6a7c428e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c261762c-abb4-45c2-a0ea-020e9da8d88c" + "41e7bcab-6461-4f01-bc1f-06d1c188487c" ], "DataServiceVersion": [ "3.0" @@ -215,7 +215,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" ], "Date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:00 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" @@ -227,8 +227,8 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"cb30857f9e277bfe1cc97819bfb957594e17e827\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAzMB4XDTE1MTAwMjE2MjkzMVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDMwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKtIQd3B7mzqvml2whJ76q4MjhJOjDQGEtkzUhQcQP4l7iGwRdfGsyZsG0iPeofykxymQNTwnLUesMCncfYZHnQkwiKk8N43nLcs7bhO+yB7XLXY/ZCMPmvltlH+liUkFFbQVT9Xkgs0MvuKhjW/DKS9ICyiNUsJc5ZBj/gibO0LAgMBAAGjSzBJMEcGA1UdAQRAMD6AEKRpcZPLctriJqU1tKpaVw+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwM4IQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAA4GBACKqJflUhBbj92AwxibqMlNJRagXy62wGQZYyHX51ne790Z5oHdEFVkTpLSCwWXj2bgV0tR0oVs/L0wKxkoVbmEfOIuEIsRcMeKELWe6UsCdsO6Vl1F5j0X1wAPvHESKLZ8OZ/I//1Hs2cXkxO8RXl5i1oec3+4htMq/t7k/rgPt\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -239,16 +239,16 @@ "816" ], "client-request-id": [ - "5e3e161b-7da2-45e7-8ef1-f94c275c063a" + "5042b5ef-8d27-4362-baa2-ac0ddaeeac8f" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:49 GMT" + "Mon, 21 Dec 2015 21:19:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -258,13 +258,13 @@ "chunked" ], "request-id": [ - "0938b8e3-2e0d-4a21-9ef0-f8f58664f9d5" + "ad660b62-068d-4f2d-b44e-8ca681d89706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5e3e161b-7da2-45e7-8ef1-f94c275c063a" + "5042b5ef-8d27-4362-baa2-ac0ddaeeac8f" ], "DataServiceVersion": [ "3.0" @@ -273,7 +273,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=cb30857f9e277bfe1cc97819bfb957594e17e827)" ], "Date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:00 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=cb30857f9e277bfe1cc97819bfb957594e17e827)" @@ -285,8 +285,8 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIGyAIBAzCCBoQGCSqGSIb3DQEHAaCCBnUEggZxMIIGbTCCA7YGCSqGSIb3DQEHAaCCA6cEggOjMIIDnzCCA5sGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAjLI5TCEWcYjwICB9AEggKQVjnq44JbGWqdxP8TiyVkd8EkGqTRT+r/E+IcEqlab/h7sb8p6oLMAf1iw7g3ri9S+w307sAFfsn4M1yLoa4HhnSProw82tt0nVYRlZQuXmTbNcMPX9nJO0M+OU6W8tQJ9mOY4nEVc0HHpNnHW5g5CWM+D0ySHk/YBigRmh6zJuBRN++cMvgExMt+xwAycnkJtiSAghxfG5Amx7R/6jZQjL0vYspfBjRFgsBJpfIwKF7e6UksKwdmDCMbTS97v6rB/VKINXB8kapUEb+zcsu4ykZ+FTxAwpndVSi7V3BkFPKhhPqsosvKhkJ/Lipoimh9DS2PMvlyTU/EgSpWcapl+rkZi2AXBoIn9Skw198i0lw2Z/KhmitexAYo1Pi5D+cuWjCXyJCu8gb1FoNRV/xbYks7cSbG2GUtxgK1fAtPSp41I6JP5Q6PFSiNGLCQlMr9KLxVqYrmppbdtiniFRnQxUm/ArduYZ5GmqW4aixYZtBCyfk9EQT/XfSsLHltEVAPLgnwyMTmAM25ikqZZc8K1oFq7FP19AtChjLGYBWJxCWqNLFY36gS4zfxLYWSZsrtQXuvPfVnAnnND1N2r1rImm6JYVP6MwpnALtFNNY33qtHkC63kGyqrDtireJvY/ikqsdVOag3RA/n7BbzAFe9Rb34GXEay5Qk5t1w/WrPZwkALVscm31crXj6TKWWUHnI1htvZt7cAxqDAh5CRhxl0hLaBj0vwxyvLuHCrCx5SkLYVWl4RkYLHqkInrGqPfHZ4M1CKrokgmFdkobVElR9W7zy9KrdJ8KcVuHUd1vRAJPW6a5CLVyeevcjXYVrCEYh8w8KqUrKEWi0WLlKe6g4wg6An9m5tsCVJSbBG8bWASAxgdEwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADkARABBAEIAMQA2ADgANwAtADkAMQBCAEYALQA0AEMAQgBGAC0AQgBDADcAMwAtAEUARQBDADQARABBADYAMwA5ADEARAA1AH0wXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAq8GCSqGSIb3DQEHBqCCAqAwggKcAgEAMIIClQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIH+Jas7uvF3MCAgfQgIICaDJIWi6diNtqQpqmgsdnTSo2NnGHEXtdFQoWnSMo1m/P12tu1J63+A/tYLVE19LCZEf4KKPKRHQwZMVNrkq4flA9qP6+UbIUrJfiDUT0f9Ofvp1Ri1d6bdIY8fEo4U2TzVC6mzRYPAjQGBRPJJ3vbrsAKv8yZWGv9WtiMLJhdM29JcGuN8Gdoc2GDux5t+6cY6rjq23r5oWSr4iXWsTgGrQrTF845KbkhIWh7VDJ7Mfaf7s/aiBuGD7cbRDxXrT4pxrwbXjUvAPF4tclohCbuZASBkqz6+7rGuTFvTR5viLqs0nqm9NG/G9dC7LYdBy/w+uj5w8PqJP4J95UKYRwkpVdjKv2R83xTvBnTuSdYOS3WdQRmtQfZkj8nbnMaOxkCrrVMXp8/YKcbloeh9Z0HRbsKWTL8QzNp1ydy/li8i/h2rxyEsq+iGc84BuJli5RywDpPIVogL39ukmzPTrhAjR+Tgxh90D49hseN/jdKoRcX9L/LoLskwiQs0PkqesYoFgaGHY5Rtltl6wAdmAh8mE2HXCM5ZLiRT+bT04+nn3IMpyHT4Q7Flm7GSDCMWgFu2Z3PrRJpl/ibSKvYxcjLopsYY86Vr80LMk49kzIWCSuRwrx2xRViSuQI6NCxOEem5hYB9v7/KFcMy1UNWThFP0XR/8gf3Lzzr+mSbc5h9qq9vu1GqzQ9Dfdv/BhN92A+HHFnVkoPAjvfaj3s1Wk0NtplKwNkjIzAV5sV3TEKd4KXZ2OwvcdGqir7rmgqJVyW89Aa+xuT7BZQMwpYouME/KU4YK3Y7ERca3FBQ9n79ALe9RMizkVlFIwOzAfMAcGBSsOAwIaBBT7YZ69Q4mQCyWLGLsR3pE5XWbhuQQUh67qPIFpoFy0f3bLqPpChnfAAGICAgfQ\",\r\n \"certificateFormat\": \"pfx\",\r\n \"password\": \"Passw0rd\"\r\n}", "RequestHeaders": { @@ -297,16 +297,16 @@ "2491" ], "client-request-id": [ - "07c3de36-fb9f-48ff-94f6-69b7b1f5c6e9" + "49955087-0b06-4c2c-b501-8ff28563aac0" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -316,13 +316,13 @@ "chunked" ], "request-id": [ - "ea9c7bbf-3901-4ca1-a02b-1118f16ff4b0" + "2f4b4554-c75e-4bb4-b2a4-fea54452b279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "07c3de36-fb9f-48ff-94f6-69b7b1f5c6e9" + "49955087-0b06-4c2c-b501-8ff28563aac0" ], "DataServiceVersion": [ "3.0" @@ -331,7 +331,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=6cae524fd22ab708817355e8236332bfd2d45bf1)" ], "Date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=6cae524fd22ab708817355e8236332bfd2d45bf1)" @@ -343,8 +343,8 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"377401c6673c18d2167e1f01ae0bbf796a0efd08\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIG0gIBAzCCBo4GCSqGSIb3DQEHAaCCBn8EggZ7MIIGdzCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAj76Hx3M1j77gICB9AEggKQCt1VQTJdaU29/MRf3arBJ9TWhA9gS1vcsIn7vjOLqmIBs00vbDVQ+Q5cqSbtlwRdUKtYVd9A2DPzV7w78XQ6nUSH2WGLAAlvv+3CwZfokfg2BiOXrVMBiBYEJEUareAgGUjwDzo/ejO4KCdMq3+LuhBfBdSNjFTrduXJwXQm9i9+9g7Bx812QhZ6/+omJjK7WK7p/RBNAvPGUtk1dEs51jsPFAHTHDSBAXAuX/gvUNFEVd2uKazEp6GN2M8pQXFa2Mswf6Qk2Krs5gwYEDDzX52FKfqFaMaX1AmhgEpsLtMMSCxQLcCdxc8WoVjGRDxprkiLCpS59Oys2Y/HLjihFcV7xa7aJZmfUTmGRq2SxeFtpuh7WEcbr+lTULzzIb2/rwO/ZjUFHgL/8rqK28cnLMJDvdLNgrKjJwGwM8bkHOJ9Pm+JFcQ7f5NRIABkyR0VDn5o2A+mxibhJ/DcAUgIg094WtWe6rK+NKzHmegAWlAh/DarV72Uz9bLPLZgirCZ6qP1qCztsi+SBwUMufckhsj6hpMDQ/AS4yvKmYdmHURfch+X6UaKr5acvWO0geNuVxF2d5Fd+zxNFoW/g3OW34IxtliJrnbBAbmMqWHipdKyI+MWVaGlaFthu1Mirj7mON7973/X77Q6Cj4HHm4yZ3/TOPT/FnQK9sxPV5ApIOd06EdHoUejfh9PmpFV6pC5DPlRx17VZufFhVmKQYRJTksFpvuSWA3w0O2ODornboGMu2DwDTikUnJIXQyK6LrdjQ85JODyuih6zeOZ8xSohNi7T0yaYivWAVJ54bPXcj3iNKRv3+NxNav3/sAAXsKatiIDO3LdV5hiisGH0ddthcJ2WRdrRBDhYOVAzeb7GmsxgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoAYQBhADUAZABlAGQANABkAC0AMQA3AGMAMAAtADQANAA0AGQALQA5ADIANABhAC0ANABkAGYAZAA0AGQAMgAxADAAZQA3ADMwggKvBgkqhkiG9w0BBwagggKgMIICnAIBADCCApUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECLxWdt86I9DQAgIH0ICCAmgaPh8SJdvaFJPXufksA4tIj2tV4IahFgQZqrZPVIPTLv1rUfqAZVaQ9uVdcEZY/h6RWDDjAc2jlB6yyWrQCKZsdeAZyI12YfhGlDwJEyFxyXqK6yT50q8bzisT3rOsFRcOGI+KTeUVw0Aye4J0ik/rBdREXWkzt+3P7SVNQKuQpgOmrR7yUR72wPum/pme0Mkr0MGCV1Vc/ABleEJ3/b+eX2LMVFGZzsccERHjBm/lW0zHTJuRVTREIpDDEjCiZUqlbC1vRq5rNCrGYHHLKANKZ5UI1kQu0VBBY56aQywsbLSOnbK2a7m+46V1lbrROmS9uSpLIynX/mcMISsqHWkWd5pD7ZhNBvLVKTCb8E/GPhjdmyN21lZY3bmdH31eoecyXtFbRVoHWL9pGVjN0NltVXVvw5L1Dg/mXKDLpuPO4SJt2SC305Jiv0nkpSgjtTQj4OJtIbsQD0t26HBC3/H60T5zPkqzGj/NzIOeaaCaYAeboXbGcu9CFRCOUEzpMkswrQYJLjLclpLKV9HBWYJzjkx+C96zLx5AquMrWkuis3l9SN3YCiAI9q1P62ToJru486zESAihvk3Ulivdo4qaGFCFdZJK6o1WAbJi13WfHT2nhtS4d7GcIG+dh0phtQ0Axm/FnBdrAGfGxtiMt3UYe1a4AYlnR4O8x2WP++mh93VS+hms2amDBOTk8AaHJ289m1WRDFuCns57NYCTyGWQ8Hz5medb3NBI9LEMPHuUcDBDtNX5Np9szKp+tv520+arDkNTfaZMjr3U31Xja0vOnmWa+xvKMdWdFnvcb+DM06V1VvejT8MMMDswHzAHBgUrDgMCGgQUOi5HtN8J4aj3r4bvS1NMMm8RnBMEFHRhSPyUv+CWcB3IXnsX4/b4goG4AgIH0A==\",\r\n \"certificateFormat\": \"pfx\",\r\n \"password\": \"Passw0rd\"\r\n}", "RequestHeaders": { @@ -355,16 +355,16 @@ "2507" ], "client-request-id": [ - "dc095b93-ded5-4fa2-bbe1-58fbb0f527e0" + "1640dcbc-ff99-487a-a54e-dac9794b32a9" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -374,13 +374,13 @@ "chunked" ], "request-id": [ - "241d6833-6054-4498-a724-22661908a8a2" + "616d9d4a-1d73-44af-acb4-7bb89c64c618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dc095b93-ded5-4fa2-bbe1-58fbb0f527e0" + "1640dcbc-ff99-487a-a54e-dac9794b32a9" ], "DataServiceVersion": [ "3.0" @@ -389,7 +389,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=377401c6673c18d2167e1f01ae0bbf796a0efd08)" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=377401c6673c18d2167e1f01ae0bbf796a0efd08)" @@ -401,26 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "13cb462e-1f85-4e36-8d30-da23111de5cd" + "7a77f69a-118e-4a6a-8c13-74acb08170d5" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:49 GMT" + "Mon, 21 Dec 2015 21:19:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:49.4510706Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:18:59.2742063Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -429,19 +429,19 @@ "chunked" ], "request-id": [ - "9a79e0ed-1703-4c8d-b18c-527866e46714" + "adc97f3c-3d18-4a70-9024-3fe7646bcc78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "13cb462e-1f85-4e36-8d30-da23111de5cd" + "7a77f69a-118e-4a6a-8c13-74acb08170d5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -450,26 +450,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=CB30857F9E277BFE1CC97819BFB957594E17E827)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DQjMwODU3RjlFMjc3QkZFMUNDOTc4MTlCRkI5NTc1OTRFMTdFODI3KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=CB30857F9E277BFE1CC97819BFB957594E17E827)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DQjMwODU3RjlFMjc3QkZFMUNDOTc4MTlCRkI5NTc1OTRFMTdFODI3KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e16bf696-e229-4123-b4cd-aa2ad7d7832d" + "58b71f3e-5992-42d8-96d2-1e3a75220fc7" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:49 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"cb30857f9e277bfe1cc97819bfb957594e17e827\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=CB30857F9E277BFE1CC97819BFB957594E17E827)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:50.2791276Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAzMB4XDTE1MTAwMjE2MjkzMVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDMwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKtIQd3B7mzqvml2whJ76q4MjhJOjDQGEtkzUhQcQP4l7iGwRdfGsyZsG0iPeofykxymQNTwnLUesMCncfYZHnQkwiKk8N43nLcs7bhO+yB7XLXY/ZCMPmvltlH+liUkFFbQVT9Xkgs0MvuKhjW/DKS9ICyiNUsJc5ZBj/gibO0LAgMBAAGjSzBJMEcGA1UdAQRAMD6AEKRpcZPLctriJqU1tKpaVw+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwM4IQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAA4GBACKqJflUhBbj92AwxibqMlNJRagXy62wGQZYyHX51ne790Z5oHdEFVkTpLSCwWXj2bgV0tR0oVs/L0wKxkoVbmEfOIuEIsRcMeKELWe6UsCdsO6Vl1F5j0X1wAPvHESKLZ8OZ/I//1Hs2cXkxO8RXl5i1oec3+4htMq/t7k/rgPt\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"cb30857f9e277bfe1cc97819bfb957594e17e827\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=CB30857F9E277BFE1CC97819BFB957594E17E827)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:18:59.7920583Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAzMB4XDTE1MTAwMjE2MjkzMVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDMwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKtIQd3B7mzqvml2whJ76q4MjhJOjDQGEtkzUhQcQP4l7iGwRdfGsyZsG0iPeofykxymQNTwnLUesMCncfYZHnQkwiKk8N43nLcs7bhO+yB7XLXY/ZCMPmvltlH+liUkFFbQVT9Xkgs0MvuKhjW/DKS9ICyiNUsJc5ZBj/gibO0LAgMBAAGjSzBJMEcGA1UdAQRAMD6AEKRpcZPLctriJqU1tKpaVw+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwM4IQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAA4GBACKqJflUhBbj92AwxibqMlNJRagXy62wGQZYyHX51ne790Z5oHdEFVkTpLSCwWXj2bgV0tR0oVs/L0wKxkoVbmEfOIuEIsRcMeKELWe6UsCdsO6Vl1F5j0X1wAPvHESKLZ8OZ/I//1Hs2cXkxO8RXl5i1oec3+4htMq/t7k/rgPt\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -478,19 +478,19 @@ "chunked" ], "request-id": [ - "a88bbddc-e68c-42c2-8dd3-0d17d6ae955d" + "48ef07ee-4506-40db-b944-a468df9c5c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e16bf696-e229-4123-b4cd-aa2ad7d7832d" + "58b71f3e-5992-42d8-96d2-1e3a75220fc7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -499,26 +499,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD02Q0FFNTI0RkQyMkFCNzA4ODE3MzU1RTgyMzYzMzJCRkQyRDQ1QkYxKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD02Q0FFNTI0RkQyMkFCNzA4ODE3MzU1RTgyMzYzMzJCRkQyRDQ1QkYxKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "360fbd50-6db7-4209-a145-84f381fc437c" + "54a20bf2-00ec-484e-83c9-1c0e2bd8ead3" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:50.6164649Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA0MB4XDTE1MTAwMjE2Mjk1MFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJGiCOZjxCu6wIrV9rvjt/6z6YqsMS4RKIEXR+4YYJzTAK6Xj1/J94iRxwhk/diq6tnCQ/ju8WEeFrkE8DiAQ6KMONFU6jZu0D+iVNjNkTVoDLkhm75K7zf4f2UQ/TY77o0OS8EV9Tlg75JlDOdpjpXuxPWJj1dRvxtGVemfYEpTAgMBAAGjSzBJMEcGA1UdAQRAMD6AEI7I79vmD6xpDGm9z1clLdWhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNIIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAA4GBAGkjmlqM/MayUaXAdyIdyfTV5wIQ8MVPX3wGNfBE65TkyuVF3Dly7ch/jMFLSrvysJ09lLv71aV2dKrgcBclkq8wkJT6GkjCcPKWyqFWDygMBW6PPntkm3VK8V0eicDdmso3mr01PlNlMQ6sFDIO7JweTqZOh6HxDBguj2jcp+V9\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:19:00.1712683Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA0MB4XDTE1MTAwMjE2Mjk1MFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJGiCOZjxCu6wIrV9rvjt/6z6YqsMS4RKIEXR+4YYJzTAK6Xj1/J94iRxwhk/diq6tnCQ/ju8WEeFrkE8DiAQ6KMONFU6jZu0D+iVNjNkTVoDLkhm75K7zf4f2UQ/TY77o0OS8EV9Tlg75JlDOdpjpXuxPWJj1dRvxtGVemfYEpTAgMBAAGjSzBJMEcGA1UdAQRAMD6AEI7I79vmD6xpDGm9z1clLdWhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNIIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAA4GBAGkjmlqM/MayUaXAdyIdyfTV5wIQ8MVPX3wGNfBE65TkyuVF3Dly7ch/jMFLSrvysJ09lLv71aV2dKrgcBclkq8wkJT6GkjCcPKWyqFWDygMBW6PPntkm3VK8V0eicDdmso3mr01PlNlMQ6sFDIO7JweTqZOh6HxDBguj2jcp+V9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -527,19 +527,19 @@ "chunked" ], "request-id": [ - "4586bb86-0050-4d78-a595-9afad8a82ae1" + "5555b8f1-263a-43e2-b07f-a37cf2e13bf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "360fbd50-6db7-4209-a145-84f381fc437c" + "54a20bf2-00ec-484e-83c9-1c0e2bd8ead3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -548,26 +548,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD02Q0FFNTI0RkQyMkFCNzA4ODE3MzU1RTgyMzYzMzJCRkQyRDQ1QkYxKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD02Q0FFNTI0RkQyMkFCNzA4ODE3MzU1RTgyMzYzMzJCRkQyRDQ1QkYxKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "15f2eada-98ed-4675-896a-e93cf0ecf6fb" + "ee76da74-eaf6-4d67-90db-1be58ff8a937" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:50.6164649Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA0MB4XDTE1MTAwMjE2Mjk1MFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJGiCOZjxCu6wIrV9rvjt/6z6YqsMS4RKIEXR+4YYJzTAK6Xj1/J94iRxwhk/diq6tnCQ/ju8WEeFrkE8DiAQ6KMONFU6jZu0D+iVNjNkTVoDLkhm75K7zf4f2UQ/TY77o0OS8EV9Tlg75JlDOdpjpXuxPWJj1dRvxtGVemfYEpTAgMBAAGjSzBJMEcGA1UdAQRAMD6AEI7I79vmD6xpDGm9z1clLdWhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNIIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAA4GBAGkjmlqM/MayUaXAdyIdyfTV5wIQ8MVPX3wGNfBE65TkyuVF3Dly7ch/jMFLSrvysJ09lLv71aV2dKrgcBclkq8wkJT6GkjCcPKWyqFWDygMBW6PPntkm3VK8V0eicDdmso3mr01PlNlMQ6sFDIO7JweTqZOh6HxDBguj2jcp+V9\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=6CAE524FD22AB708817355E8236332BFD2D45BF1)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:19:00.1712683Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA0MB4XDTE1MTAwMjE2Mjk1MFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJGiCOZjxCu6wIrV9rvjt/6z6YqsMS4RKIEXR+4YYJzTAK6Xj1/J94iRxwhk/diq6tnCQ/ju8WEeFrkE8DiAQ6KMONFU6jZu0D+iVNjNkTVoDLkhm75K7zf4f2UQ/TY77o0OS8EV9Tlg75JlDOdpjpXuxPWJj1dRvxtGVemfYEpTAgMBAAGjSzBJMEcGA1UdAQRAMD6AEI7I79vmD6xpDGm9z1clLdWhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNIIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAA4GBAGkjmlqM/MayUaXAdyIdyfTV5wIQ8MVPX3wGNfBE65TkyuVF3Dly7ch/jMFLSrvysJ09lLv71aV2dKrgcBclkq8wkJT6GkjCcPKWyqFWDygMBW6PPntkm3VK8V0eicDdmso3mr01PlNlMQ6sFDIO7JweTqZOh6HxDBguj2jcp+V9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -576,19 +576,19 @@ "chunked" ], "request-id": [ - "19e99023-0128-49c3-87bb-ceb9d46d3bf0" + "daeea186-a079-499f-98f9-b9d736d6c133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "15f2eada-98ed-4675-896a-e93cf0ecf6fb" + "ee76da74-eaf6-4d67-90db-1be58ff8a937" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -597,26 +597,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6565a271-cb1c-4190-8979-86677903150e" + "480b7ff8-6321-40ba-b28d-1e1715483bb3" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:49.4510706Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n },\r\n {\r\n \"thumbprint\": \"377401c6673c18d2167e1f01ae0bbf796a0efd08\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=377401c6673c18d2167e1f01ae0bbf796a0efd08)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:50.9824122Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQ9XEm9w3uwrVK6ZrhbLUZhzAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA1MB4XDTE1MTAwMjIwMzAwMFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKWJKcDigsE/CmngSEKJhGHnNxAkz6+r34YKAZE1p+mX/lzY4wZMkqeBVNnO8O5hrfzWQJutCDPtiYQYdX4gkt/8s768h51dBtKdOQAPJqzNne0wOWxusvpBGQA6HNmkpleEXvMp1W8jzD+TdpTZJ7Z+IaSlgp6m0sslizW1DVLzAgMBAAGjSzBJMEcGA1UdAQRAMD6AENuHTxPsPqwfpXvzEBY/f1ChGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNYIQ9XEm9w3uwrVK6ZrhbLUZhzAJBgUrDgMCHQUAA4GBAExDMhynm6kUbkp4MCY9Fl47bkmrfnm5m1cUqkrevnRQ5d1Bc8xfZSB7EgrgeEcG4VNQ3pAMulQPeyZKDiKp7Q2qUjFMsqifJCfqkF9mjFPwRDYdqGqoEyXYMy0NorRBHFUCTZN/mBNEgpJ7e6udVKA75BgeCrJ+dOhqEZms5exA\"\r\n },\r\n {\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=6cae524fd22ab708817355e8236332bfd2d45bf1)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:50.6164649Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA0MB4XDTE1MTAwMjE2Mjk1MFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJGiCOZjxCu6wIrV9rvjt/6z6YqsMS4RKIEXR+4YYJzTAK6Xj1/J94iRxwhk/diq6tnCQ/ju8WEeFrkE8DiAQ6KMONFU6jZu0D+iVNjNkTVoDLkhm75K7zf4f2UQ/TY77o0OS8EV9Tlg75JlDOdpjpXuxPWJj1dRvxtGVemfYEpTAgMBAAGjSzBJMEcGA1UdAQRAMD6AEI7I79vmD6xpDGm9z1clLdWhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNIIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAA4GBAGkjmlqM/MayUaXAdyIdyfTV5wIQ8MVPX3wGNfBE65TkyuVF3Dly7ch/jMFLSrvysJ09lLv71aV2dKrgcBclkq8wkJT6GkjCcPKWyqFWDygMBW6PPntkm3VK8V0eicDdmso3mr01PlNlMQ6sFDIO7JweTqZOh6HxDBguj2jcp+V9\"\r\n },\r\n {\r\n \"thumbprint\": \"cb30857f9e277bfe1cc97819bfb957594e17e827\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cb30857f9e277bfe1cc97819bfb957594e17e827)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:57:50.2791276Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAzMB4XDTE1MTAwMjE2MjkzMVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDMwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKtIQd3B7mzqvml2whJ76q4MjhJOjDQGEtkzUhQcQP4l7iGwRdfGsyZsG0iPeofykxymQNTwnLUesMCncfYZHnQkwiKk8N43nLcs7bhO+yB7XLXY/ZCMPmvltlH+liUkFFbQVT9Xkgs0MvuKhjW/DKS9ICyiNUsJc5ZBj/gibO0LAgMBAAGjSzBJMEcGA1UdAQRAMD6AEKRpcZPLctriJqU1tKpaVw+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwM4IQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAA4GBACKqJflUhBbj92AwxibqMlNJRagXy62wGQZYyHX51ne790Z5oHdEFVkTpLSCwWXj2bgV0tR0oVs/L0wKxkoVbmEfOIuEIsRcMeKELWe6UsCdsO6Vl1F5j0X1wAPvHESKLZ8OZ/I//1Hs2cXkxO8RXl5i1oec3+4htMq/t7k/rgPt\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:18:59.2742063Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n },\r\n {\r\n \"thumbprint\": \"377401c6673c18d2167e1f01ae0bbf796a0efd08\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=377401c6673c18d2167e1f01ae0bbf796a0efd08)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:19:00.5192719Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQ9XEm9w3uwrVK6ZrhbLUZhzAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA1MB4XDTE1MTAwMjIwMzAwMFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKWJKcDigsE/CmngSEKJhGHnNxAkz6+r34YKAZE1p+mX/lzY4wZMkqeBVNnO8O5hrfzWQJutCDPtiYQYdX4gkt/8s768h51dBtKdOQAPJqzNne0wOWxusvpBGQA6HNmkpleEXvMp1W8jzD+TdpTZJ7Z+IaSlgp6m0sslizW1DVLzAgMBAAGjSzBJMEcGA1UdAQRAMD6AENuHTxPsPqwfpXvzEBY/f1ChGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNYIQ9XEm9w3uwrVK6ZrhbLUZhzAJBgUrDgMCHQUAA4GBAExDMhynm6kUbkp4MCY9Fl47bkmrfnm5m1cUqkrevnRQ5d1Bc8xfZSB7EgrgeEcG4VNQ3pAMulQPeyZKDiKp7Q2qUjFMsqifJCfqkF9mjFPwRDYdqGqoEyXYMy0NorRBHFUCTZN/mBNEgpJ7e6udVKA75BgeCrJ+dOhqEZms5exA\"\r\n },\r\n {\r\n \"thumbprint\": \"6cae524fd22ab708817355e8236332bfd2d45bf1\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=6cae524fd22ab708817355e8236332bfd2d45bf1)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:19:00.1712683Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDA0MB4XDTE1MTAwMjE2Mjk1MFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJGiCOZjxCu6wIrV9rvjt/6z6YqsMS4RKIEXR+4YYJzTAK6Xj1/J94iRxwhk/diq6tnCQ/ju8WEeFrkE8DiAQ6KMONFU6jZu0D+iVNjNkTVoDLkhm75K7zf4f2UQ/TY77o0OS8EV9Tlg75JlDOdpjpXuxPWJj1dRvxtGVemfYEpTAgMBAAGjSzBJMEcGA1UdAQRAMD6AEI7I79vmD6xpDGm9z1clLdWhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwNIIQHPKwzIE3W5FOI4i7/ggeJDAJBgUrDgMCHQUAA4GBAGkjmlqM/MayUaXAdyIdyfTV5wIQ8MVPX3wGNfBE65TkyuVF3Dly7ch/jMFLSrvysJ09lLv71aV2dKrgcBclkq8wkJT6GkjCcPKWyqFWDygMBW6PPntkm3VK8V0eicDdmso3mr01PlNlMQ6sFDIO7JweTqZOh6HxDBguj2jcp+V9\"\r\n },\r\n {\r\n \"thumbprint\": \"cb30857f9e277bfe1cc97819bfb957594e17e827\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cb30857f9e277bfe1cc97819bfb957594e17e827)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:18:59.7920583Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAzMB4XDTE1MTAwMjE2MjkzMVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDMwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKtIQd3B7mzqvml2whJ76q4MjhJOjDQGEtkzUhQcQP4l7iGwRdfGsyZsG0iPeofykxymQNTwnLUesMCncfYZHnQkwiKk8N43nLcs7bhO+yB7XLXY/ZCMPmvltlH+liUkFFbQVT9Xkgs0MvuKhjW/DKS9ICyiNUsJc5ZBj/gibO0LAgMBAAGjSzBJMEcGA1UdAQRAMD6AEKRpcZPLctriJqU1tKpaVw+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwM4IQgvCUXLzXwZpNqxJdFlpP1jAJBgUrDgMCHQUAA4GBACKqJflUhBbj92AwxibqMlNJRagXy62wGQZYyHX51ne790Z5oHdEFVkTpLSCwWXj2bgV0tR0oVs/L0wKxkoVbmEfOIuEIsRcMeKELWe6UsCdsO6Vl1F5j0X1wAPvHESKLZ8OZ/I//1Hs2cXkxO8RXl5i1oec3+4htMq/t7k/rgPt\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -625,19 +625,19 @@ "chunked" ], "request-id": [ - "090abe28-05c5-4aba-9d82-88945b35af30" + "59c86412-c788-4984-b751-7a87def61a64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6565a271-cb1c-4190-8979-86677903150e" + "480b7ff8-6321-40ba-b28d-1e1715483bb3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -646,22 +646,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjViMzUxYjA4N2EwODRjNTA2N2Y1ZTcxZWZmODU5MTk3MDMyM2Y5KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjViMzUxYjA4N2EwODRjNTA2N2Y1ZTcxZWZmODU5MTk3MDMyM2Y5KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c49bfbe4-f526-466b-8d43-5ff61712cf98" + "42db0c39-3d01-499b-82b8-003c130a9ac6" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:50 GMT" + "Mon, 21 Dec 2015 21:19:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -671,19 +671,19 @@ "chunked" ], "request-id": [ - "89df8e8a-805c-43fe-a608-7aa7a70482d5" + "98e1632b-0300-4bae-911b-2e808b2c3c51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c49bfbe4-f526-466b-8d43-5ff61712cf98" + "42db0c39-3d01-499b-82b8-003c130a9ac6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -692,22 +692,22 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=377401c6673c18d2167e1f01ae0bbf796a0efd08)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0zNzc0MDFjNjY3M2MxOGQyMTY3ZTFmMDFhZTBiYmY3OTZhMGVmZDA4KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=377401c6673c18d2167e1f01ae0bbf796a0efd08)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0zNzc0MDFjNjY3M2MxOGQyMTY3ZTFmMDFhZTBiYmY3OTZhMGVmZDA4KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f93a523b-fc27-4be3-961a-d9594b80c9e7" + "8c5f38df-6902-4fb0-b0de-d24bed753b66" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -717,19 +717,19 @@ "chunked" ], "request-id": [ - "2d1f07a6-3401-4007-bfdc-5c97419f198d" + "4f577460-42fb-45b7-b011-624517267402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f93a523b-fc27-4be3-961a-d9594b80c9e7" + "8c5f38df-6902-4fb0-b0de-d24bed753b66" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -738,22 +738,22 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=6cae524fd22ab708817355e8236332bfd2d45bf1)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD02Y2FlNTI0ZmQyMmFiNzA4ODE3MzU1ZTgyMzYzMzJiZmQyZDQ1YmYxKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=6cae524fd22ab708817355e8236332bfd2d45bf1)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD02Y2FlNTI0ZmQyMmFiNzA4ODE3MzU1ZTgyMzYzMzJiZmQyZDQ1YmYxKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7f779b6a-08e6-41e9-b977-ab00817f6ec7" + "1a310c20-68b5-4ed9-a492-513f15b28322" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -763,19 +763,19 @@ "chunked" ], "request-id": [ - "fd3472ce-78dd-488b-8288-c6874f0b5fc8" + "f21cab05-9072-4057-bfd5-d43c9baec062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7f779b6a-08e6-41e9-b977-ab00817f6ec7" + "1a310c20-68b5-4ed9-a492-513f15b28322" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -784,22 +784,22 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=cb30857f9e277bfe1cc97819bfb957594e17e827)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jYjMwODU3ZjllMjc3YmZlMWNjOTc4MTliZmI5NTc1OTRlMTdlODI3KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=cb30857f9e277bfe1cc97819bfb957594e17e827)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jYjMwODU3ZjllMjc3YmZlMWNjOTc4MTliZmI5NTc1OTRlMTdlODI3KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "72720866-3f57-4843-a6a3-28891d4850b5" + "0fe07c93-d294-4d2f-9f8e-7498024568b5" ], "ocp-date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -809,19 +809,19 @@ "chunked" ], "request-id": [ - "f971a1c8-8f9b-4525-afca-d5b3c7be918d" + "f77db6db-3dac-467a-8da5-7508fa239ef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "72720866-3f57-4843-a6a3-28891d4850b5" + "0fe07c93-d294-4d2f-9f8e-7498024568b5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 10 Nov 2015 23:57:51 GMT" + "Mon, 21 Dec 2015 21:19:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json index 52349b866040..19eed78a0565 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-request-id": [ - "493ecc54-a4c7-4a4b-9152-db31c5810180" + "b78af91d-b948-4100-9762-dc1c73f9e936" ], "x-ms-correlation-request-id": [ - "493ecc54-a4c7-4a4b-9152-db31c5810180" + "b78af91d-b948-4100-9762-dc1c73f9e936" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002132Z:493ecc54-a4c7-4a4b-9152-db31c5810180" + "WESTUS:20151221T190854Z:b78af91d-b948-4100-9762-dc1c73f9e936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:21:31 GMT" + "Mon, 21 Dec 2015 19:08:53 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14997" ], "x-ms-request-id": [ - "11e27a98-5243-4c52-984f-5c0a24e6e138" + "093549f8-56a6-4ae0-8c90-3853adb86bff" ], "x-ms-correlation-request-id": [ - "11e27a98-5243-4c52-984f-5c0a24e6e138" + "093549f8-56a6-4ae0-8c90-3853adb86bff" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002314Z:11e27a98-5243-4c52-984f-5c0a24e6e138" + "WESTUS:20151221T191040Z:093549f8-56a6-4ae0-8c90-3853adb86bff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:23:14 GMT" + "Mon, 21 Dec 2015 19:10:40 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:21:33 GMT" + "Mon, 21 Dec 2015 19:08:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "97bc3b6d-6d9a-4057-9b14-ce501ff10e7f" + "19bcc4a7-4c2f-4fbf-8ade-a91c8d006028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14997" ], "x-ms-request-id": [ - "e6a24b70-a188-464a-ad5c-99490eea7564" + "6706d27d-67c2-48d5-8e0c-5261d33c464c" ], "x-ms-correlation-request-id": [ - "e6a24b70-a188-464a-ad5c-99490eea7564" + "6706d27d-67c2-48d5-8e0c-5261d33c464c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002133Z:e6a24b70-a188-464a-ad5c-99490eea7564" + "WESTUS:20151221T190855Z:6706d27d-67c2-48d5-8e0c-5261d33c464c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:21:32 GMT" + "Mon, 21 Dec 2015 19:08:54 GMT" ], "ETag": [ - "0x8D2EA2E0E03A699" + "0x8D30A3A2B30DCDF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:23:15 GMT" + "Mon, 21 Dec 2015 19:10:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "183efafb-be1c-4079-bc84-696f66a9ec0b" + "28bec346-14ca-4da4-82de-f21ade414100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-request-id": [ - "1841dee1-f25a-4deb-8637-2765e7f4c418" + "934cc2ee-8eed-4001-84a2-9312def4850b" ], "x-ms-correlation-request-id": [ - "1841dee1-f25a-4deb-8637-2765e7f4c418" + "934cc2ee-8eed-4001-84a2-9312def4850b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002315Z:1841dee1-f25a-4deb-8637-2765e7f4c418" + "WESTUS:20151221T191042Z:934cc2ee-8eed-4001-84a2-9312def4850b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:23:14 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "ETag": [ - "0x8D2EA2E4ADC6B1A" + "0x8D30A3A6B0100A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "2630e700-30cd-4b25-9c3a-405d47a8691d" + "78b4d646-8f03-4ddb-96cb-321643f1a5b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "ba50b4ed-e0bb-4534-94d9-307c6bdde56c" + "68ed9190-9cb1-49b4-8f7b-f7b3d114e6ce" ], "x-ms-correlation-request-id": [ - "ba50b4ed-e0bb-4534-94d9-307c6bdde56c" + "68ed9190-9cb1-49b4-8f7b-f7b3d114e6ce" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002133Z:ba50b4ed-e0bb-4534-94d9-307c6bdde56c" + "WESTUS:20151221T190855Z:68ed9190-9cb1-49b4-8f7b-f7b3d114e6ce" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:21:32 GMT" + "Mon, 21 Dec 2015 19:08:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "2430d1c0-6257-4283-b55e-57e4c551afb7" + "c935d5a8-2daf-4409-96fd-999452d7d467" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "f2b95b60-411e-49e9-827d-46d7c0b73465" + "2e9b06c3-5edc-45b2-ac75-e8fce87ee99d" ], "x-ms-correlation-request-id": [ - "f2b95b60-411e-49e9-827d-46d7c0b73465" + "2e9b06c3-5edc-45b2-ac75-e8fce87ee99d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002315Z:f2b95b60-411e-49e9-827d-46d7c0b73465" + "WESTUS:20151221T191043Z:2e9b06c3-5edc-45b2-ac75-e8fce87ee99d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:23:14 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,22 +337,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "80edc048-60fa-447f-b5d4-ec0defd6da43" + "36dfb32a-9559-42c0-9dea-50e19c131c21" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:33 GMT" + "Mon, 21 Dec 2015 19:08:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "40c78e27-5741-4477-b203-b2b28ce79609" + "419dae26-01d9-4304-a36b-b473548a677e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "80edc048-60fa-447f-b5d4-ec0defd6da43" + "36dfb32a-9559-42c0-9dea-50e19c131c21" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:33 GMT" + "Mon, 21 Dec 2015 19:08:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ec2e4161-ae14-42d4-af1c-91d600a64b16" + "c09041d9-4fbf-4444-a136-f9f54d4fe1d2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:38 GMT" + "Mon, 21 Dec 2015 19:09:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "49da9492-11f4-47cb-bca0-9f6789314c19" + "c76ef796-41d2-4ad4-8859-658bf8278c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ec2e4161-ae14-42d4-af1c-91d600a64b16" + "c09041d9-4fbf-4444-a136-f9f54d4fe1d2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:39 GMT" + "Mon, 21 Dec 2015 19:09:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,22 +435,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1f21c8db-8656-4a79-9200-3f94d466fce4" + "0bddc69c-e76d-4e8f-a4e9-54c449092711" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:43 GMT" + "Mon, 21 Dec 2015 19:09:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "e6dceaa7-7620-4917-adbe-3b30bab2c158" + "d4c59948-7037-4def-8888-0549d4cbe789" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1f21c8db-8656-4a79-9200-3f94d466fce4" + "0bddc69c-e76d-4e8f-a4e9-54c449092711" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:44 GMT" + "Mon, 21 Dec 2015 19:09:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,22 +484,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a22521e8-d78e-4ffc-97e4-d3f4afb3ceb1" + "ccf30e3d-e9d6-4b84-aaf5-cdcac6c6c6f3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:48 GMT" + "Mon, 21 Dec 2015 19:09:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "4e3247a7-3527-4876-85a5-154ca55c066c" + "12542b32-5ad3-412e-9b5c-883d8346e6b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a22521e8-d78e-4ffc-97e4-d3f4afb3ceb1" + "ccf30e3d-e9d6-4b84-aaf5-cdcac6c6c6f3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:48 GMT" + "Mon, 21 Dec 2015 19:09:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -533,22 +533,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6523394e-2bc0-4a46-930d-df36bb6830af" + "03539758-81f1-484c-84da-cb5fd4ded5e5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:53 GMT" + "Mon, 21 Dec 2015 19:09:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -561,19 +561,19 @@ "chunked" ], "request-id": [ - "cbfd675c-d7af-46c8-bb47-95dd313374bf" + "4aa4577b-2c52-4d18-adad-be9699ce9f77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6523394e-2bc0-4a46-930d-df36bb6830af" + "03539758-81f1-484c-84da-cb5fd4ded5e5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:53 GMT" + "Mon, 21 Dec 2015 19:09:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,26 +582,75 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "516600c7-93e6-469c-8e23-5d580a8fe0bf" + "0a45c306-ac6b-4493-8bd3-8e0a216002bf" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:c258788c-49b3-4a4d-9501-4e805f789f8d\\nTime:2015-11-11T00:21:59.4771717Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e39029e0-2e67-46e0-8650-958f9b4668b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0a45c306-ac6b-4493-8bd3-8e0a216002bf" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:09:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "891d8657-903b-46fd-8a37-34eef4259453" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:09:26 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:ab723612-583c-40bf-98ad-ca7a03afee19\\nTime:2015-12-21T19:09:28.1624415Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -610,19 +659,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "c258788c-49b3-4a4d-9501-4e805f789f8d" + "ab723612-583c-40bf-98ad-ca7a03afee19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "516600c7-93e6-469c-8e23-5d580a8fe0bf" + "891d8657-903b-46fd-8a37-34eef4259453" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -631,8 +680,8 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -643,16 +692,16 @@ "816" ], "client-request-id": [ - "42fd075b-abff-4e77-bb85-de6249adb969" + "fc11a964-2bb1-47c8-9bb5-fbc2416b7264" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -662,13 +711,13 @@ "chunked" ], "request-id": [ - "d5d52e70-0dd4-401e-ad40-ce55d3b8d991" + "7c6c20fe-a121-4d7c-a5cd-c08b89b274cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "42fd075b-abff-4e77-bb85-de6249adb969" + "fc11a964-2bb1-47c8-9bb5-fbc2416b7264" ], "DataServiceVersion": [ "3.0" @@ -677,7 +726,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:28 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -689,47 +738,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"certPool\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false,\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"C1E494A415149C5F211C4778B52F2E834A07247C\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"currentuser\",\r\n \"storeName\": \"My\",\r\n \"visibility\": \"task\"\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"id\": \"certPool\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true,\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"C1E494A415149C5F211C4778B52F2E834A07247C\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"currentuser\",\r\n \"storeName\": \"My\",\r\n \"visibility\": \"task\"\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "379" + "405" ], "client-request-id": [ - "9bad9371-d486-4bbc-bbcc-830516733b9b" + "5e66dfc0-c0ff-4e87-849c-77fd02192311" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:22:00 GMT" + "Mon, 21 Dec 2015 19:09:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "22e0b415-1407-4cf6-8f0f-d5a12efdb54c" + "7ecd4c35-6432-492a-ac58-27aae5a22da2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9bad9371-d486-4bbc-bbcc-830516733b9b" + "5e66dfc0-c0ff-4e87-849c-77fd02192311" ], "DataServiceVersion": [ "3.0" @@ -738,10 +787,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/certPool" ], "Date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:28 GMT" ], "ETag": [ - "0x8D2EA2E1DC40D4D" + "0x8D30A3A3DFAABBE" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/certPool" @@ -753,22 +802,22 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a9dab180-b81f-40d4-9d40-389a32c56214" + "d251add2-7f99-4dcf-87eb-d884db9cc63c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -778,19 +827,19 @@ "chunked" ], "request-id": [ - "625ab68e-64cf-4e40-9d23-5a20e2fb49da" + "80fbf53c-7630-49c0-87dc-259647aab4b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a9dab180-b81f-40d4-9d40-389a32c56214" + "d251add2-7f99-4dcf-87eb-d884db9cc63c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -799,22 +848,22 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "66565406-78a1-401a-802e-019056ff57a0" + "8a15f8c5-5fef-4fc9-8f06-fb3315739abe" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:44 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -824,19 +873,19 @@ "chunked" ], "request-id": [ - "69530dd3-417b-4e12-9abd-43c5bdf6665f" + "5c5635eb-7e81-4605-8177-07aaf3446be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "66565406-78a1-401a-802e-019056ff57a0" + "8a15f8c5-5fef-4fc9-8f06-fb3315739abe" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -845,26 +894,26 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cd8c0db8-9e94-464f-8488-c4f62c00fc32" + "0a9d3f9e-7a50-4ce8-b1aa-fb2322698fd6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -873,19 +922,19 @@ "chunked" ], "request-id": [ - "f6b7ddd1-464a-4f9c-ab20-b278776d2fee" + "d167300e-cd4b-4b53-b505-4133ea214a5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cd8c0db8-9e94-464f-8488-c4f62c00fc32" + "0a9d3f9e-7a50-4ce8-b1aa-fb2322698fd6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:21:59 GMT" + "Mon, 21 Dec 2015 19:09:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -894,26 +943,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ffd5e40e-0634-4867-88f8-3b7a2c7f4051" + "adc93c00-cdcb-4460-9096-bc9ffd09e1a1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:22:10 GMT" + "Mon, 21 Dec 2015 19:09:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -922,19 +971,19 @@ "chunked" ], "request-id": [ - "530ddd21-7a62-449a-9093-ac33977d054e" + "f93dd31a-d835-46bc-81af-f65f97675ff5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ffd5e40e-0634-4867-88f8-3b7a2c7f4051" + "adc93c00-cdcb-4460-9096-bc9ffd09e1a1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:22:10 GMT" + "Mon, 21 Dec 2015 19:09:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -943,26 +992,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e3dcee57-52e2-4ce8-b81e-2e863290a16e" + "a827afdd-2156-42cc-90e8-0b833d7f28a6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:22:20 GMT" + "Mon, 21 Dec 2015 19:09:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -971,19 +1020,19 @@ "chunked" ], "request-id": [ - "772926f7-c040-418d-aee0-8cd57b0d0c4c" + "408e7131-9148-4a9c-94ab-fe4f5aec72df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e3dcee57-52e2-4ce8-b81e-2e863290a16e" + "a827afdd-2156-42cc-90e8-0b833d7f28a6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:22:20 GMT" + "Mon, 21 Dec 2015 19:09:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -992,26 +1041,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4bd892ad-d163-462d-b986-51e1824c24f9" + "7e0467ce-8fc2-4443-9428-dda8df7d204d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:22:30 GMT" + "Mon, 21 Dec 2015 19:09:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1020,19 +1069,19 @@ "chunked" ], "request-id": [ - "07b745d0-f04c-4174-bf90-e5cd64ebd041" + "668d7803-9f1d-4bdb-bf56-5c6bb14dd7a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4bd892ad-d163-462d-b986-51e1824c24f9" + "7e0467ce-8fc2-4443-9428-dda8df7d204d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:22:30 GMT" + "Mon, 21 Dec 2015 19:09:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1041,26 +1090,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "20f5f484-d044-4f19-9488-13d3662df81d" + "ec6acfc0-0422-4e8b-a5bc-ebe3282cfbfb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:22:40 GMT" + "Mon, 21 Dec 2015 19:10:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1069,19 +1118,19 @@ "chunked" ], "request-id": [ - "d3b38e99-879a-4ed6-a952-dfb5e4cc4a68" + "8f566c12-cc05-4775-9515-88aa0f259a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "20f5f484-d044-4f19-9488-13d3662df81d" + "ec6acfc0-0422-4e8b-a5bc-ebe3282cfbfb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:22:40 GMT" + "Mon, 21 Dec 2015 19:10:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1090,26 +1139,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90bfe8eb-659d-483d-80fd-57599bb3a3ac" + "1aa66c50-e839-4dae-891b-051b67caac04" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:22:50 GMT" + "Mon, 21 Dec 2015 19:10:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1118,19 +1167,19 @@ "chunked" ], "request-id": [ - "d034ba5d-5cc8-4886-893d-3dfd7dc8afd4" + "6c887020-5631-48b5-b900-b1fe2d6e7c55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "90bfe8eb-659d-483d-80fd-57599bb3a3ac" + "1aa66c50-e839-4dae-891b-051b67caac04" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:22:50 GMT" + "Mon, 21 Dec 2015 19:10:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1139,26 +1188,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "78e166f1-fa61-41e8-a5a6-058018892035" + "113f6c57-758c-43ef-8349-5873f8dce4cf" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:00 GMT" + "Mon, 21 Dec 2015 19:10:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:21:59.7821664Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.2203362Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1167,19 +1216,19 @@ "chunked" ], "request-id": [ - "bef42872-d462-4914-b6bf-c9260f6f7614" + "8664b8a8-e397-4f7e-bf8f-2479a5d7e327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "78e166f1-fa61-41e8-a5a6-058018892035" + "113f6c57-758c-43ef-8349-5873f8dce4cf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:00 GMT" + "Mon, 21 Dec 2015 19:10:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1188,26 +1237,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b32fa6e3-786d-4347-891f-59c5715fbc81" + "8df551af-fccd-474b-8b43-af686edf7f47" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:10 GMT" + "Mon, 21 Dec 2015 19:10:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:23:01.5907714Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:10:28.6046422Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1216,19 +1265,19 @@ "chunked" ], "request-id": [ - "70de7ab8-97a2-401f-a354-2e0ffe810f75" + "bd48057b-de6c-4bf9-b47b-dcebe6062399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b32fa6e3-786d-4347-891f-59c5715fbc81" + "8df551af-fccd-474b-8b43-af686edf7f47" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:10 GMT" + "Mon, 21 Dec 2015 19:10:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1237,26 +1286,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "06e16630-bbc7-44d6-8251-c9208183654e" + "c397f219-a07a-4221-a685-7a6ea2d046c3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:15 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:23:01.5907714Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:10:28.6046422Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1265,19 +1314,19 @@ "chunked" ], "request-id": [ - "fdf9add5-2877-4ee0-bdd3-52b43e73481a" + "3f98702e-bdd8-43d9-b9a3-5265e78bf534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "06e16630-bbc7-44d6-8251-c9208183654e" + "c397f219-a07a-4221-a685-7a6ea2d046c3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1286,26 +1335,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "10a974b9-248a-4b8b-981b-ca9fe83c4018" + "a71eaa1f-2145-4663-b254-9197b06b9a94" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:15 GMT" + "Mon, 21 Dec 2015 19:10:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:23:01.5907714Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:22:00.246027Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:10:28.6046422Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:09:25.743087Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1314,19 +1363,19 @@ "chunked" ], "request-id": [ - "8584cc8e-f8a1-4e50-a1c6-3a1962340787" + "80391cf7-efd2-463c-a39c-4aef60941a73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "10a974b9-248a-4b8b-981b-ca9fe83c4018" + "a71eaa1f-2145-4663-b254-9197b06b9a94" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1335,22 +1384,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?canceldelete&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9jYW5jZWxkZWxldGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?canceldelete&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9jYW5jZWxkZWxldGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "21e7e1fa-7b93-4d93-9066-49612a136ea1" + "675bf895-3865-4f04-a08e-0c32e1c0cdb0" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:15 GMT" + "Mon, 21 Dec 2015 19:10:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1360,13 +1409,13 @@ "0" ], "request-id": [ - "af2e9d38-c260-48d1-8e40-37e3970de3bf" + "44d446f9-af8d-4bef-ab2c-f94f24764d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "21e7e1fa-7b93-4d93-9066-49612a136ea1" + "675bf895-3865-4f04-a08e-0c32e1c0cdb0" ], "DataServiceVersion": [ "3.0" @@ -1375,7 +1424,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1384,26 +1433,26 @@ "StatusCode": 204 }, { - "RequestUri": "/certificates?$filter=state%20eq%20'active'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/certificates?$filter=state%20eq%20'active'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e56f6990-7062-41ef-8d8d-b52c16e5d539" + "96f9ace2-bfca-4718-be99-ef5d91d237ce" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:23:16.4281385Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:23:01.5907714Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:10:42.3035458Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:10:28.6046422Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1412,19 +1461,19 @@ "chunked" ], "request-id": [ - "b3fd80bc-496b-49fe-b027-9b5f0809bd9a" + "1b523831-1d34-4039-807c-7eb614de054e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e56f6990-7062-41ef-8d8d-b52c16e5d539" + "96f9ace2-bfca-4718-be99-ef5d91d237ce" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1433,22 +1482,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/certPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/certPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bb476b55-33c0-4298-bab3-5191275ade21" + "66b8fcae-90c5-49c0-acfd-e1ad600464e2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1458,19 +1507,19 @@ "chunked" ], "request-id": [ - "cf8e8f21-dcd9-4f33-ac0f-fb7dfe7e582d" + "a1818a5f-0f40-4c96-adb7-649f684d0402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bb476b55-33c0-4298-bab3-5191275ade21" + "66b8fcae-90c5-49c0-acfd-e1ad600464e2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:23:16 GMT" + "Mon, 21 Dec 2015 19:10:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestDeleteCertificate.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestDeleteCertificate.json index 75e6057bfb7c..37804e556239 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestDeleteCertificate.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestDeleteCertificate.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-request-id": [ - "64093687-72c0-4bdb-b48d-0ad9d3ff94e0" + "fbbdc115-071b-4a58-9d8c-13389e91757c" ], "x-ms-correlation-request-id": [ - "64093687-72c0-4bdb-b48d-0ad9d3ff94e0" + "fbbdc115-071b-4a58-9d8c-13389e91757c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001936Z:64093687-72c0-4bdb-b48d-0ad9d3ff94e0" + "WESTUS:20151221T191506Z:fbbdc115-071b-4a58-9d8c-13389e91757c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:19:35 GMT" + "Mon, 21 Dec 2015 19:15:05 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "548fad13-dc51-42fc-976f-f0ce15d843d5" + "49c823c5-97ba-4ddd-90f9-0f4f2cdb4395" ], "x-ms-correlation-request-id": [ - "548fad13-dc51-42fc-976f-f0ce15d843d5" + "49c823c5-97ba-4ddd-90f9-0f4f2cdb4395" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001941Z:548fad13-dc51-42fc-976f-f0ce15d843d5" + "WESTUS:20151221T191541Z:49c823c5-97ba-4ddd-90f9-0f4f2cdb4395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:19:40 GMT" + "Mon, 21 Dec 2015 19:15:40 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:19:37 GMT" + "Mon, 21 Dec 2015 19:15:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c06bb70b-7803-40e6-af88-c86997583892" + "70038cc0-a5d1-4634-b9b5-607b49f3d78e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14984" ], "x-ms-request-id": [ - "0348b5d6-90a6-4514-a99d-5b3b19715d4c" + "15275ce4-1bff-4274-9e08-436488866d06" ], "x-ms-correlation-request-id": [ - "0348b5d6-90a6-4514-a99d-5b3b19715d4c" + "15275ce4-1bff-4274-9e08-436488866d06" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001937Z:0348b5d6-90a6-4514-a99d-5b3b19715d4c" + "WESTUS:20151221T191507Z:15275ce4-1bff-4274-9e08-436488866d06" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:19:37 GMT" + "Mon, 21 Dec 2015 19:15:07 GMT" ], "ETag": [ - "0x8D2EA2DC8EE90D3" + "0x8D30A3B0938B020" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4519b6fe-e1d7-4845-93fb-6535d7063604" + "9a5853bb-73e4-4835-8e18-eea0e8a069fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14983" ], "x-ms-request-id": [ - "d77a1591-6296-447f-83d2-03dabcc8fb9f" + "80f69be4-fee2-420d-909c-306cf189f017" ], "x-ms-correlation-request-id": [ - "d77a1591-6296-447f-83d2-03dabcc8fb9f" + "80f69be4-fee2-420d-909c-306cf189f017" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001941Z:d77a1591-6296-447f-83d2-03dabcc8fb9f" + "WESTUS:20151221T191541Z:80f69be4-fee2-420d-909c-306cf189f017" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:19:41 GMT" + "Mon, 21 Dec 2015 19:15:40 GMT" ], "ETag": [ - "0x8D2EA2DCB7BB5A9" + "0x8D30A3B1D6D1B9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "bfea278b-ad83-43b8-803e-758ada68848c" + "b90e62b6-4ca1-4c87-8b6e-144c9cc33156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "2585ae5e-3871-44e8-8859-0854b1ecc0ec" + "63ae059f-37ab-4987-b258-c40d0d57765a" ], "x-ms-correlation-request-id": [ - "2585ae5e-3871-44e8-8859-0854b1ecc0ec" + "63ae059f-37ab-4987-b258-c40d0d57765a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001937Z:2585ae5e-3871-44e8-8859-0854b1ecc0ec" + "WESTUS:20151221T191507Z:63ae059f-37ab-4987-b258-c40d0d57765a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:19:37 GMT" + "Mon, 21 Dec 2015 19:15:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "c9066c84-9b02-46ec-a89d-c36adf678a42" + "041455ec-7d04-448f-8890-f8d193f9ca4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "54bbe460-8279-4113-aeb3-7afefdc56acf" + "fbb16b86-f3d0-4121-a9aa-b12ffb05511f" ], "x-ms-correlation-request-id": [ - "54bbe460-8279-4113-aeb3-7afefdc56acf" + "fbb16b86-f3d0-4121-a9aa-b12ffb05511f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001941Z:54bbe460-8279-4113-aeb3-7afefdc56acf" + "WESTUS:20151221T191541Z:fbb16b86-f3d0-4121-a9aa-b12ffb05511f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:19:41 GMT" + "Mon, 21 Dec 2015 19:15:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,320 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "40818497-bf82-4659-8f08-636446c94552" + "9d3a7257-6ace-496e-addb-18bc3a618e76" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:19:37 GMT" + "Mon, 21 Dec 2015 19:15:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:71e9e26e-9ed7-47b0-9b35-3b4fa32d100b\\nTime:2015-11-11T00:19:39.6961041Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6e015123-a761-4af5-81fe-4133d7ec2b8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "9d3a7257-6ace-496e-addb-18bc3a618e76" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:15:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "36a3728a-3530-45d1-8059-877acb20f6b0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:15:12 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "db5fee0f-1c47-4167-9d76-3d14654b7d53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "36a3728a-3530-45d1-8059-877acb20f6b0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:15:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "38f48503-835d-4e8b-8bf5-7f654e548314" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:15:18 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "82675be2-edca-4204-b55f-fb4f45322d77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "38f48503-835d-4e8b-8bf5-7f654e548314" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:15:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5bf5da7a-5e0b-4e6a-9e41-ddb7034ad0b6" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:15:23 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a1ae8a43-6a07-4736-bc02-7d24349934e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5bf5da7a-5e0b-4e6a-9e41-ddb7034ad0b6" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:15:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "df06cde4-39fd-4505-96ee-3e5ce833c62b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:15:28 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8a8a30d4-6db4-4e6c-b0cf-95b7030d6e89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "df06cde4-39fd-4505-96ee-3e5ce833c62b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:15:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "03407b35-8b4a-4f57-bc1b-fbc3b9b5d5b7" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:15:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fb968abc-68b9-491a-9c4b-afc3aa4485d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "03407b35-8b4a-4f57-bc1b-fbc3b9b5d5b7" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:15:31 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5b467928-9862-4cd1-8c37-70dbe0189e23" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:15:38 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:dd04d5ef-b5ef-4af5-b987-faee757952ef\\nTime:2015-12-21T19:15:36.9925150Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -365,19 +659,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "71e9e26e-9ed7-47b0-9b35-3b4fa32d100b" + "dd04d5ef-b5ef-4af5-b987-faee757952ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "40818497-bf82-4659-8f08-636446c94552" + "5b467928-9862-4cd1-8c37-70dbe0189e23" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:19:39 GMT" + "Mon, 21 Dec 2015 19:15:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,8 +680,8 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -398,16 +692,16 @@ "816" ], "client-request-id": [ - "a2ea3e4d-298d-4338-a3a5-e0fc4505a7e0" + "278ba8ed-ce90-489d-9dae-618ba9bcce23" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:19:38 GMT" + "Mon, 21 Dec 2015 19:15:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -417,13 +711,13 @@ "chunked" ], "request-id": [ - "36a4096f-70b3-4274-adfe-5810707f8381" + "e233a746-6566-4cd0-ad0c-5679bfa6d052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a2ea3e4d-298d-4338-a3a5-e0fc4505a7e0" + "278ba8ed-ce90-489d-9dae-618ba9bcce23" ], "DataServiceVersion": [ "3.0" @@ -432,7 +726,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:19:39 GMT" + "Mon, 21 Dec 2015 19:15:36 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -444,26 +738,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b0097efd-fa78-4551-867a-90dfc49c72c5" + "b54f34b1-e8b4-48a4-b161-8aa7da1833c9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:19:41 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:19:38.9131892Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:15:37.4193468Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -472,19 +766,19 @@ "chunked" ], "request-id": [ - "8d5e757c-2817-49c2-98d0-4d56a25faa72" + "47778543-cf9b-4f5a-afd1-7d49f9fc26c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b0097efd-fa78-4551-867a-90dfc49c72c5" + "b54f34b1-e8b4-48a4-b161-8aa7da1833c9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:19:41 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -493,26 +787,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7ccf0eb1-ede5-4b63-8b6b-a62684a3172e" + "2a996a1a-e45e-4df5-8881-e94a0205a1c9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:19:38.9131892Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:15:37.4193468Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -521,19 +815,19 @@ "chunked" ], "request-id": [ - "0bf7ca8e-8c80-4a1f-a7ea-7165d370a1dd" + "838fef59-cbca-4c22-b96c-53a663af1d66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7ccf0eb1-ede5-4b63-8b6b-a62684a3172e" + "2a996a1a-e45e-4df5-8881-e94a0205a1c9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -542,22 +836,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d6b8c30c-cd2b-4bd6-a48b-4c58e0ee1f76" + "826d463b-0c00-4498-ab12-579a6b0df43b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -567,19 +861,19 @@ "chunked" ], "request-id": [ - "df3d7f2e-57d2-459e-9ab9-a4e65ce03c42" + "38cd04fc-f180-458a-950d-c5174f340c93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d6b8c30c-cd2b-4bd6-a48b-4c58e0ee1f76" + "826d463b-0c00-4498-ab12-579a6b0df43b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -588,26 +882,26 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates?$filter=state%20eq%20'deleting'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdkZWxldGluZyUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?$filter=state%20eq%20'deleting'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdkZWxldGluZyUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "980254a6-06e8-4867-8c17-8a0e267c2a83" + "7db0e6cd-e78e-486d-8324-0ab4265db796" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:19:42.8357063Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:19:38.9131892Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:15:40.8277653Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:15:37.4193468Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -616,19 +910,19 @@ "chunked" ], "request-id": [ - "d4b277b0-5dfa-415c-a75a-7ca4e47fac3e" + "9eaae0f2-4931-4b00-ab80-33639ccdfcb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "980254a6-06e8-4867-8c17-8a0e267c2a83" + "7db0e6cd-e78e-486d-8324-0ab4265db796" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:19:42 GMT" + "Mon, 21 Dec 2015 19:15:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetAndListCertificatesWithSelect.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetAndListCertificatesWithSelect.json index 0264f3dde74e..cf0b808c084e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetAndListCertificatesWithSelect.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetAndListCertificatesWithSelect.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-request-id": [ - "68e90110-ad31-421d-9a3a-f41db1c75a6b" + "b25b4bb6-6e64-4ef2-acf7-989970196dc7" ], "x-ms-correlation-request-id": [ - "68e90110-ad31-421d-9a3a-f41db1c75a6b" + "b25b4bb6-6e64-4ef2-acf7-989970196dc7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002350Z:68e90110-ad31-421d-9a3a-f41db1c75a6b" + "CENTRALUS:20151221T190700Z:b25b4bb6-6e64-4ef2-acf7-989970196dc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:23:50 GMT" + "Mon, 21 Dec 2015 19:07:00 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14997" ], "x-ms-request-id": [ - "99b11a81-2c12-48b2-9c7b-b2284e2095dc" + "cb2767e9-e66b-43fc-94d3-b5b03e6b9532" ], "x-ms-correlation-request-id": [ - "99b11a81-2c12-48b2-9c7b-b2284e2095dc" + "cb2767e9-e66b-43fc-94d3-b5b03e6b9532" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002425Z:99b11a81-2c12-48b2-9c7b-b2284e2095dc" + "CENTRALUS:20151221T190705Z:cb2767e9-e66b-43fc-94d3-b5b03e6b9532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:24:25 GMT" + "Mon, 21 Dec 2015 19:07:05 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:23:52 GMT" + "Mon, 21 Dec 2015 19:07:01 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a4679fb3-71dc-47e8-96ba-1e323137f236" + "9177569f-9a8d-41ac-9408-f946e22cf48c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14995" ], "x-ms-request-id": [ - "4bafc34d-9ddb-45f7-9238-ac5bb7176e93" + "02325b6d-4b80-4b8b-a03e-46c7e9ea3197" ], "x-ms-correlation-request-id": [ - "4bafc34d-9ddb-45f7-9238-ac5bb7176e93" + "02325b6d-4b80-4b8b-a03e-46c7e9ea3197" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002351Z:4bafc34d-9ddb-45f7-9238-ac5bb7176e93" + "CENTRALUS:20151221T190702Z:02325b6d-4b80-4b8b-a03e-46c7e9ea3197" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:23:51 GMT" + "Mon, 21 Dec 2015 19:07:01 GMT" ], "ETag": [ - "0x8D2EA2E60A17FDE" + "0x8D30A39E857FC98" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:24:26 GMT" + "Mon, 21 Dec 2015 19:07:05 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "806918cf-da49-4f63-8f27-3fd27e92b0b9" + "65bec9f1-7c3a-4359-b75a-f4455e331596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14994" ], "x-ms-request-id": [ - "d5363e14-e525-4f08-bb05-7a2c7844c551" + "18b8eb8f-fb3c-48fd-b89a-1e1aadb4a7ec" ], "x-ms-correlation-request-id": [ - "d5363e14-e525-4f08-bb05-7a2c7844c551" + "18b8eb8f-fb3c-48fd-b89a-1e1aadb4a7ec" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002426Z:d5363e14-e525-4f08-bb05-7a2c7844c551" + "CENTRALUS:20151221T190705Z:18b8eb8f-fb3c-48fd-b89a-1e1aadb4a7ec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:24:25 GMT" + "Mon, 21 Dec 2015 19:07:04 GMT" ], "ETag": [ - "0x8D2EA2E74F6FDB1" + "0x8D30A39EA967EA0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "8e1d61b5-0dee-4a48-b7a8-9d6638d086bf" + "b126cb54-6449-4604-85a3-4095c931d49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "3f51748b-a05a-430a-9cb0-ab2337038746" + "2d3c4824-680d-47c2-a6c7-e43fb91855f6" ], "x-ms-correlation-request-id": [ - "3f51748b-a05a-430a-9cb0-ab2337038746" + "2d3c4824-680d-47c2-a6c7-e43fb91855f6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002352Z:3f51748b-a05a-430a-9cb0-ab2337038746" + "CENTRALUS:20151221T190702Z:2d3c4824-680d-47c2-a6c7-e43fb91855f6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:23:52 GMT" + "Mon, 21 Dec 2015 19:07:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "cdbce490-f1cc-49bc-ba54-cc1ca889d26e" + "4bba9b9d-f624-4349-b438-bd1af856fd12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "08b2475c-dc33-4ac4-acce-d4454971c0d7" + "6fa38c92-a3bc-4fc1-91e7-aa0856d50232" ], "x-ms-correlation-request-id": [ - "08b2475c-dc33-4ac4-acce-d4454971c0d7" + "6fa38c92-a3bc-4fc1-91e7-aa0856d50232" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002426Z:08b2475c-dc33-4ac4-acce-d4454971c0d7" + "CENTRALUS:20151221T190705Z:6fa38c92-a3bc-4fc1-91e7-aa0856d50232" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:24:25 GMT" + "Mon, 21 Dec 2015 19:07:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,320 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3cfdf046-569c-4fed-84fa-04a09b45b7ae" + "852beae2-2985-469a-939b-d92ded7cdfc8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:23:51 GMT" + "Mon, 21 Dec 2015 19:07:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "219a4a8f-cb6f-4470-8460-8c50d996794f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "3cfdf046-569c-4fed-84fa-04a09b45b7ae" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:23:52 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "160d5ef6-5ce5-4134-a24c-72cbccb4467b" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:23:57 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "e2250333-3511-4150-8bf5-20ed4880e049" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "160d5ef6-5ce5-4134-a24c-72cbccb4467b" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:23:58 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "c028b3cb-3fad-4bd1-b389-bbe3811e485f" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:24:02 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3da92f4e-3a05-4b74-aad2-13291d1c74df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "c028b3cb-3fad-4bd1-b389-bbe3811e485f" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:24:03 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "bd038321-f082-4822-9746-eca73fe20327" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:24:07 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "e1968698-a536-4ef1-8ef4-b279c04e7189" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "bd038321-f082-4822-9746-eca73fe20327" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:24:08 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "885538c3-152a-4d68-b9cc-e5bcad0493ef" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:24:12 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "94edefac-0df6-4526-aabf-2caa15a3ee88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "885538c3-152a-4d68-b9cc-e5bcad0493ef" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:24:12 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "9b7b3284-6d2e-4a8e-b195-7bbac2f2e848" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:24:17 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "12017af6-9c01-4e68-a1ff-cb473f5cb0fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "9b7b3284-6d2e-4a8e-b195-7bbac2f2e848" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:24:18 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "11d5e176-e60e-469c-ad6c-1355a9b1c034" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:24:22 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:b143f32c-2cb5-4204-9b25-09df25820604\\nTime:2015-11-11T00:24:23.5355149Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:3e72fe72-558d-4c1b-8f47-cde870946238\\nTime:2015-12-21T19:07:01.5795040Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -659,19 +365,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "b143f32c-2cb5-4204-9b25-09df25820604" + "3e72fe72-558d-4c1b-8f47-cde870946238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "11d5e176-e60e-469c-ad6c-1355a9b1c034" + "852beae2-2985-469a-939b-d92ded7cdfc8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:24:23 GMT" + "Mon, 21 Dec 2015 19:07:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -680,22 +386,22 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "386c8391-6f8b-4aba-b363-b9887efb33b0" + "e7ed3b1d-04c4-4b26-8476-ca92a94ef259" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:24:26 GMT" + "Mon, 21 Dec 2015 19:07:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -708,19 +414,19 @@ "chunked" ], "request-id": [ - "7b1c9ea7-c59a-4286-8d0f-0904a7d47e93" + "5eda4a3f-db3b-40d7-99d1-bd6ffc73364f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "386c8391-6f8b-4aba-b363-b9887efb33b0" + "e7ed3b1d-04c4-4b26-8476-ca92a94ef259" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:24:27 GMT" + "Mon, 21 Dec 2015 19:07:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -729,8 +435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -741,16 +447,16 @@ "816" ], "client-request-id": [ - "f2d58815-a276-4cf6-9c6d-bf694231221e" + "12c98bc4-8dcb-443c-bb87-1286d78924d8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:24:22 GMT" + "Mon, 21 Dec 2015 19:07:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -760,13 +466,13 @@ "chunked" ], "request-id": [ - "91b73bd2-3053-4d12-bf9f-1921ca736bf2" + "fbdfb9a5-5f1d-494b-b8fd-49bfbee52281" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f2d58815-a276-4cf6-9c6d-bf694231221e" + "12c98bc4-8dcb-443c-bb87-1286d78924d8" ], "DataServiceVersion": [ "3.0" @@ -775,7 +481,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:24:23 GMT" + "Mon, 21 Dec 2015 19:07:01 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -787,26 +493,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5f6f6395-60cd-4241-8e39-a9649ca62094" + "6834a1c6-a45c-48a7-9d46-7d72432b3d55" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:24:25 GMT" + "Mon, 21 Dec 2015 19:07:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:24:23.3306504Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:07:01.9129471Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -815,19 +521,19 @@ "chunked" ], "request-id": [ - "ee55d8ae-854e-4989-89fb-2479dd4805da" + "9aa31bf6-670d-43a4-848c-659e82bcdc73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5f6f6395-60cd-4241-8e39-a9649ca62094" + "6834a1c6-a45c-48a7-9d46-7d72432b3d55" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:24:27 GMT" + "Mon, 21 Dec 2015 19:07:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -836,26 +542,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates?$filter=state%20eq%20'active'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/certificates?$filter=state%20eq%20'active'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fc5a103d-6c23-427e-bf20-373130c54c33" + "693d463f-45ad-46be-a0ab-ac82afdd8ba5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:24:26 GMT" + "Mon, 21 Dec 2015 19:07:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:24:23.3306504Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:07:01.9129471Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -864,19 +570,19 @@ "chunked" ], "request-id": [ - "70d7eca8-e10e-4f9a-a237-6de9adca94c9" + "7906ee26-6e17-4f0c-9c30-70d33e832e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fc5a103d-6c23-427e-bf20-373130c54c33" + "693d463f-45ad-46be-a0ab-ac82afdd8ba5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:24:27 GMT" + "Mon, 21 Dec 2015 19:07:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -885,22 +591,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates?$filter=state%20eq%20'active'&$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/certificates?$filter=state%20eq%20'active'&$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae33f2d8-5cf0-4f8e-b55e-96e635b3d0fd" + "ebffa36e-d1f9-492d-a18c-01fa26a341d1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:24:26 GMT" + "Mon, 21 Dec 2015 19:07:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -913,19 +619,19 @@ "chunked" ], "request-id": [ - "e1f815a0-12e5-4e0f-ac5e-ac09450aaf0d" + "3c3efb36-bba1-4215-b1e6-3a512c4cdefb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae33f2d8-5cf0-4f8e-b55e-96e635b3d0fd" + "ebffa36e-d1f9-492d-a18c-01fa26a341d1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:24:27 GMT" + "Mon, 21 Dec 2015 19:07:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -934,22 +640,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a6a2153e-08e0-41f6-8306-afecd297563a" + "ba7c1cd1-1976-441f-91d4-f522ea6a9e6c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:24:26 GMT" + "Mon, 21 Dec 2015 19:07:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -959,19 +665,19 @@ "chunked" ], "request-id": [ - "55479f81-4780-4afa-b878-020cda2413ff" + "e32aa9b5-31d3-42e9-94a4-ac4626e27eff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a6a2153e-08e0-41f6-8306-afecd297563a" + "ba7c1cd1-1976-441f-91d4-f522ea6a9e6c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:24:27 GMT" + "Mon, 21 Dec 2015 19:07:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetCertificateByThumbprint.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetCertificateByThumbprint.json index 52fd4af34a2e..fd063eab6bb9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetCertificateByThumbprint.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestGetCertificateByThumbprint.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-request-id": [ - "aff49222-7724-466b-b81c-fe7c61ffe6ef" + "5c0b3fd5-0ce6-4120-8fc5-a35829fef97a" ], "x-ms-correlation-request-id": [ - "aff49222-7724-466b-b81c-fe7c61ffe6ef" + "5c0b3fd5-0ce6-4120-8fc5-a35829fef97a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002612Z:aff49222-7724-466b-b81c-fe7c61ffe6ef" + "WESTUS:20151221T191313Z:5c0b3fd5-0ce6-4120-8fc5-a35829fef97a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:26:12 GMT" + "Mon, 21 Dec 2015 19:13:13 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-request-id": [ - "ee4a328e-97bc-42a6-8c02-388ddf0703b4" + "ec892c37-f23b-4f63-bd75-e49a4aa6f54e" ], "x-ms-correlation-request-id": [ - "ee4a328e-97bc-42a6-8c02-388ddf0703b4" + "ec892c37-f23b-4f63-bd75-e49a4aa6f54e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002719Z:ee4a328e-97bc-42a6-8c02-388ddf0703b4" + "WESTUS:20151221T191318Z:ec892c37-f23b-4f63-bd75-e49a4aa6f54e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:27:18 GMT" + "Mon, 21 Dec 2015 19:13:18 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:26:14 GMT" + "Mon, 21 Dec 2015 19:13:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "077b9c78-6cfe-4c63-bcbe-a0e26f82adb9" + "849e8ca5-179d-4214-addc-1c3b249f6005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14985" ], "x-ms-request-id": [ - "67ff248c-61eb-46b7-80a8-3f5bff36694c" + "5bf078c6-857b-4512-b35b-3504f52e576f" ], "x-ms-correlation-request-id": [ - "67ff248c-61eb-46b7-80a8-3f5bff36694c" + "5bf078c6-857b-4512-b35b-3504f52e576f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002614Z:67ff248c-61eb-46b7-80a8-3f5bff36694c" + "WESTUS:20151221T191315Z:5bf078c6-857b-4512-b35b-3504f52e576f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:26:13 GMT" + "Mon, 21 Dec 2015 19:13:14 GMT" ], "ETag": [ - "0x8D2EA2EB54BA964" + "0x8D30A3AC6050858" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:27:19 GMT" + "Mon, 21 Dec 2015 19:13:16 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e23a24f3-95f5-4518-9801-8f7da02015ff" + "17cf9d96-6fb1-4cde-9641-8d80aa10c574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14984" ], "x-ms-request-id": [ - "07901c45-bc1e-49b8-960c-e62ae353cb10" + "872b42ea-1a37-41f8-8d36-61cc00644e7a" ], "x-ms-correlation-request-id": [ - "07901c45-bc1e-49b8-960c-e62ae353cb10" + "872b42ea-1a37-41f8-8d36-61cc00644e7a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002719Z:07901c45-bc1e-49b8-960c-e62ae353cb10" + "WESTUS:20151221T191318Z:872b42ea-1a37-41f8-8d36-61cc00644e7a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:27:18 GMT" + "Mon, 21 Dec 2015 19:13:17 GMT" ], "ETag": [ - "0x8D2EA2EDC25B125" + "0x8D30A3AC8051711" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "3dc4cbc3-b347-44c8-92ae-2d17c8ef57ef" + "564f46e8-d348-4bdf-9c8f-259bbd5827b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1196" ], "x-ms-request-id": [ - "6473555c-0842-4039-80ef-0a80fa7b7632" + "d520008a-f3f3-4249-a4c8-6ebcd363dd88" ], "x-ms-correlation-request-id": [ - "6473555c-0842-4039-80ef-0a80fa7b7632" + "d520008a-f3f3-4249-a4c8-6ebcd363dd88" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002614Z:6473555c-0842-4039-80ef-0a80fa7b7632" + "WESTUS:20151221T191315Z:d520008a-f3f3-4249-a4c8-6ebcd363dd88" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:26:13 GMT" + "Mon, 21 Dec 2015 19:13:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "21faaafc-6488-4ddc-a663-85918a74c11a" + "1136ada1-c328-491e-a536-e18b1cbfc802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1195" ], "x-ms-request-id": [ - "25a03157-5754-4cc0-abe2-266063f1f36b" + "fc0956c8-5409-4bfa-a826-a93191f1a635" ], "x-ms-correlation-request-id": [ - "25a03157-5754-4cc0-abe2-266063f1f36b" + "fc0956c8-5409-4bfa-a826-a93191f1a635" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002719Z:25a03157-5754-4cc0-abe2-266063f1f36b" + "WESTUS:20151221T191318Z:fc0956c8-5409-4bfa-a826-a93191f1a635" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:27:18 GMT" + "Mon, 21 Dec 2015 19:13:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,614 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "03334e3f-6708-4b13-80a8-a015d0e7ffe7" + "f03a5b12-f6a0-4c93-a73a-d263f79797b2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:26:14 GMT" + "Mon, 21 Dec 2015 19:13:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3bf392a5-a06d-45b4-876e-fd82ba4dc0e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "03334e3f-6708-4b13-80a8-a015d0e7ffe7" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:14 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "09754513-148c-4854-9a05-81eca2bd617d" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:19 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "42a30819-eeae-4ecd-b315-f6b6b94e6dec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "09754513-148c-4854-9a05-81eca2bd617d" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:20 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "a9370ca2-e68e-420d-896f-915205e9faa9" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:24 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "64245056-434d-4afb-a46d-473b4bc4ba3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "a9370ca2-e68e-420d-896f-915205e9faa9" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "58e657b5-dd02-42b6-b11a-d54ad8fae042" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:30 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "c31a7c8c-f4fb-41be-b85e-54d004bee797" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "58e657b5-dd02-42b6-b11a-d54ad8fae042" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "140fe695-f707-497a-9148-370ff6ace4c5" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:35 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3f0ad9af-0c28-44bd-936d-a316542c7035" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "140fe695-f707-497a-9148-370ff6ace4c5" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:35 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "ea666cc2-e079-4450-baaa-78a4e4ebd7ca" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:40 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "1bfeb377-023d-4a25-8452-4e13332e9143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "ea666cc2-e079-4450-baaa-78a4e4ebd7ca" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:41 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "0f529b4d-4213-447e-a80f-6debd26827f9" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:45 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "04539d48-fa17-4746-ba11-4e5fcde6177c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "0f529b4d-4213-447e-a80f-6debd26827f9" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:45 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "b49914e2-19db-4226-a485-90ec09ec8d00" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:50 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "463b4511-e1f7-47b9-b8ef-6580772d30cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "b49914e2-19db-4226-a485-90ec09ec8d00" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:51 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "c0fae2a3-c275-4f63-9774-aed0cdaf2bab" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:26:55 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "76658831-3775-4cad-adb4-6f569fc73af1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "c0fae2a3-c275-4f63-9774-aed0cdaf2bab" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:26:55 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "045353b1-1669-486b-b0bb-ec0aaf269161" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:27:00 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "0fcb2e20-b6b3-491b-89a8-2179c899e8c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "045353b1-1669-486b-b0bb-ec0aaf269161" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:27:00 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "4c195912-9424-42cc-947c-31685f671848" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:27:05 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "27eafc9c-cbea-431b-913c-463284d94d83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "4c195912-9424-42cc-947c-31685f671848" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:27:06 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "b19f27e2-4e8a-459a-8e27-8b8f7614db78" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:27:10 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "09c005a7-85bc-4101-a2f1-22eebcfdb5bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "b19f27e2-4e8a-459a-8e27-8b8f7614db78" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:27:11 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "65abbc27-6161-4b53-be26-5369aeb762e7" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:27:15 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:34ff9c9d-23cd-4ce0-be15-cd17af8eb068\\nTime:2015-11-11T00:27:16.7582087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:7ee98b42-a847-4902-9e27-ee5d0f8e52b3\\nTime:2015-12-21T19:13:14.6194350Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -953,19 +365,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "34ff9c9d-23cd-4ce0-be15-cd17af8eb068" + "7ee98b42-a847-4902-9e27-ee5d0f8e52b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "65abbc27-6161-4b53-be26-5369aeb762e7" + "f03a5b12-f6a0-4c93-a73a-d263f79797b2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:27:16 GMT" + "Mon, 21 Dec 2015 19:13:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -974,8 +386,8 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -986,16 +398,16 @@ "816" ], "client-request-id": [ - "e0a33781-c4fe-49b0-984b-daaa9d6c1838" + "c42d2b99-e2ee-4bd5-b10e-aa03fca25573" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:27:15 GMT" + "Mon, 21 Dec 2015 19:13:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1005,13 +417,13 @@ "chunked" ], "request-id": [ - "378327ec-d104-4a05-9205-c42b8a6f2c07" + "6ad97bd7-c12f-49e8-9454-de78cb05989e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e0a33781-c4fe-49b0-984b-daaa9d6c1838" + "c42d2b99-e2ee-4bd5-b10e-aa03fca25573" ], "DataServiceVersion": [ "3.0" @@ -1020,7 +432,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:27:16 GMT" + "Mon, 21 Dec 2015 19:13:13 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -1032,26 +444,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0ec22aca-0039-464c-8d83-aaec9543c460" + "7966e44f-46dc-4068-ad66-23f71e421f05" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:27:19 GMT" + "Mon, 21 Dec 2015 19:13:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:27:16.4743371Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:13:14.5758624Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1060,19 +472,19 @@ "chunked" ], "request-id": [ - "4c115e95-648c-4414-82cb-bff22105a59d" + "8fbd6ee9-6b56-4cf7-ac5b-682b9671eee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0ec22aca-0039-464c-8d83-aaec9543c460" + "7966e44f-46dc-4068-ad66-23f71e421f05" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:27:21 GMT" + "Mon, 21 Dec 2015 19:13:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1081,22 +493,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "86932cf3-c5ce-4282-90cd-a625ce6a9643" + "9ebf2484-d8c5-4042-b21e-fe10bc0b6d32" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:27:20 GMT" + "Mon, 21 Dec 2015 19:13:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1106,19 +518,19 @@ "chunked" ], "request-id": [ - "07a73876-9a1c-4dbd-b032-aa14b45785b6" + "484d62da-3d04-4a5c-91c3-bc629ac78a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "86932cf3-c5ce-4282-90cd-a625ce6a9643" + "9ebf2484-d8c5-4042-b21e-fe10bc0b6d32" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:27:20 GMT" + "Mon, 21 Dec 2015 19:13:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListAllCertificates.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListAllCertificates.json index 4f76e7e0cb14..2bc4b5efa4bb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListAllCertificates.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListAllCertificates.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14999" ], "x-ms-request-id": [ - "a561d979-e62f-47ce-928f-9982f95296c4" + "8a38386f-2c3b-4dea-91d9-ae7ef5727fae" ], "x-ms-correlation-request-id": [ - "a561d979-e62f-47ce-928f-9982f95296c4" + "8a38386f-2c3b-4dea-91d9-ae7ef5727fae" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002756Z:a561d979-e62f-47ce-928f-9982f95296c4" + "CENTRALUS:20151221T190741Z:8a38386f-2c3b-4dea-91d9-ae7ef5727fae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:27:55 GMT" + "Mon, 21 Dec 2015 19:07:40 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-request-id": [ - "0077a028-3368-4234-bc68-9d7b29969f73" + "d4a6ed25-859b-4d65-962e-138c1eaa9a96" ], "x-ms-correlation-request-id": [ - "0077a028-3368-4234-bc68-9d7b29969f73" + "d4a6ed25-859b-4d65-962e-138c1eaa9a96" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002831Z:0077a028-3368-4234-bc68-9d7b29969f73" + "CENTRALUS:20151221T190816Z:d4a6ed25-859b-4d65-962e-138c1eaa9a96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:28:31 GMT" + "Mon, 21 Dec 2015 19:08:15 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:27:57 GMT" + "Mon, 21 Dec 2015 19:07:41 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1f98b6af-75fe-4f29-b4d4-d6c98e214e5b" + "c1309e1a-5b3d-4a04-817c-1fe64d35dfdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14893" ], "x-ms-request-id": [ - "5bb752cc-fe19-4c29-91f8-d72d2d929898" + "f909c14b-18ad-40de-851f-f199df578cc2" ], "x-ms-correlation-request-id": [ - "5bb752cc-fe19-4c29-91f8-d72d2d929898" + "f909c14b-18ad-40de-851f-f199df578cc2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002757Z:5bb752cc-fe19-4c29-91f8-d72d2d929898" + "CENTRALUS:20151221T190742Z:f909c14b-18ad-40de-851f-f199df578cc2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:27:57 GMT" + "Mon, 21 Dec 2015 19:07:42 GMT" ], "ETag": [ - "0x8D2EA2EF301AE05" + "0x8D30A39FFEB1519" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:28:32 GMT" + "Mon, 21 Dec 2015 19:08:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "09e84a5d-7318-4876-85c2-3a07e5e3d1f7" + "59d130a1-0188-44f5-afb6-576d1f1577da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14891" ], "x-ms-request-id": [ - "d163b8a1-73ec-4bca-bdf9-e94f699bdb08" + "898b9316-25bf-413e-b441-f13cb5e3bda7" ], "x-ms-correlation-request-id": [ - "d163b8a1-73ec-4bca-bdf9-e94f699bdb08" + "898b9316-25bf-413e-b441-f13cb5e3bda7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002832Z:d163b8a1-73ec-4bca-bdf9-e94f699bdb08" + "CENTRALUS:20151221T190816Z:898b9316-25bf-413e-b441-f13cb5e3bda7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:28:31 GMT" + "Mon, 21 Dec 2015 19:08:16 GMT" ], "ETag": [ - "0x8D2EA2F07A09581" + "0x8D30A3A144C5074" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "69e4caf2-d31f-4702-b545-f237b71ddf73" + "bc741d04-4f78-4321-a3d9-5b04cd3629a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "34583998-e86e-430c-a8d0-d85d8154cb1c" + "c4840539-ee0a-45b4-891d-55b8610c68dc" ], "x-ms-correlation-request-id": [ - "34583998-e86e-430c-a8d0-d85d8154cb1c" + "c4840539-ee0a-45b4-891d-55b8610c68dc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002757Z:34583998-e86e-430c-a8d0-d85d8154cb1c" + "CENTRALUS:20151221T190742Z:c4840539-ee0a-45b4-891d-55b8610c68dc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:27:57 GMT" + "Mon, 21 Dec 2015 19:07:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "d0314d9d-33f6-4c92-a1d9-bfb7f2aa3a95" + "48b28d83-a707-41c4-9406-41a4552519c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "f2fd3494-165b-4f66-ab9b-4e67bbd87a97" + "e0d8f4d7-6b18-4f4e-be80-136531c8c372" ], "x-ms-correlation-request-id": [ - "f2fd3494-165b-4f66-ab9b-4e67bbd87a97" + "e0d8f4d7-6b18-4f4e-be80-136531c8c372" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002832Z:f2fd3494-165b-4f66-ab9b-4e67bbd87a97" + "CENTRALUS:20151221T190816Z:e0d8f4d7-6b18-4f4e-be80-136531c8c372" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:28:31 GMT" + "Mon, 21 Dec 2015 19:08:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,22 +337,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "21059fbe-5a8c-4c03-9526-711e056cf445" + "f6e65be9-b8ca-4a82-909e-3dfa6b199fef" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:27:57 GMT" + "Mon, 21 Dec 2015 19:07:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "d2279f49-7284-496f-84b4-43808f0457c1" + "76215720-d8e8-4785-8c90-7f8605ff4425" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "21059fbe-5a8c-4c03-9526-711e056cf445" + "f6e65be9-b8ca-4a82-909e-3dfa6b199fef" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:27:58 GMT" + "Mon, 21 Dec 2015 19:07:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e290515a-a124-44f5-85c0-c66065eabb95" + "37f0c956-82f8-46f4-8de3-3cc07546980e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:02 GMT" + "Mon, 21 Dec 2015 19:07:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "cebdd96f-6da4-439c-bdf6-36ab6911bb98" + "38ede098-8066-4bed-805f-10ce2a9ba8a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e290515a-a124-44f5-85c0-c66065eabb95" + "37f0c956-82f8-46f4-8de3-3cc07546980e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:03 GMT" + "Mon, 21 Dec 2015 19:07:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,22 +435,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8c467bc8-6f96-4783-8822-da2dc22b815c" + "25ebf047-baec-4f23-a6b2-2e4b1c32d800" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:07 GMT" + "Mon, 21 Dec 2015 19:07:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "5fbd6790-15c6-47fd-b8c6-051c3eaec4d4" + "895b8037-81bf-4a5b-a6f0-f3bd8d4754ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8c467bc8-6f96-4783-8822-da2dc22b815c" + "25ebf047-baec-4f23-a6b2-2e4b1c32d800" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:08 GMT" + "Mon, 21 Dec 2015 19:07:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,22 +484,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "65f4de19-753f-4006-9f68-503a61a2914e" + "833dd1fc-a32b-4998-a541-e01d4c5935ec" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:13 GMT" + "Mon, 21 Dec 2015 19:07:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "4219b1d9-dad3-4029-bdea-8926eb3f5bd7" + "be903ef2-de30-489e-a22f-099da66e623f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "65f4de19-753f-4006-9f68-503a61a2914e" + "833dd1fc-a32b-4998-a541-e01d4c5935ec" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:14 GMT" + "Mon, 21 Dec 2015 19:07:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -533,22 +533,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b44c1564-5826-4382-8a9a-268ead6c2e88" + "76a407d2-13d1-4ffb-9c66-9ca511f5881f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:18 GMT" + "Mon, 21 Dec 2015 19:08:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -561,19 +561,19 @@ "chunked" ], "request-id": [ - "e428016f-9a05-4ad3-a352-30d9d4f0cea7" + "03a639a2-7187-465e-bd89-c9b41a8c59d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b44c1564-5826-4382-8a9a-268ead6c2e88" + "76a407d2-13d1-4ffb-9c66-9ca511f5881f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:19 GMT" + "Mon, 21 Dec 2015 19:08:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,22 +582,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9b45037d-a806-4415-b839-2c7709c5a181" + "9f4f56f7-5614-45f4-b756-5bb7731d9728" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:23 GMT" + "Mon, 21 Dec 2015 19:08:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -610,19 +610,19 @@ "chunked" ], "request-id": [ - "cbdce339-2c8a-4675-8899-ce1dc403b4a4" + "8a6b5087-5115-44bf-8806-0b0de0f51b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9b45037d-a806-4415-b839-2c7709c5a181" + "9f4f56f7-5614-45f4-b756-5bb7731d9728" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:24 GMT" + "Mon, 21 Dec 2015 19:08:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -631,26 +631,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eb3b7621-7cfd-4ebf-b6d1-69d2dbe21351" + "8dbffb9b-150e-4a95-a015-18696440504d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:28 GMT" + "Mon, 21 Dec 2015 19:08:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:623b3275-4153-422a-8683-3d5eb4827883\\nTime:2015-11-11T00:28:29.5183956Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:c76d929b-aa28-40cb-83f1-614a380d4a45\\nTime:2015-12-21T19:08:15.3455178Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -659,19 +659,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "623b3275-4153-422a-8683-3d5eb4827883" + "c76d929b-aa28-40cb-83f1-614a380d4a45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "eb3b7621-7cfd-4ebf-b6d1-69d2dbe21351" + "8dbffb9b-150e-4a95-a015-18696440504d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:29 GMT" + "Mon, 21 Dec 2015 19:08:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -680,8 +680,8 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -692,16 +692,16 @@ "816" ], "client-request-id": [ - "7ceef0bb-377f-42ed-9c68-44fa574b84d2" + "ae153473-ac71-4a01-a055-c28c77e4f252" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:28 GMT" + "Mon, 21 Dec 2015 19:08:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -711,13 +711,13 @@ "chunked" ], "request-id": [ - "3df62b6b-596a-4f67-94b8-e1fd97f300c5" + "c2be91c9-df46-427e-a889-d97d79c81b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7ceef0bb-377f-42ed-9c68-44fa574b84d2" + "ae153473-ac71-4a01-a055-c28c77e4f252" ], "DataServiceVersion": [ "3.0" @@ -726,7 +726,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:28:29 GMT" + "Mon, 21 Dec 2015 19:08:14 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -738,8 +738,8 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -750,16 +750,16 @@ "816" ], "client-request-id": [ - "292bc662-f101-4e9b-a27e-f12e01349e27" + "0c498cce-4d10-4fb5-b114-e94e19d9a5f7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:28 GMT" + "Mon, 21 Dec 2015 19:08:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -769,13 +769,13 @@ "chunked" ], "request-id": [ - "5714884d-80ae-440f-b3aa-ea50d81424a9" + "cca39e07-ed2a-48b2-81bb-03fe08949716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "292bc662-f101-4e9b-a27e-f12e01349e27" + "0c498cce-4d10-4fb5-b114-e94e19d9a5f7" ], "DataServiceVersion": [ "3.0" @@ -784,7 +784,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" ], "Date": [ - "Wed, 11 Nov 2015 00:28:29 GMT" + "Mon, 21 Dec 2015 19:08:14 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" @@ -796,26 +796,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f2129736-635a-44c9-9787-c8367f834206" + "79f51abf-70b0-4667-8f60-9aa959fc2ed6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:28 GMT" + "Mon, 21 Dec 2015 19:08:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:c8dd8271-60d0-466f-a27a-03c4337c235d\\nTime:2015-11-11T00:28:29.7973507Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:a1909fa1-e0c2-45f3-9fed-4248e7445711\\nTime:2015-12-21T19:08:15.6237119Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -824,19 +824,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "c8dd8271-60d0-466f-a27a-03c4337c235d" + "a1909fa1-e0c2-45f3-9fed-4248e7445711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f2129736-635a-44c9-9787-c8367f834206" + "79f51abf-70b0-4667-8f60-9aa959fc2ed6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:29 GMT" + "Mon, 21 Dec 2015 19:08:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -845,26 +845,26 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bf77c892-4922-4b8f-80cd-18e1b48900f9" + "03b58b2a-0a56-47e2-920e-4e5e4fa1f2b4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:32 GMT" + "Mon, 21 Dec 2015 19:08:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:28:29.2297909Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n },\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:28:28.9484769Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:08:12.6931255Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n },\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:08:12.4153069Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -873,19 +873,19 @@ "chunked" ], "request-id": [ - "6a44a37d-091d-48ca-bcbe-fc32bc0d0786" + "4f1dbaa0-01e9-416f-a1b6-823bf8bcb9c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bf77c892-4922-4b8f-80cd-18e1b48900f9" + "03b58b2a-0a56-47e2-920e-4e5e4fa1f2b4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:33 GMT" + "Mon, 21 Dec 2015 19:08:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -894,22 +894,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "51126a3d-092a-4ab7-ae63-a79a24630373" + "14fd08f0-6d09-41c5-b571-269da4fc2606" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:32 GMT" + "Mon, 21 Dec 2015 19:08:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -919,19 +919,19 @@ "chunked" ], "request-id": [ - "7a123291-90e3-4021-bd97-01a032518d90" + "af6512e6-4d1d-43ba-88d8-dd16c52079bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "51126a3d-092a-4ab7-ae63-a79a24630373" + "14fd08f0-6d09-41c5-b571-269da4fc2606" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:33 GMT" + "Mon, 21 Dec 2015 19:08:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -940,22 +940,22 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b5daa761-62eb-4881-a3b7-0dbdd778f35f" + "87d84635-d18e-48ca-ba71-b184ad993044" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:28:32 GMT" + "Mon, 21 Dec 2015 19:08:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -965,19 +965,19 @@ "chunked" ], "request-id": [ - "c631f818-771b-47d8-848b-be39616eb845" + "1f9940eb-e09b-488b-b30f-76be3fd2c556" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b5daa761-62eb-4881-a3b7-0dbdd778f35f" + "87d84635-d18e-48ca-ba71-b184ad993044" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:28:33 GMT" + "Mon, 21 Dec 2015 19:08:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesByFilter.json index 7c930ef4ecb8..4feb286b24c8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "147c8413-8606-4363-9f3a-382b50aa1314" + "4522ccc0-52d7-4749-9332-43d35eb2106a" ], "x-ms-correlation-request-id": [ - "147c8413-8606-4363-9f3a-382b50aa1314" + "4522ccc0-52d7-4749-9332-43d35eb2106a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002503Z:147c8413-8606-4363-9f3a-382b50aa1314" + "WESTUS:20151221T191120Z:4522ccc0-52d7-4749-9332-43d35eb2106a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:25:03 GMT" + "Mon, 21 Dec 2015 19:11:20 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14996" ], "x-ms-request-id": [ - "d8518cb3-449b-4fdd-8ed2-5eeec0956b0e" + "bd83f240-d502-4ab3-9ec7-f3bb26ad210c" ], "x-ms-correlation-request-id": [ - "d8518cb3-449b-4fdd-8ed2-5eeec0956b0e" + "bd83f240-d502-4ab3-9ec7-f3bb26ad210c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002537Z:d8518cb3-449b-4fdd-8ed2-5eeec0956b0e" + "WESTUS:20151221T191156Z:bd83f240-d502-4ab3-9ec7-f3bb26ad210c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:25:37 GMT" + "Mon, 21 Dec 2015 19:11:55 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:25:08 GMT" + "Mon, 21 Dec 2015 19:11:21 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "fb1e848c-9414-4964-8a45-e31ed2d78dd1" + "710d2856-047f-477b-976f-2453e85eb149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14998" ], "x-ms-request-id": [ - "9c68680f-a7a8-4d4d-b5d2-30c0695c9e09" + "9b2aae13-0aa3-447c-b399-ca928d9281b8" ], "x-ms-correlation-request-id": [ - "9c68680f-a7a8-4d4d-b5d2-30c0695c9e09" + "9b2aae13-0aa3-447c-b399-ca928d9281b8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002507Z:9c68680f-a7a8-4d4d-b5d2-30c0695c9e09" + "WESTUS:20151221T191123Z:9b2aae13-0aa3-447c-b399-ca928d9281b8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:25:07 GMT" + "Mon, 21 Dec 2015 19:11:23 GMT" ], "ETag": [ - "0x8D2EA2E8DED0CC2" + "0x8D30A3A838021BC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:25:37 GMT" + "Mon, 21 Dec 2015 19:11:55 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "63cd6a55-6a01-4fc3-b48a-b16f6887e794" + "869f9409-d8d3-486c-b36c-bd913d334a02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14997" ], "x-ms-request-id": [ - "809041a4-8455-41d9-ab10-82c164dc9165" + "a1db0fcc-f7df-4596-8751-de404476eb3e" ], "x-ms-correlation-request-id": [ - "809041a4-8455-41d9-ab10-82c164dc9165" + "a1db0fcc-f7df-4596-8751-de404476eb3e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002537Z:809041a4-8455-41d9-ab10-82c164dc9165" + "WESTUS:20151221T191156Z:a1db0fcc-f7df-4596-8751-de404476eb3e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:25:37 GMT" + "Mon, 21 Dec 2015 19:11:55 GMT" ], "ETag": [ - "0x8D2EA2E9F84C7C1" + "0x8D30A3A97584772" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "de15d427-ec51-4618-af80-bf12db631b8d" + "5cd088f9-b3e1-49ae-86c0-918fd6263e69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "b4627d92-b7bd-4bec-b1cf-56b5d9ea8388" + "d4f08ad6-5856-4485-96ea-14b18f377186" ], "x-ms-correlation-request-id": [ - "b4627d92-b7bd-4bec-b1cf-56b5d9ea8388" + "d4f08ad6-5856-4485-96ea-14b18f377186" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002508Z:b4627d92-b7bd-4bec-b1cf-56b5d9ea8388" + "WESTUS:20151221T191123Z:d4f08ad6-5856-4485-96ea-14b18f377186" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:25:07 GMT" + "Mon, 21 Dec 2015 19:11:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "3dd2097b-4461-4c4b-9897-3178734cf6cb" + "73d4ccb0-0e92-4b07-a4ae-d5d6d349c42d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "7d9ca795-e3b8-448a-93bb-7ab6c977436b" + "53cafeec-b431-435e-b36c-f09710279120" ], "x-ms-correlation-request-id": [ - "7d9ca795-e3b8-448a-93bb-7ab6c977436b" + "53cafeec-b431-435e-b36c-f09710279120" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002537Z:7d9ca795-e3b8-448a-93bb-7ab6c977436b" + "WESTUS:20151221T191156Z:53cafeec-b431-435e-b36c-f09710279120" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:25:37 GMT" + "Mon, 21 Dec 2015 19:11:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,22 +337,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "190a750c-d34d-4f39-9b52-36a5ad6ab122" + "ab8b25ca-ce54-4d6a-acec-1a599aa049f7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:07 GMT" + "Mon, 21 Dec 2015 19:11:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "71aa218b-f8ea-40f0-8fde-d843642c0c36" + "1d7aa3df-f9d6-40d6-b7c7-3d19d2eb8b19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "190a750c-d34d-4f39-9b52-36a5ad6ab122" + "ab8b25ca-ce54-4d6a-acec-1a599aa049f7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:09 GMT" + "Mon, 21 Dec 2015 19:11:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6c5539db-5a03-442c-89ec-16d19517ea00" + "b6bf57e8-e0a8-45eb-bb38-9d011774e934" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:13 GMT" + "Mon, 21 Dec 2015 19:11:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "ae3197e9-9550-41c8-a2dd-36a36aca4502" + "d2f73929-4119-4958-af1a-4a89f9aad283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6c5539db-5a03-442c-89ec-16d19517ea00" + "b6bf57e8-e0a8-45eb-bb38-9d011774e934" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:14 GMT" + "Mon, 21 Dec 2015 19:11:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,22 +435,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c3173495-eaf6-4ab2-9835-bef0f4b35793" + "70295e45-dafa-4740-bdd0-82d631727fe4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:18 GMT" + "Mon, 21 Dec 2015 19:11:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "31d40094-b7f1-4756-8632-76b4628c16f3" + "381b0c55-ea2d-4f76-95f1-3db896aef105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c3173495-eaf6-4ab2-9835-bef0f4b35793" + "70295e45-dafa-4740-bdd0-82d631727fe4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:19 GMT" + "Mon, 21 Dec 2015 19:11:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,22 +484,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "091c0bd8-61d0-43cd-9554-1eed7aaec3e4" + "9cc40b32-063a-48a2-91ad-16813542247f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:23 GMT" + "Mon, 21 Dec 2015 19:11:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "aa7fc457-5436-45a3-8174-1e07e5f20e2b" + "2c867b9e-6414-49c8-9100-562d33093903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "091c0bd8-61d0-43cd-9554-1eed7aaec3e4" + "9cc40b32-063a-48a2-91ad-16813542247f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:24 GMT" + "Mon, 21 Dec 2015 19:11:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -533,22 +533,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9a3f8fec-1875-480e-9714-f0e85aa7212d" + "dc688a30-9c4c-4c39-9597-b5a4429917ba" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:28 GMT" + "Mon, 21 Dec 2015 19:11:44 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -561,19 +561,19 @@ "chunked" ], "request-id": [ - "49715a78-af37-48fa-91f1-5ee180704ac7" + "155b33f8-fe0c-4e79-add4-bc26e16fb59d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9a3f8fec-1875-480e-9714-f0e85aa7212d" + "dc688a30-9c4c-4c39-9597-b5a4429917ba" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:29 GMT" + "Mon, 21 Dec 2015 19:11:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,26 +582,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fa9bec9e-10d2-4c84-9af9-97ed80eb5f6a" + "68b5e70a-79e6-448b-96b8-acfc7df328db" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:33 GMT" + "Mon, 21 Dec 2015 19:11:49 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:70381b66-fe49-41a4-a584-90da0adb32f0\\nTime:2015-11-11T00:25:35.0385356Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:215c0f11-4c40-4191-b577-ce07531be6ab\\nTime:2015-12-21T19:11:50.5895798Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -610,19 +610,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "70381b66-fe49-41a4-a584-90da0adb32f0" + "215c0f11-4c40-4191-b577-ce07531be6ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fa9bec9e-10d2-4c84-9af9-97ed80eb5f6a" + "68b5e70a-79e6-448b-96b8-acfc7df328db" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:34 GMT" + "Mon, 21 Dec 2015 19:11:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -631,8 +631,8 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -643,16 +643,16 @@ "816" ], "client-request-id": [ - "7102e8b6-83bb-4caa-a557-b2ce49a28b15" + "f4592669-42d7-46be-8873-bc1320d11d92" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:33 GMT" + "Mon, 21 Dec 2015 19:11:49 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -662,13 +662,13 @@ "chunked" ], "request-id": [ - "fc7f15b6-0a82-4138-acec-79579d399dd3" + "6f1e9735-67dc-49f7-8791-2526ebb31bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7102e8b6-83bb-4caa-a557-b2ce49a28b15" + "f4592669-42d7-46be-8873-bc1320d11d92" ], "DataServiceVersion": [ "3.0" @@ -677,7 +677,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:25:34 GMT" + "Mon, 21 Dec 2015 19:11:54 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -689,8 +689,8 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -701,16 +701,16 @@ "816" ], "client-request-id": [ - "9c981bca-cebf-4242-b7f4-ee06de0f3c06" + "dce5f9d8-ab72-4cff-b3c6-7a67a4adbb19" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:34 GMT" + "Mon, 21 Dec 2015 19:11:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -720,13 +720,13 @@ "chunked" ], "request-id": [ - "4dcbeb70-ae85-4935-816a-5be14ab42f96" + "38ecf206-45e9-4dd8-9662-38508000319c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9c981bca-cebf-4242-b7f4-ee06de0f3c06" + "dce5f9d8-ab72-4cff-b3c6-7a67a4adbb19" ], "DataServiceVersion": [ "3.0" @@ -735,7 +735,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" ], "Date": [ - "Wed, 11 Nov 2015 00:25:35 GMT" + "Mon, 21 Dec 2015 19:11:54 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" @@ -747,26 +747,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "79978998-137d-4838-90a4-92225db78ef7" + "7047d1e1-89fa-44ee-857c-8d5083cdf4d6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:33 GMT" + "Mon, 21 Dec 2015 19:11:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:eb8a7509-2a29-4544-a10f-5c8f96039c6d\\nTime:2015-11-11T00:25:35.3178941Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:09602333-9a11-4c80-80a6-cf4737023bae\\nTime:2015-12-21T19:11:54.6841056Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -775,19 +775,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "eb8a7509-2a29-4544-a10f-5c8f96039c6d" + "09602333-9a11-4c80-80a6-cf4737023bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "79978998-137d-4838-90a4-92225db78ef7" + "7047d1e1-89fa-44ee-857c-8d5083cdf4d6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:34 GMT" + "Mon, 21 Dec 2015 19:11:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -796,22 +796,22 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3f698990-4fb9-45e1-a54d-a7f3f6e82046" + "556d097a-3fa7-486f-9729-43d66c3b60a7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:37 GMT" + "Mon, 21 Dec 2015 19:11:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -821,19 +821,19 @@ "chunked" ], "request-id": [ - "7b1c0563-cd8f-42a3-8130-d1d06a22c22d" + "a883cd93-cf9b-4dee-9700-b7ed9ce3b34d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3f698990-4fb9-45e1-a54d-a7f3f6e82046" + "556d097a-3fa7-486f-9729-43d66c3b60a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:39 GMT" + "Mon, 21 Dec 2015 19:11:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -842,26 +842,26 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1fdda443-56a7-4b7a-81a9-c1a0d004d332" + "1c29bfb6-57e8-4dc1-8429-7d8363b4ee05" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:38 GMT" + "Mon, 21 Dec 2015 19:11:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateBeingDeleted\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate has been marked for deletion and is being deleted.\\nRequestId:dedf9f7e-2399-42c7-bef1-032ca2229e78\\nTime:2015-11-11T00:25:39.9495254Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateBeingDeleted\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate has been marked for deletion and is being deleted.\\nRequestId:f9ff1c96-eb5e-402b-a91d-9f11202e778b\\nTime:2015-12-21T19:11:58.9604729Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -870,19 +870,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "dedf9f7e-2399-42c7-bef1-032ca2229e78" + "f9ff1c96-eb5e-402b-a91d-9f11202e778b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1fdda443-56a7-4b7a-81a9-c1a0d004d332" + "1c29bfb6-57e8-4dc1-8429-7d8363b4ee05" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:39 GMT" + "Mon, 21 Dec 2015 19:11:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -891,26 +891,26 @@ "StatusCode": 409 }, { - "RequestUri": "/certificates?$filter=state%20eq%20'active'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/certificates?$filter=state%20eq%20'active'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz8kZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "54145828-c8d4-4fdb-a311-92a225bf8a13" + "8eee140f-62b4-4111-9390-771b0257afc2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:38 GMT" + "Mon, 21 Dec 2015 19:11:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:25:34.321001Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:11:48.1846995Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -919,19 +919,19 @@ "chunked" ], "request-id": [ - "fc72d2b0-9b5e-4f0b-850e-1a2a6d73d0f0" + "0de3fbd1-6c81-479a-9ea4-f7be2e4d4a0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "54145828-c8d4-4fdb-a311-92a225bf8a13" + "8eee140f-62b4-4111-9390-771b0257afc2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:39 GMT" + "Mon, 21 Dec 2015 19:11:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -940,22 +940,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c73782cd-f245-4ae5-99ba-f8b7834bec2b" + "21e7401a-120f-49eb-b62b-837e6ffb952e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:25:38 GMT" + "Mon, 21 Dec 2015 19:11:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -965,19 +965,19 @@ "chunked" ], "request-id": [ - "d8d84c60-482b-47e2-8cd3-208bcb671f5f" + "0ab5bb33-529e-4c5d-a3e6-a222c72d1daf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c73782cd-f245-4ae5-99ba-f8b7834bec2b" + "21e7401a-120f-49eb-b62b-837e6ffb952e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:25:39 GMT" + "Mon, 21 Dec 2015 19:11:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesWithMaxCount.json index ded5de3a4b4c..b43c87d53929 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestListCertificatesWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14995" ], "x-ms-request-id": [ - "8f193906-19ec-4111-8672-d50f19c881f4" + "bc2ba4ed-37f7-4156-b17d-d0174c1dbf7a" ], "x-ms-correlation-request-id": [ - "8f193906-19ec-4111-8672-d50f19c881f4" + "bc2ba4ed-37f7-4156-b17d-d0174c1dbf7a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002017Z:8f193906-19ec-4111-8672-d50f19c881f4" + "WESTUS:20151221T191354Z:bc2ba4ed-37f7-4156-b17d-d0174c1dbf7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:20:16 GMT" + "Mon, 21 Dec 2015 19:13:54 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14994" ], "x-ms-request-id": [ - "e376d4d0-0058-4461-8fde-059da2c9d763" + "32a65c75-a685-417c-bb4d-5a3aca77eea8" ], "x-ms-correlation-request-id": [ - "e376d4d0-0058-4461-8fde-059da2c9d763" + "32a65c75-a685-417c-bb4d-5a3aca77eea8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002052Z:e376d4d0-0058-4461-8fde-059da2c9d763" + "WESTUS:20151221T191429Z:32a65c75-a685-417c-bb4d-5a3aca77eea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:20:52 GMT" + "Mon, 21 Dec 2015 19:14:29 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:20:18 GMT" + "Mon, 21 Dec 2015 19:13:55 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "62442846-8f2e-44bb-bbce-3f505c1810b8" + "0d0ffa80-6a57-4975-b084-25d1b38f585d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-request-id": [ - "9d3f5411-888e-45ba-823c-7daf0616f16d" + "5a48ff40-33af-47db-bd39-e30829ce4cfa" ], "x-ms-correlation-request-id": [ - "9d3f5411-888e-45ba-823c-7daf0616f16d" + "5a48ff40-33af-47db-bd39-e30829ce4cfa" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002018Z:9d3f5411-888e-45ba-823c-7daf0616f16d" + "WESTUS:20151221T191355Z:5a48ff40-33af-47db-bd39-e30829ce4cfa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:20:18 GMT" + "Mon, 21 Dec 2015 19:13:55 GMT" ], "ETag": [ - "0x8D2EA2DE157A173" + "0x8D30A3ADEF70EBF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:20:53 GMT" + "Mon, 21 Dec 2015 19:14:29 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2162e1cc-a791-47cc-9485-9bcd63543a18" + "ee92ce78-80ff-49fc-9e99-a1fbe3cb992c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-request-id": [ - "a69ceec7-9f84-4920-a300-21d4e5be43c8" + "4d2cdd66-c1ce-45b0-8fad-55bfd664b970" ], "x-ms-correlation-request-id": [ - "a69ceec7-9f84-4920-a300-21d4e5be43c8" + "4d2cdd66-c1ce-45b0-8fad-55bfd664b970" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002052Z:a69ceec7-9f84-4920-a300-21d4e5be43c8" + "WESTUS:20151221T191430Z:4d2cdd66-c1ce-45b0-8fad-55bfd664b970" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:20:52 GMT" + "Mon, 21 Dec 2015 19:14:29 GMT" ], "ETag": [ - "0x8D2EA2DF5F2A552" + "0x8D30A3AF3633F16" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "35e7b263-6706-4a14-bbfa-2e3abc6c3093" + "1f60aaf0-bbfb-407e-985e-a36ff68c53fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "ab6bcf2c-c7e1-4b43-b4c5-15c5d34281e9" + "dfe26e2c-3331-48b0-b3aa-99a9b10502c7" ], "x-ms-correlation-request-id": [ - "ab6bcf2c-c7e1-4b43-b4c5-15c5d34281e9" + "dfe26e2c-3331-48b0-b3aa-99a9b10502c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002018Z:ab6bcf2c-c7e1-4b43-b4c5-15c5d34281e9" + "WESTUS:20151221T191355Z:dfe26e2c-3331-48b0-b3aa-99a9b10502c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:20:18 GMT" + "Mon, 21 Dec 2015 19:13:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "39d37ac7-30ae-46e8-ac02-1a27303f4c32" + "c677f044-a80a-484e-b9bb-e5ce919e9607" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "b62cc92f-2aa5-4088-af95-e957f58eef2a" + "84296be9-8958-4a87-a91d-bcef5cf82c65" ], "x-ms-correlation-request-id": [ - "b62cc92f-2aa5-4088-af95-e957f58eef2a" + "84296be9-8958-4a87-a91d-bcef5cf82c65" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002053Z:b62cc92f-2aa5-4088-af95-e957f58eef2a" + "WESTUS:20151221T191430Z:84296be9-8958-4a87-a91d-bcef5cf82c65" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:20:52 GMT" + "Mon, 21 Dec 2015 19:14:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,22 +337,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "17cd20ea-f523-42cd-9376-924bbd2f114b" + "b5e74164-6f99-45b1-a2cb-172626d32d4f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:18 GMT" + "Mon, 21 Dec 2015 19:13:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "8278b9c9-62c3-422c-b471-36841829c7cd" + "cd9ce534-0637-4e28-b494-454ea478979d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "17cd20ea-f523-42cd-9376-924bbd2f114b" + "b5e74164-6f99-45b1-a2cb-172626d32d4f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:19 GMT" + "Mon, 21 Dec 2015 19:13:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d0568c2c-22c8-4050-80f7-45d5f663f85c" + "00d21193-2b1c-4c95-b9d9-60d573dd5179" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:23 GMT" + "Mon, 21 Dec 2015 19:14:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "529c9a3a-790c-4737-8535-587b15ad257f" + "0e6145c4-c361-4563-a5f4-65df0a27efe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d0568c2c-22c8-4050-80f7-45d5f663f85c" + "00d21193-2b1c-4c95-b9d9-60d573dd5179" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:24 GMT" + "Mon, 21 Dec 2015 19:13:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,22 +435,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2d1b35b1-a492-4b50-bc27-6574fe7e1cc0" + "f4f9a885-5160-4c1b-9168-1664dcb4d25f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:28 GMT" + "Mon, 21 Dec 2015 19:14:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "fa9d2707-d0b7-434e-8cdd-41dd27751ddd" + "c7adb868-4ff3-4222-8415-478e29713d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2d1b35b1-a492-4b50-bc27-6574fe7e1cc0" + "f4f9a885-5160-4c1b-9168-1664dcb4d25f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:29 GMT" + "Mon, 21 Dec 2015 19:14:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,22 +484,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d550e92a-443e-4417-8e9c-5acd4dfb1bcb" + "564bbed7-4595-4241-b0f9-5aaa9456203d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:33 GMT" + "Mon, 21 Dec 2015 19:14:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "d4ad3c15-8fd7-4264-8147-4a6132516f05" + "72451dc3-66e6-421c-9509-cb0cac9d10ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d550e92a-443e-4417-8e9c-5acd4dfb1bcb" + "564bbed7-4595-4241-b0f9-5aaa9456203d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:34 GMT" + "Mon, 21 Dec 2015 19:14:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -533,22 +533,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1716b7c-ceca-417b-94e3-b005bb2795d2" + "65aec772-3b2d-4aa9-8218-f22e1f36ea91" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:39 GMT" + "Mon, 21 Dec 2015 19:14:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -561,19 +561,19 @@ "chunked" ], "request-id": [ - "908d9796-15c3-44b7-b0e0-edea6b927c2a" + "3f640ff5-208c-4f8a-b459-df515e7384e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e1716b7c-ceca-417b-94e3-b005bb2795d2" + "65aec772-3b2d-4aa9-8218-f22e1f36ea91" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:39 GMT" + "Mon, 21 Dec 2015 19:14:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,22 +582,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4ec46f04-98e6-4e4b-bb96-ccebb6972cde" + "3e09b7b3-42b6-4066-925c-920f35f890cd" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:44 GMT" + "Mon, 21 Dec 2015 19:14:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -610,19 +610,19 @@ "chunked" ], "request-id": [ - "3715bb29-ba37-48b6-85d8-70de48fd505d" + "8d923d2b-8fb6-46a0-8a57-d83227d23cd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4ec46f04-98e6-4e4b-bb96-ccebb6972cde" + "3e09b7b3-42b6-4066-925c-920f35f890cd" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:44 GMT" + "Mon, 21 Dec 2015 19:14:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -631,26 +631,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d33a09f2-f4b8-4325-8488-464a2aeb572c" + "e2c450b0-215b-4af3-a4ee-ffaa7fdd180c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:18403102-62ca-4ce4-b0a3-7d395a04eb96\\nTime:2015-11-11T00:20:50.1298612Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:43a6d3ef-5cd6-423d-aa89-56b67e3b0e18\\nTime:2015-12-21T19:14:25.8182946Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -659,19 +659,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "18403102-62ca-4ce4-b0a3-7d395a04eb96" + "43a6d3ef-5cd6-423d-aa89-56b67e3b0e18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d33a09f2-f4b8-4325-8488-464a2aeb572c" + "e2c450b0-215b-4af3-a4ee-ffaa7fdd180c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -680,8 +680,8 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -692,16 +692,16 @@ "816" ], "client-request-id": [ - "aa24556e-c5e7-4d2d-be34-9972120316e7" + "35492b62-84d6-47c4-93e4-709a9f302533" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -711,13 +711,13 @@ "chunked" ], "request-id": [ - "0aa60fb2-9ea3-4d56-a12b-5c97238225ae" + "a741e09d-c698-42da-bcd9-e33484995865" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "aa24556e-c5e7-4d2d-be34-9972120316e7" + "35492b62-84d6-47c4-93e4-709a9f302533" ], "DataServiceVersion": [ "3.0" @@ -726,7 +726,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:25 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" @@ -738,8 +738,8 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { @@ -750,16 +750,16 @@ "816" ], "client-request-id": [ - "f2f46ab8-9e75-4884-a82d-b1ba3b74e20b" + "fd6cfedb-aff8-4541-82fa-3f408132ce6a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -769,13 +769,13 @@ "chunked" ], "request-id": [ - "9578c686-85ba-40f8-b455-e1da664c2c10" + "62821637-c15d-400d-a1d7-8dbb473eb7be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f2f46ab8-9e75-4884-a82d-b1ba3b74e20b" + "fd6cfedb-aff8-4541-82fa-3f408132ce6a" ], "DataServiceVersion": [ "3.0" @@ -784,7 +784,7 @@ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" ], "Date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:25 GMT" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=025b351b087a084c5067f5e71eff8591970323f9)" @@ -796,26 +796,26 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?$select=thumbprint%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?$select=thumbprint%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT8kc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "97a6b1c5-981a-4621-b5bc-53861804a357" + "dfaade77-d2d4-45ed-9f5d-73ff90018b8a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:6be4709f-b384-45a9-9f24-3838e43eb75d\\nTime:2015-11-11T00:20:50.4139690Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:60f41db0-b3d4-4d58-8f5f-7af43be0ea07\\nTime:2015-12-21T19:14:26.1105640Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "348" @@ -824,19 +824,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "6be4709f-b384-45a9-9f24-3838e43eb75d" + "60f41db0-b3d4-4d58-8f5f-7af43be0ea07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "97a6b1c5-981a-4621-b5bc-53861804a357" + "dfaade77-d2d4-45ed-9f5d-73ff90018b8a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:49 GMT" + "Mon, 21 Dec 2015 19:14:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -845,26 +845,26 @@ "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "33926ea7-1dcc-400d-b35e-95cbad93bf20" + "b92a5aae-de54-4480-9ca1-fb0eddea2f10" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:52 GMT" + "Mon, 21 Dec 2015 19:14:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:20:50.2154519Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n },\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:20:49.9373607Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"025b351b087a084c5067f5e71eff8591970323f9\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=025b351b087a084c5067f5e71eff8591970323f9)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:14:26.0430535Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAyMB4XDTE1MTAwMjE2MjkxNFoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJxagvVrlnKfv6hfzSiFJUkdGkPjC3tFiKebK6IaeHzesFdFfupXUEwT0xOWh9xwa3OVkPECEc/u1sw3iVX/J4AODiwzmOWutoVRpWjxGFpgw9+dPvXMjs/Ue7JL7ag3siHs5EcarW91qKbgtko6i/r4emaRyk60U93TrbWQAWJ9AgMBAAGjSzBJMEcGA1UdAQRAMD6AEAdqsOpyeXF/uDe7ZGKeez+hGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMoIQy9W5y8iwhppGhtAG06dHKTAJBgUrDgMCHQUAA4GBAC0MaAem6ByyURFvGnFZyjEepjXC5wcaGq+gguDFe8rG88ceig1ZqewdcmC1y4p05uBhbmETbYVWzJarNsHYq2LTihi4t2J4jt2YVYz/IRdUB82iaFFbJRSPrN+6xD3KM2lve5N4OjtlZAdiXiSUYFf3I6ypberUsAdba3QQajCN\"\r\n },\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:14:25.7546668Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -873,19 +873,19 @@ "chunked" ], "request-id": [ - "abf4f687-b8c0-4334-be63-4a510b87dc91" + "5af020e4-0b06-4d24-888c-8fbf497f15cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "33926ea7-1dcc-400d-b35e-95cbad93bf20" + "b92a5aae-de54-4480-9ca1-fb0eddea2f10" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:55 GMT" + "Mon, 21 Dec 2015 19:14:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -894,22 +894,22 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "42b3111b-fc23-4fbe-9cde-42340f3f6bac" + "f3944de5-8c52-40a9-9182-ad9a1a7f4aa4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:53 GMT" + "Mon, 21 Dec 2015 19:14:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -919,19 +919,19 @@ "chunked" ], "request-id": [ - "73d8c9f3-ee43-44e5-8667-80b572639d91" + "0bb477c3-9461-4334-85fc-d6224694e1c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "42b3111b-fc23-4fbe-9cde-42340f3f6bac" + "f3944de5-8c52-40a9-9182-ad9a1a7f4aa4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:53 GMT" + "Mon, 21 Dec 2015 19:14:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -940,22 +940,22 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=025B351B087A084C5067F5E71EFF8591970323F9)?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD0wMjVCMzUxQjA4N0EwODRDNTA2N0Y1RTcxRUZGODU5MTk3MDMyM0Y5KT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "918296fe-b5fd-450d-afaf-e387ea4c5595" + "29104e39-298e-48b5-9ebf-5a3698adcc7b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:20:53 GMT" + "Mon, 21 Dec 2015 19:14:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -965,19 +965,19 @@ "chunked" ], "request-id": [ - "fa9612e7-7acd-4491-b396-e9c8cb8c1c9a" + "66e91eb1-f7f6-4fe0-b2f3-fce7316c39f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "918296fe-b5fd-450d-afaf-e387ea4c5595" + "29104e39-298e-48b5-9ebf-5a3698adcc7b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:20:53 GMT" + "Mon, 21 Dec 2015 19:14:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeSchedulingById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeSchedulingById.json new file mode 100644 index 000000000000..520097aab05c --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeSchedulingById.json @@ -0,0 +1,650 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "9b7dc794-c6e8-44ae-920c-35875533969f" + ], + "x-ms-correlation-request-id": [ + "9b7dc794-c6e8-44ae-920c-35875533969f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211756Z:9b7dc794-c6e8-44ae-920c-35875533969f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "3a85d749-513e-4842-8fb8-74be9f421909" + ], + "x-ms-correlation-request-id": [ + "3a85d749-513e-4842-8fb8-74be9f421909" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211802Z:3a85d749-513e-4842-8fb8-74be9f421909" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:17:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "ea9a01eb-28b4-4e00-87ad-b28fbd5a73bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "a02a8b0b-8987-4f24-8b92-439d6fdf8dd2" + ], + "x-ms-correlation-request-id": [ + "a02a8b0b-8987-4f24-8b92-439d6fdf8dd2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211758Z:a02a8b0b-8987-4f24-8b92-439d6fdf8dd2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:57 GMT" + ], + "ETag": [ + "0x8D30A4C33611CFE" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:18:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "cb761efa-ae0f-4373-86c5-e207e0ee918a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "2e1a2cf4-ba2f-4abb-b697-3d89c9a50487" + ], + "x-ms-correlation-request-id": [ + "2e1a2cf4-ba2f-4abb-b697-3d89c9a50487" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211802Z:2e1a2cf4-ba2f-4abb-b697-3d89c9a50487" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:02 GMT" + ], + "ETag": [ + "0x8D30A4C35CBCE92" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "565d1c38-9d9c-4048-a276-9f45f2d3ccce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7a36690d-75b6-4e97-b6e1-8151f63c93fe" + ], + "x-ms-correlation-request-id": [ + "7a36690d-75b6-4e97-b6e1-8151f63c93fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211758Z:7a36690d-75b6-4e97-b6e1-8151f63c93fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "ddbdd338-19a0-4c24-8d15-1c1f4b63744d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "93e38aac-afe5-4219-9213-195a3065939d" + ], + "x-ms-correlation-request-id": [ + "93e38aac-afe5-4219-9213-195a3065939d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211802Z:93e38aac-afe5-4219-9213-195a3065939d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5bd0bf9b-8528-4225-9064-e56ab510a2e0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:58 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:15:14.0373562Z\",\r\n \"lastBootTime\": \"2015-12-21T21:15:13.9583546Z\",\r\n \"allocationTime\": \"2015-12-21T21:12:08.2149963Z\",\r\n \"ipAddress\": \"100.79.102.74\",\r\n \"affinityId\": \"TVM:tvm-269018873_1-20151221t211208z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c09226e4-a153-4d9e-aca9-4fba51709e22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5bd0bf9b-8528-4225-9064-e56ab510a2e0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6PyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ca9e09d8-2fd6-46d6-8653-df6d020464b5" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:59 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c1e23946-7634-4830-880b-3be5d5a49788" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ca9e09d8-2fd6-46d6-8653-df6d020464b5" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?disablescheduling&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6P2Rpc2FibGVzY2hlZHVsaW5nJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"nodeDisableSchedulingOption\": \"terminate\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "50" + ], + "client-request-id": [ + "7da5648b-11bc-42bc-84bd-c5a66fea9875" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:18:02 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "1c367727-0935-40a9-bacc-1d5d2fac43ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7da5648b-11bc-42bc-84bd-c5a66fea9875" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-269018873_1-20151221t211208z'&$select=id%2CschedulingState&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6JTI3JiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "31c782a9-bb7f-4df9-813f-46eaa3ca575c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"schedulingState\": \"disabled\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8735d8a9-3568-4cbc-8e53-c344b92872e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "31c782a9-bb7f-4df9-813f-46eaa3ca575c" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-269018873_1-20151221t211208z'&$select=id%2CschedulingState&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6JTI3JiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "973edd76-44bb-44ed-99f5-a32fc3803771" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"schedulingState\": \"enabled\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0cc70067-c86f-4792-8b8d-f32d53a5fe7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "973edd76-44bb-44ed-99f5-a32fc3803771" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?enablescheduling&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6P2VuYWJsZXNjaGVkdWxpbmcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "\"Microsoft.Azure.Batch.Protocol.Models.ComputeNodeEnableSchedulingParameters\"", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "77" + ], + "client-request-id": [ + "64d5c9ad-eada-4149-bf7a-606bb433834c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "1486faf5-150a-482a-8bd6-c24fd2f742b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "64d5c9ad-eada-4149-bf7a-606bb433834c" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z" + ], + "Date": [ + "Mon, 21 Dec 2015 21:18:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeSchedulingPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeSchedulingPipeline.json new file mode 100644 index 000000000000..3e5cb26374c5 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeSchedulingPipeline.json @@ -0,0 +1,748 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "de1495de-0d6f-405e-8e58-d18eb77060e1" + ], + "x-ms-correlation-request-id": [ + "de1495de-0d6f-405e-8e58-d18eb77060e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211709Z:de1495de-0d6f-405e-8e58-d18eb77060e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "30fd61e3-ae9c-4565-a65e-60d9cf542658" + ], + "x-ms-correlation-request-id": [ + "30fd61e3-ae9c-4565-a65e-60d9cf542658" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211715Z:30fd61e3-ae9c-4565-a65e-60d9cf542658" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:17:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "a5f1ae55-49e7-4252-8cd4-1731dd4e0bbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "55e718e9-1fe1-48d7-b663-2a6f3d13212d" + ], + "x-ms-correlation-request-id": [ + "55e718e9-1fe1-48d7-b663-2a6f3d13212d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211711Z:55e718e9-1fe1-48d7-b663-2a6f3d13212d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:10 GMT" + ], + "ETag": [ + "0x8D30A4C16DC8261" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:17:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "b60aa66e-b0f1-43aa-b6ff-9fcf12775117" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "95a10959-cdc3-4c7b-a83c-6b4d2c0fb89c" + ], + "x-ms-correlation-request-id": [ + "95a10959-cdc3-4c7b-a83c-6b4d2c0fb89c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211716Z:95a10959-cdc3-4c7b-a83c-6b4d2c0fb89c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:16 GMT" + ], + "ETag": [ + "0x8D30A4C199DB997" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "64207bcc-3257-4108-8ee1-6e8fc01b75d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "c5ebe9ba-e7f2-4b15-8806-e179b1501ae3" + ], + "x-ms-correlation-request-id": [ + "c5ebe9ba-e7f2-4b15-8806-e179b1501ae3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211711Z:c5ebe9ba-e7f2-4b15-8806-e179b1501ae3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "d750b5bf-9fa1-47c9-8d50-095330a64a68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "882aaf52-5564-4455-955d-93212a8391c9" + ], + "x-ms-correlation-request-id": [ + "882aaf52-5564-4455-955d-93212a8391c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151221T211716Z:882aaf52-5564-4455-955d-93212a8391c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "930f446f-0cdf-460f-a5be-10e1738d1b55" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:11 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:15:14.0373562Z\",\r\n \"lastBootTime\": \"2015-12-21T21:15:13.9583546Z\",\r\n \"allocationTime\": \"2015-12-21T21:12:08.2149963Z\",\r\n \"ipAddress\": \"100.79.102.74\",\r\n \"affinityId\": \"TVM:tvm-269018873_1-20151221t211208z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b2614a61-8925-4a20-bea6-f3c0c63eb6f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "930f446f-0cdf-460f-a5be-10e1738d1b55" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6PyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "96f3ac93-97d5-4a70-9342-60fb6a066d69" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:12 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "25b6c735-e124-4d70-b88c-0d8292306e63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "96f3ac93-97d5-4a70-9342-60fb6a066d69" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "39bd54b2-a4e1-4ce2-8c03-820e2058bb65" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:16 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:15:14.0373562Z\",\r\n \"lastBootTime\": \"2015-12-21T21:15:13.9583546Z\",\r\n \"allocationTime\": \"2015-12-21T21:12:08.2149963Z\",\r\n \"ipAddress\": \"100.79.102.74\",\r\n \"affinityId\": \"TVM:tvm-269018873_1-20151221t211208z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "23af06cb-8602-4508-8cae-2f84c917f50e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "39bd54b2-a4e1-4ce2-8c03-820e2058bb65" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4f7e8b7c-83e0-4645-a75d-184e5d02106b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z\",\r\n \"state\": \"offline\",\r\n \"schedulingState\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:17:20.309252Z\",\r\n \"lastBootTime\": \"2015-12-21T21:15:13.9583546Z\",\r\n \"allocationTime\": \"2015-12-21T21:12:08.2149963Z\",\r\n \"ipAddress\": \"100.79.102.74\",\r\n \"affinityId\": \"TVM:tvm-269018873_1-20151221t211208z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b5a72fb1-7c28-4bf0-8f66-912ebaf517d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4f7e8b7c-83e0-4645-a75d-184e5d02106b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?disablescheduling&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6P2Rpc2FibGVzY2hlZHVsaW5nJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"nodeDisableSchedulingOption\": \"terminate\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "50" + ], + "client-request-id": [ + "fb1cabed-c6ea-4c85-8eaa-3cf8dd8f322d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:17 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3bcd1ac4-b6b9-4d36-b85a-9788a14024c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "fb1cabed-c6ea-4c85-8eaa-3cf8dd8f322d" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-269018873_1-20151221t211208z'&$select=id%2CschedulingState&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6JTI3JiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8f9203dd-4c45-4ffd-8a51-ff9b843a033b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"schedulingState\": \"disabled\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f9524828-6adc-412c-bf47-1e43a1cf9c4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8f9203dd-4c45-4ffd-8a51-ff9b843a033b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-269018873_1-20151221t211208z'&$select=id%2CschedulingState&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6JTI3JiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "abfc4e57-44e8-40b8-9945-c81727552739" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:21 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-269018873_1-20151221t211208z\",\r\n \"schedulingState\": \"enabled\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b54b27d2-51ec-4646-991a-68858c9933dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "abfc4e57-44e8-40b8-9945-c81727552739" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-269018873_1-20151221t211208z?enablescheduling&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0yNjkwMTg4NzNfMS0yMDE1MTIyMXQyMTEyMDh6P2VuYWJsZXNjaGVkdWxpbmcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "\"Microsoft.Azure.Batch.Protocol.Models.ComputeNodeEnableSchedulingParameters\"", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "77" + ], + "client-request-id": [ + "df946637-29dc-4765-a0eb-5b75565fa321" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:17:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3a49a0f0-64da-4c98-aeb0-95062f3fdafc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "df946637-29dc-4765-a0eb-5b75565fa321" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/pools/testPool/nodes/tvm-269018873_1-20151221t211208z" + ], + "Date": [ + "Mon, 21 Dec 2015 21:17:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetAndListComputeNodesWithSelect.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetAndListComputeNodesWithSelect.json index a04f10b0ea85..72513ab6006c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetAndListComputeNodesWithSelect.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetAndListComputeNodesWithSelect.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-request-id": [ - "c5c50ba8-2299-4217-b360-8d3da6644fbc" + "4c2be128-db71-48fd-b811-9ef9b8f0352f" ], "x-ms-correlation-request-id": [ - "c5c50ba8-2299-4217-b360-8d3da6644fbc" + "4c2be128-db71-48fd-b811-9ef9b8f0352f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011813Z:c5c50ba8-2299-4217-b360-8d3da6644fbc" + "WESTUS:20151221T200204Z:4c2be128-db71-48fd-b811-9ef9b8f0352f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:13 GMT" + "Mon, 21 Dec 2015 20:02:04 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-request-id": [ - "ecc64a05-e42e-431d-8201-14009cbced52" + "37110dd4-b9e7-4076-b2cc-45f377756f79" ], "x-ms-correlation-request-id": [ - "ecc64a05-e42e-431d-8201-14009cbced52" + "37110dd4-b9e7-4076-b2cc-45f377756f79" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011817Z:ecc64a05-e42e-431d-8201-14009cbced52" + "WESTUS:20151221T200208Z:37110dd4-b9e7-4076-b2cc-45f377756f79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:17 GMT" + "Mon, 21 Dec 2015 20:02:08 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:18:14 GMT" + "Mon, 21 Dec 2015 20:02:03 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c23e82a1-b64c-418d-bb79-b22486944555" + "d48f6070-7919-4aa8-9430-717e5731e6ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14998" ], "x-ms-request-id": [ - "55f2469e-2d70-4430-978b-79a390cebf39" + "70832f2f-40a6-4817-8ef8-b39bb3808c33" ], "x-ms-correlation-request-id": [ - "55f2469e-2d70-4430-978b-79a390cebf39" + "70832f2f-40a6-4817-8ef8-b39bb3808c33" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011814Z:55f2469e-2d70-4430-978b-79a390cebf39" + "WESTUS:20151221T200205Z:70832f2f-40a6-4817-8ef8-b39bb3808c33" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:14 GMT" + "Mon, 21 Dec 2015 20:02:05 GMT" ], "ETag": [ - "0x8D2EA35F90E483E" + "0x8D30A41985B0881" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:18:17 GMT" + "Mon, 21 Dec 2015 20:02:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "5b7f6b26-2eb4-4215-a853-eb040aaed7fd" + "7042ba88-3ccc-4cd7-9db9-1ff3fcba392e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14997" ], "x-ms-request-id": [ - "e6d9512f-6656-4bf6-ad7e-627faed3089f" + "ad6b3b55-1889-41d7-8eec-3aa83a6d5644" ], "x-ms-correlation-request-id": [ - "e6d9512f-6656-4bf6-ad7e-627faed3089f" + "ad6b3b55-1889-41d7-8eec-3aa83a6d5644" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011818Z:e6d9512f-6656-4bf6-ad7e-627faed3089f" + "WESTUS:20151221T200208Z:ad6b3b55-1889-41d7-8eec-3aa83a6d5644" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:17 GMT" + "Mon, 21 Dec 2015 20:02:08 GMT" ], "ETag": [ - "0x8D2EA35FB176186" + "0x8D30A419A396967" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d857bcdd-3287-4957-b1b7-bef500f9b215" + "9b2039b1-2d4d-4691-8dba-2cdb962da0bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-request-id": [ - "571e806d-37be-44db-ae3c-7b1509e7ad1e" + "262239c5-e8cd-41e1-a0fb-461ac2e331d9" ], "x-ms-correlation-request-id": [ - "571e806d-37be-44db-ae3c-7b1509e7ad1e" + "262239c5-e8cd-41e1-a0fb-461ac2e331d9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011814Z:571e806d-37be-44db-ae3c-7b1509e7ad1e" + "WESTUS:20151221T200205Z:262239c5-e8cd-41e1-a0fb-461ac2e331d9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:14 GMT" + "Mon, 21 Dec 2015 20:02:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "b89beed6-3cc3-4721-8f7e-74031bac9943" + "bd764119-edee-44c3-8c81-777885e77c4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-request-id": [ - "36806183-b76b-42f0-adea-17ffdfef2708" + "ab2af783-a78a-419c-951c-5f3157e3b306" ], "x-ms-correlation-request-id": [ - "36806183-b76b-42f0-adea-17ffdfef2708" + "ab2af783-a78a-419c-951c-5f3157e3b306" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011818Z:36806183-b76b-42f0-adea-17ffdfef2708" + "WESTUS:20151221T200208Z:ab2af783-a78a-419c-951c-5f3157e3b306" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:17 GMT" + "Mon, 21 Dec 2015 20:02:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cf91857e-9eed-424b-88c6-b2086963a2e1" + "c746a377-7579-49f1-a20b-18a8d2678174" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:14 GMT" + "Mon, 21 Dec 2015 20:02:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "22074a34-8a82-4ab9-9fa3-ab066d249dcf" + "3bf3289d-7e15-4ef2-a50e-d6eb46eb54b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cf91857e-9eed-424b-88c6-b2086963a2e1" + "c746a377-7579-49f1-a20b-18a8d2678174" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:15 GMT" + "Mon, 21 Dec 2015 20:02:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c5a9e79b-c002-45a3-9887-9da99e10fce5" + "465b912f-5e42-42f0-8204-8486fbae2060" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:18 GMT" + "Mon, 21 Dec 2015 20:02:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "5cf299a7-2054-4191-8abc-7ec132224480" + "31c1d73d-fee3-437a-bf4f-796aa4575b1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c5a9e79b-c002-45a3-9887-9da99e10fce5" + "465b912f-5e42-42f0-8204-8486fbae2060" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:19 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej8kc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7e78f8d8-53dc-42e2-b9f0-84f3379730af" + "97398792-5594-4576-a031-e992b3fdbf95" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:18 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "d614d267-abb5-4f99-a7d8-ce537e93cec0" + "294f035c-0807-4f9a-a6aa-859f927a0047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7e78f8d8-53dc-42e2-b9f0-84f3379730af" + "97398792-5594-4576-a031-e992b3fdbf95" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:19 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,53 +484,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c7982304-52fd-4ed6-83ed-c2497578bf1a" + "f9374184-2525-4db8-be87-d827d58a55a0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:18 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A373076BF82\",\r\n \"lastModified\": \"2015-12-21T18:47:34.1939586Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:48:13.7562352Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 18:47:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e2719566-8d23-4ca4-89fc-b19e6cc43ad4" + "77bc1efc-384c-4885-88d6-02d3448dd150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c7982304-52fd-4ed6-83ed-c2497578bf1a" + "f9374184-2525-4db8-be87-d827d58a55a0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:19 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A373076BF82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -539,26 +539,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_2-20151110t233600z'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAweiUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_34-20151117t222514z'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHolMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "22be0a14-b5c4-4e98-8295-1f2e1bcfaf62" + "017f4166-26dc-4fc5-8760-3b6929337210" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:18 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -567,19 +567,19 @@ "chunked" ], "request-id": [ - "19316856-a810-4e9b-ad2e-73b1bcb08011" + "3609af02-419a-4480-a34d-7f401cdd96ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "22be0a14-b5c4-4e98-8295-1f2e1bcfaf62" + "017f4166-26dc-4fc5-8760-3b6929337210" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:19 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -588,26 +588,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_2-20151110t233600z'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAweiUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_34-20151117t222514z'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e3c0f28b-58b3-4f61-970d-9a4e0f42143a" + "0f1704a0-85eb-4bf8-8259-bf6aebee5523" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:18 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"reimaging\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -616,19 +616,19 @@ "chunked" ], "request-id": [ - "e69db9f5-ec55-4757-8c6f-672e5a1a11e0" + "fb30fe6b-218b-4d4b-8757-9cbb7a0b1f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e3c0f28b-58b3-4f61-970d-9a4e0f42143a" + "0f1704a0-85eb-4bf8-8259-bf6aebee5523" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:19 GMT" + "Mon, 21 Dec 2015 20:02:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeById.json index a1c3832139a5..e90c115afa64 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14979" ], "x-ms-request-id": [ - "343d51aa-3fb1-40b5-a8b9-9fe2a7ef574c" + "b39fbe4d-322e-497d-bd93-e2f0305069e0" ], "x-ms-correlation-request-id": [ - "343d51aa-3fb1-40b5-a8b9-9fe2a7ef574c" + "b39fbe4d-322e-497d-bd93-e2f0305069e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011400Z:343d51aa-3fb1-40b5-a8b9-9fe2a7ef574c" + "CENTRALUS:20151221T200642Z:b39fbe4d-322e-497d-bd93-e2f0305069e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:59 GMT" + "Mon, 21 Dec 2015 20:06:41 GMT" ] }, "StatusCode": 200 @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:14:01 GMT" + "Mon, 21 Dec 2015 20:06:42 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "5fa26802-0b6b-49d9-be58-fbefd55e1801" + "d16a2fd8-1cff-446d-8b3a-53c7c69ba676" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14978" ], "x-ms-request-id": [ - "dabd51db-fd8b-4316-86a2-e4983128ce3e" + "8a458b89-aea9-4b4b-b932-bc7b6d8eb555" ], "x-ms-correlation-request-id": [ - "dabd51db-fd8b-4316-86a2-e4983128ce3e" + "8a458b89-aea9-4b4b-b932-bc7b6d8eb555" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011401Z:dabd51db-fd8b-4316-86a2-e4983128ce3e" + "CENTRALUS:20151221T200643Z:8a458b89-aea9-4b4b-b932-bc7b6d8eb555" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:00 GMT" + "Mon, 21 Dec 2015 20:06:42 GMT" ], "ETag": [ - "0x8D2EA3562176334" + "0x8D30A423EE73093" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "309c9b07-0ba2-41d2-ab49-23c5ecb08a8d" + "f92131ce-ec14-46a9-9b13-7ae181467dd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-request-id": [ - "2aaa502b-951c-435c-ab54-6b233bf97080" + "a5523b33-a927-4905-bc7b-7eb66d5a64bc" ], "x-ms-correlation-request-id": [ - "2aaa502b-951c-435c-ab54-6b233bf97080" + "a5523b33-a927-4905-bc7b-7eb66d5a64bc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011401Z:2aaa502b-951c-435c-ab54-6b233bf97080" + "CENTRALUS:20151221T200643Z:a5523b33-a927-4905-bc7b-7eb66d5a64bc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:00 GMT" + "Mon, 21 Dec 2015 20:06:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,26 +169,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4e258d79-e2e9-4db2-8e94-fe58674a3134" + "d53181b5-b4a6-4dd0-9380-a63bee232bc3" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:01 GMT" + "Mon, 21 Dec 2015 20:06:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:13:21.9442146Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_37-20151221t200412z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_37-20151221t200412z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"allocationTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"ipAddress\": \"100.116.174.147\",\r\n \"affinityId\": \"TVM:tvm-1783593343_37-20151221t200412z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_38-20151221t200412z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_38-20151221t200412z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"allocationTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"ipAddress\": \"100.116.188.73\",\r\n \"affinityId\": \"TVM:tvm-1783593343_38-20151221t200412z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -197,19 +197,19 @@ "chunked" ], "request-id": [ - "f43cdad6-3341-4272-ac77-eb25454f66f1" + "f7943433-e9e6-4835-8cf5-67642733ca23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4e258d79-e2e9-4db2-8e94-fe58674a3134" + "d53181b5-b4a6-4dd0-9380-a63bee232bc3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:02 GMT" + "Mon, 21 Dec 2015 20:06:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -218,26 +218,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "56c93628-da4f-4b37-a73e-1d5f6ba9ae8e" + "a04250a1-3005-4b4b-aea2-9952c82b4e8d" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:01 GMT" + "Mon, 21 Dec 2015 20:06:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:13:21.9442146Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -246,19 +246,19 @@ "chunked" ], "request-id": [ - "dcc7a8d0-6382-49e7-9610-aaebc64d725f" + "0472df6f-3aac-4011-b427-0c4a5e9c909d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "56c93628-da4f-4b37-a73e-1d5f6ba9ae8e" + "a04250a1-3005-4b4b-aea2-9952c82b4e8d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:02 GMT" + "Mon, 21 Dec 2015 20:06:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -267,26 +267,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9ffce7fe-819b-4a50-85a2-3931b9b8c9e9" + "2f669671-2c36-46c0-81ed-803722061e36" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:01 GMT" + "Mon, 21 Dec 2015 20:06:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:13:21.9442146Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -295,19 +295,19 @@ "chunked" ], "request-id": [ - "cb265cc4-56f9-4640-b1ef-2d32c6735cc2" + "1031507c-7e9b-4a84-8be4-8e6843475516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9ffce7fe-819b-4a50-85a2-3931b9b8c9e9" + "2f669671-2c36-46c0-81ed-803722061e36" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:02 GMT" + "Mon, 21 Dec 2015 20:06:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListAllComputeNodes.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListAllComputeNodes.json index f91bc595bd0e..8be3f626bd91 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListAllComputeNodes.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListAllComputeNodes.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "8ff7b8c7-2c51-4d54-9a9c-48fcd0602693" + "eb4148f3-6e59-4320-820c-4e9dd71ba2d4" ], "x-ms-correlation-request-id": [ - "8ff7b8c7-2c51-4d54-9a9c-48fcd0602693" + "eb4148f3-6e59-4320-820c-4e9dd71ba2d4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011437Z:8ff7b8c7-2c51-4d54-9a9c-48fcd0602693" + "WESTUS:20151221T201802Z:eb4148f3-6e59-4320-820c-4e9dd71ba2d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:36 GMT" + "Mon, 21 Dec 2015 20:18:02 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "63a34d90-7bc0-4ae0-971a-9a60a35fd5a2" + "c7da8848-fee3-43c4-99ff-80c87ee859d0" ], "x-ms-correlation-request-id": [ - "63a34d90-7bc0-4ae0-971a-9a60a35fd5a2" + "c7da8848-fee3-43c4-99ff-80c87ee859d0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011442Z:63a34d90-7bc0-4ae0-971a-9a60a35fd5a2" + "WESTUS:20151221T201807Z:c7da8848-fee3-43c4-99ff-80c87ee859d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:41 GMT" + "Mon, 21 Dec 2015 20:18:06 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:14:38 GMT" + "Mon, 21 Dec 2015 20:18:03 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2084452c-e952-4766-98d6-3438e81ed815" + "7c9a49cb-a0fe-4496-82c3-390d12dec8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14997" ], "x-ms-request-id": [ - "6f69e6ca-0ada-4952-9654-13dd529db716" + "9f29352f-ee9b-4c64-96e5-fd1e1b97de3b" ], "x-ms-correlation-request-id": [ - "6f69e6ca-0ada-4952-9654-13dd529db716" + "9f29352f-ee9b-4c64-96e5-fd1e1b97de3b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011438Z:6f69e6ca-0ada-4952-9654-13dd529db716" + "WESTUS:20151221T201804Z:9f29352f-ee9b-4c64-96e5-fd1e1b97de3b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:37 GMT" + "Mon, 21 Dec 2015 20:18:03 GMT" ], "ETag": [ - "0x8D2EA35788D24BA" + "0x8D30A43D4B127F7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:14:42 GMT" + "Mon, 21 Dec 2015 20:18:07 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1dbfa44d-64d6-4616-9d3c-f8e8d5a9e46c" + "07933d10-67f8-4fdc-8633-da974e0d337c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14996" ], "x-ms-request-id": [ - "1aa6ad96-a515-42df-b5e0-0d40b43b1362" + "e164c98e-1334-4f4c-9d8b-82ecd8b075af" ], "x-ms-correlation-request-id": [ - "1aa6ad96-a515-42df-b5e0-0d40b43b1362" + "e164c98e-1334-4f4c-9d8b-82ecd8b075af" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011442Z:1aa6ad96-a515-42df-b5e0-0d40b43b1362" + "WESTUS:20151221T201807Z:e164c98e-1334-4f4c-9d8b-82ecd8b075af" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:41 GMT" + "Mon, 21 Dec 2015 20:18:07 GMT" ], "ETag": [ - "0x8D2EA357ABF8CA9" + "0x8D30A43D6BF95F9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "fe87fdec-bec4-47bf-bcd4-4d1729a3cc51" + "a543b75c-f473-4b2d-9f7b-12fc4552eb16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "6c6e4292-f57d-45c6-85b3-a59e2c981b40" + "6905afff-6bc7-4f6c-ad5d-9216b7443ebd" ], "x-ms-correlation-request-id": [ - "6c6e4292-f57d-45c6-85b3-a59e2c981b40" + "6905afff-6bc7-4f6c-ad5d-9216b7443ebd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011438Z:6c6e4292-f57d-45c6-85b3-a59e2c981b40" + "WESTUS:20151221T201804Z:6905afff-6bc7-4f6c-ad5d-9216b7443ebd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:37 GMT" + "Mon, 21 Dec 2015 20:18:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "0a3a2c89-a3c9-4852-929c-1b39f3ffa7fd" + "10f59ce6-82ad-4ecd-bae9-82c84a975b4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1198" ], "x-ms-request-id": [ - "1473db5c-ba84-4556-bc2a-b0cb94fae88a" + "067043b7-227a-4ffe-95cb-6fcbce90efc9" ], "x-ms-correlation-request-id": [ - "1473db5c-ba84-4556-bc2a-b0cb94fae88a" + "067043b7-227a-4ffe-95cb-6fcbce90efc9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011442Z:1473db5c-ba84-4556-bc2a-b0cb94fae88a" + "WESTUS:20151221T201807Z:067043b7-227a-4ffe-95cb-6fcbce90efc9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:14:41 GMT" + "Mon, 21 Dec 2015 20:18:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9caf8017-5d7c-44b2-95c7-debbd13c8e95" + "5d6e3697-6c1f-4578-afb0-377c58c46612" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:38 GMT" + "Mon, 21 Dec 2015 20:18:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A430ACBBB0C\",\r\n \"lastModified\": \"2015-12-21T20:12:24.9582348Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 20:12:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5d007bc4-f4d1-436b-b1cf-65cdfd453f8e" + "8830e9a5-1260-4ee8-8b20-e30089f331e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9caf8017-5d7c-44b2-95c7-debbd13c8e95" + "5d6e3697-6c1f-4578-afb0-377c58c46612" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:39 GMT" + "Mon, 21 Dec 2015 20:18:03 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A430ACBBB0C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f15f5044-3595-4ec7-b770-e07e9eb102f1" + "0412d41c-cecf-498c-9f22-f405e3a21b85" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:42 GMT" + "Mon, 21 Dec 2015 20:18:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A430ACBBB0C\",\r\n \"lastModified\": \"2015-12-21T20:12:24.9582348Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 20:12:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d4465b3f-fd4d-4de7-9e62-245a1e168ca4" + "58d31714-bf0c-4892-afe3-fbd5e4d6bc95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f15f5044-3595-4ec7-b770-e07e9eb102f1" + "0412d41c-cecf-498c-9f22-f405e3a21b85" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:43 GMT" + "Mon, 21 Dec 2015 20:18:06 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A430ACBBB0C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,26 +447,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9df90e2d-4158-47a2-9501-9f53335d60f1" + "334c9dea-03e5-422b-ac5f-2b937bb8ebf9" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:42 GMT" + "Mon, 21 Dec 2015 20:18:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:13:21.9442146Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_39-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_39-20151221t201203z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.146.182\",\r\n \"affinityId\": \"TVM:tvm-1783593343_39-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -475,19 +475,19 @@ "chunked" ], "request-id": [ - "f2501a4c-16e1-404f-be7b-929badafc4ff" + "94969789-3341-4cf4-ba24-836754986fd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9df90e2d-4158-47a2-9501-9f53335d60f1" + "334c9dea-03e5-422b-ac5f-2b937bb8ebf9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:43 GMT" + "Mon, 21 Dec 2015 20:18:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -496,26 +496,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2484a520-84cd-4e00-a3d1-6699e69f4e04" + "16dc9144-e29d-49c2-a9fa-131a7b6ea18f" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:14:42 GMT" + "Mon, 21 Dec 2015 20:18:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:13:21.9442146Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_39-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_39-20151221t201203z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.146.182\",\r\n \"affinityId\": \"TVM:tvm-1783593343_39-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -524,19 +524,19 @@ "chunked" ], "request-id": [ - "c500f49a-3172-47b1-b44b-9c31346c4848" + "528abf84-c499-4c11-8851-1d9593991a99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2484a520-84cd-4e00-a3d1-6699e69f4e04" + "16dc9144-e29d-49c2-a9fa-131a7b6ea18f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:14:43 GMT" + "Mon, 21 Dec 2015 20:18:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodePipeline.json index 58bf408e62d5..a379d69ff211 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14978" ], "x-ms-request-id": [ - "495a94a1-abef-40c8-a53c-f921e005c334" + "e5acca82-3c30-4784-a17d-37d03276143a" ], "x-ms-correlation-request-id": [ - "495a94a1-abef-40c8-a53c-f921e005c334" + "e5acca82-3c30-4784-a17d-37d03276143a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011645Z:495a94a1-abef-40c8-a53c-f921e005c334" + "CENTRALUS:20151221T200558Z:e5acca82-3c30-4784-a17d-37d03276143a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:16:44 GMT" + "Mon, 21 Dec 2015 20:05:58 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14977" ], "x-ms-request-id": [ - "287dc63f-b29c-4547-8ba2-be6c803caa32" + "56d05364-d8cf-4671-9c34-f3ba436c8a12" ], "x-ms-correlation-request-id": [ - "287dc63f-b29c-4547-8ba2-be6c803caa32" + "56d05364-d8cf-4671-9c34-f3ba436c8a12" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011650Z:287dc63f-b29c-4547-8ba2-be6c803caa32" + "CENTRALUS:20151221T200603Z:56d05364-d8cf-4671-9c34-f3ba436c8a12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:16:50 GMT" + "Mon, 21 Dec 2015 20:06:02 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:16:47 GMT" + "Mon, 21 Dec 2015 20:05:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "dd1e66f8-69ff-4059-9be2-d0a65011587a" + "b83f47b9-85a3-4ee4-a104-0520013d2198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14989" ], "x-ms-request-id": [ - "8edf2b72-d119-4fb5-b857-aed36262e2e0" + "36426973-5bdc-4358-ad46-f2d85d9dc7ab" ], "x-ms-correlation-request-id": [ - "8edf2b72-d119-4fb5-b857-aed36262e2e0" + "36426973-5bdc-4358-ad46-f2d85d9dc7ab" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011646Z:8edf2b72-d119-4fb5-b857-aed36262e2e0" + "CENTRALUS:20151221T200600Z:36426973-5bdc-4358-ad46-f2d85d9dc7ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:16:46 GMT" + "Mon, 21 Dec 2015 20:05:59 GMT" ], "ETag": [ - "0x8D2EA35C54A6F0B" + "0x8D30A4224A66D19" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:16:51 GMT" + "Mon, 21 Dec 2015 20:06:02 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "922779d6-6fac-4e13-856b-08865710fae4" + "ad606b73-cd03-49e7-b109-4b6e8d52a999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14988" ], "x-ms-request-id": [ - "e1c858d8-736f-4542-9928-78b6704e5065" + "5e4f94e8-10fb-41db-94e4-f0a55bff1dec" ], "x-ms-correlation-request-id": [ - "e1c858d8-736f-4542-9928-78b6704e5065" + "5e4f94e8-10fb-41db-94e4-f0a55bff1dec" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011650Z:e1c858d8-736f-4542-9928-78b6704e5065" + "CENTRALUS:20151221T200603Z:5e4f94e8-10fb-41db-94e4-f0a55bff1dec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:16:49 GMT" + "Mon, 21 Dec 2015 20:06:02 GMT" ], "ETag": [ - "0x8D2EA35C765A09D" + "0x8D30A4226948FA8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "568e3819-64a0-422a-9f03-bc3b1e99a01f" + "6687034e-9317-4779-8d02-9537b2ebd561" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "7e7d8d04-9d97-46f9-832b-bfdc7e00ca38" + "8edc79e6-8383-4a40-8135-15371c0f8501" ], "x-ms-correlation-request-id": [ - "7e7d8d04-9d97-46f9-832b-bfdc7e00ca38" + "8edc79e6-8383-4a40-8135-15371c0f8501" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011646Z:7e7d8d04-9d97-46f9-832b-bfdc7e00ca38" + "CENTRALUS:20151221T200600Z:8edc79e6-8383-4a40-8135-15371c0f8501" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:16:46 GMT" + "Mon, 21 Dec 2015 20:05:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "1eed3f85-663c-4b23-abd2-4b1b74505584" + "cb674de2-0766-4e08-b994-47754ff64ebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "84be46b0-5a99-4b2a-b4e2-f3c89b3f04a3" + "e20d96e1-e313-4361-9018-1669c6cff952" ], "x-ms-correlation-request-id": [ - "84be46b0-5a99-4b2a-b4e2-f3c89b3f04a3" + "e20d96e1-e313-4361-9018-1669c6cff952" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011650Z:84be46b0-5a99-4b2a-b4e2-f3c89b3f04a3" + "CENTRALUS:20151221T200603Z:e20d96e1-e313-4361-9018-1669c6cff952" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:16:50 GMT" + "Mon, 21 Dec 2015 20:06:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b3798a30-d0b8-4347-93c6-c56400aeedfc" + "29ef74cd-66a2-4d74-bb0c-413b9b19af1c" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:16:46 GMT" + "Mon, 21 Dec 2015 20:06:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A41F07EABFD\",\r\n \"lastModified\": \"2015-12-21T20:04:31.3357309Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 20:04:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "668a98dc-27d3-4133-9aee-4e1a063c0821" + "325d9bb2-b0b2-4159-ba4d-d84b27e0d10b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b3798a30-d0b8-4347-93c6-c56400aeedfc" + "29ef74cd-66a2-4d74-bb0c-413b9b19af1c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:16:47 GMT" + "Mon, 21 Dec 2015 20:06:00 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A41F07EABFD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "49285489-745f-493f-871b-aadc5ff13453" + "76c4cbca-03e4-4b32-9293-a88ab1a7267b" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:16:50 GMT" + "Mon, 21 Dec 2015 20:06:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A41F07EABFD\",\r\n \"lastModified\": \"2015-12-21T20:04:31.3357309Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 20:04:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fae579d2-464d-4dc2-a850-b0111e3ccca2" + "aa8ab98b-5246-4cb1-b906-aea2dfe39642" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "49285489-745f-493f-871b-aadc5ff13453" + "76c4cbca-03e4-4b32-9293-a88ab1a7267b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:16:51 GMT" + "Mon, 21 Dec 2015 20:06:02 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A41F07EABFD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,26 +447,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c3c1770d-ba26-4561-a84c-5c28fd672edf" + "930df6b2-d637-4228-b258-7a2b48a31477" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:16:50 GMT" + "Mon, 21 Dec 2015 20:06:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:01:23.6280279Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_37-20151221t200412z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_37-20151221t200412z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"allocationTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"ipAddress\": \"100.116.174.147\",\r\n \"affinityId\": \"TVM:tvm-1783593343_37-20151221t200412z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_38-20151221t200412z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_38-20151221t200412z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"allocationTime\": \"2015-12-21T20:04:12.1129615Z\",\r\n \"ipAddress\": \"100.116.188.73\",\r\n \"affinityId\": \"TVM:tvm-1783593343_38-20151221t200412z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -475,19 +475,19 @@ "chunked" ], "request-id": [ - "7b64e67e-ff40-4c7a-9e5d-ec108a8a5951" + "1b9b4d79-e142-4ad1-b43d-a3c2a8496ab6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c3c1770d-ba26-4561-a84c-5c28fd672edf" + "930df6b2-d637-4228-b258-7a2b48a31477" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:16:51 GMT" + "Mon, 21 Dec 2015 20:06:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesByFilter.json index ecef55bcd3b2..e8ba51a250b0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "669ee652-d4db-4dd7-beff-51fa397ca6a3" + "73d3a597-ceb0-4f02-a519-7c30fde3abfc" ], "x-ms-correlation-request-id": [ - "669ee652-d4db-4dd7-beff-51fa397ca6a3" + "73d3a597-ceb0-4f02-a519-7c30fde3abfc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T024902Z:669ee652-d4db-4dd7-beff-51fa397ca6a3" + "CENTRALUS:20151221T204117Z:73d3a597-ceb0-4f02-a519-7c30fde3abfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:49:02 GMT" + "Mon, 21 Dec 2015 20:41:17 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "0e2a5be8-eed4-4c13-b47d-9e88dfde21e2" + "0d5c55d0-3702-4aa5-8584-3635de558c8c" ], "x-ms-correlation-request-id": [ - "0e2a5be8-eed4-4c13-b47d-9e88dfde21e2" + "0d5c55d0-3702-4aa5-8584-3635de558c8c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T024907Z:0e2a5be8-eed4-4c13-b47d-9e88dfde21e2" + "CENTRALUS:20151221T204123Z:0d5c55d0-3702-4aa5-8584-3635de558c8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:49:07 GMT" + "Mon, 21 Dec 2015 20:41:22 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:49:05 GMT" + "Mon, 21 Dec 2015 20:41:18 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "479a0550-6eb3-4f22-860d-21a4db9cc36f" + "e4d32fa2-d72d-4a67-83d3-88f2cd537579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-request-id": [ - "5ced089a-6ec3-420b-97f1-5c61f040ce56" + "81bbd221-e4a0-44d8-9e1b-d5144c2daacd" ], "x-ms-correlation-request-id": [ - "5ced089a-6ec3-420b-97f1-5c61f040ce56" + "81bbd221-e4a0-44d8-9e1b-d5144c2daacd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T024903Z:5ced089a-6ec3-420b-97f1-5c61f040ce56" + "CENTRALUS:20151221T204119Z:81bbd221-e4a0-44d8-9e1b-d5144c2daacd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:49:02 GMT" + "Mon, 21 Dec 2015 20:41:18 GMT" ], "ETag": [ - "0x8D2EA42A9D4534B" + "0x8D30A4713CF7D86" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:49:08 GMT" + "Mon, 21 Dec 2015 20:41:22 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6de73fd2-d7f3-4d50-8277-5a2a316e9d01" + "d9b38b9e-8537-483d-8961-248fd9378c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-request-id": [ - "86aa218c-99cd-431e-aa1a-3d531285b647" + "f00ac546-f842-482d-b876-cd96c0327665" ], "x-ms-correlation-request-id": [ - "86aa218c-99cd-431e-aa1a-3d531285b647" + "f00ac546-f842-482d-b876-cd96c0327665" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T024907Z:86aa218c-99cd-431e-aa1a-3d531285b647" + "CENTRALUS:20151221T204123Z:f00ac546-f842-482d-b876-cd96c0327665" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:49:07 GMT" + "Mon, 21 Dec 2015 20:41:22 GMT" ], "ETag": [ - "0x8D2EA42AC2BB6BB" + "0x8D30A471633CB58" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "9d5d358a-c6f0-4919-82cd-6bb81ba3155e" + "5b43f946-0881-4709-adff-e0bf515391df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "64a8c8ca-1ee6-445f-a6ce-f2b3692a6f13" + "d07a3de5-fdd7-4218-aba2-d0bd7ed13cbe" ], "x-ms-correlation-request-id": [ - "64a8c8ca-1ee6-445f-a6ce-f2b3692a6f13" + "d07a3de5-fdd7-4218-aba2-d0bd7ed13cbe" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T024903Z:64a8c8ca-1ee6-445f-a6ce-f2b3692a6f13" + "CENTRALUS:20151221T204119Z:d07a3de5-fdd7-4218-aba2-d0bd7ed13cbe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:49:02 GMT" + "Mon, 21 Dec 2015 20:41:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "90ec413b-39f2-4814-a7e6-e5ca015e71e8" + "0d4bde04-8714-4302-b17f-e1a55c3d30d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "5787b225-b586-4532-9722-4c37936aad07" + "11193dfe-36d7-4e53-937e-1b73c9c938a7" ], "x-ms-correlation-request-id": [ - "5787b225-b586-4532-9722-4c37936aad07" + "11193dfe-36d7-4e53-937e-1b73c9c938a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T024907Z:5787b225-b586-4532-9722-4c37936aad07" + "CENTRALUS:20151221T204123Z:11193dfe-36d7-4e53-937e-1b73c9c938a7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:49:07 GMT" + "Mon, 21 Dec 2015 20:41:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0ff666d3-3bf7-40da-9ad9-13d16fde2408" + "7f3bab6a-add4-49ba-a552-b03d02ffd121" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:49:03 GMT" + "Mon, 21 Dec 2015 20:41:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA4026BCF809\",\r\n \"lastModified\": \"2015-11-11T02:31:06.1386249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:31:08.6999499Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A46E48B4056\",\r\n \"lastModified\": \"2015-12-21T20:39:58.7691606Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:40:02.9356725Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:31:06 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1de8f658-c62a-4a1d-a43a-4e11a5b3f49d" + "dd6eac4a-46c7-4803-8d9a-e881309c54db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0ff666d3-3bf7-40da-9ad9-13d16fde2408" + "7f3bab6a-add4-49ba-a552-b03d02ffd121" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:49:05 GMT" + "Mon, 21 Dec 2015 20:41:18 GMT" ], "ETag": [ - "0x8D2EA4026BCF809" + "0x8D30A46E48B4056" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4d8c3f9c-8f11-4eac-bf53-f7eccb1dd021" + "22b5848f-f4d3-499d-a60f-698bd8d9ca82" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:49:07 GMT" + "Mon, 21 Dec 2015 20:41:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA4026BCF809\",\r\n \"lastModified\": \"2015-11-11T02:31:06.1386249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:31:08.6999499Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A46E48B4056\",\r\n \"lastModified\": \"2015-12-21T20:39:58.7691606Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:40:02.9356725Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:31:06 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea90f272-6f4a-4c2a-bd76-c338febd9deb" + "ca3561cc-34f6-4ced-929d-248390127eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4d8c3f9c-8f11-4eac-bf53-f7eccb1dd021" + "22b5848f-f4d3-499d-a60f-698bd8d9ca82" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:49:08 GMT" + "Mon, 21 Dec 2015 20:41:22 GMT" ], "ETag": [ - "0x8D2EA4026BCF809" + "0x8D30A46E48B4056" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,26 +447,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=state%20eq%20'idle'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCUyN2lkbGUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes?$filter=state%20eq%20'idle'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCUyN2lkbGUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1aec4aaf-775d-4a78-ad0d-4afdd5b395d2" + "3a60e7b1-6320-473f-8c62-9bf5f9d8cedd" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:49:07 GMT" + "Mon, 21 Dec 2015 20:41:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T02:42:34.5943134Z\",\r\n \"lastBootTime\": \"2015-11-11T02:42:34.4623255Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:42:34.6393096Z\",\r\n \"endTime\": \"2015-11-11T02:42:35.9556823Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:24:09.7817473Z\",\r\n \"lastBootTime\": \"2015-12-21T20:24:09.6627479Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:24:10.0159338Z\",\r\n \"endTime\": \"2015-12-21T20:24:11.6148306Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:22:33.7013965Z\",\r\n \"lastBootTime\": \"2015-12-21T20:22:33.6013972Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:22:33.7483976Z\",\r\n \"endTime\": \"2015-12-21T20:22:35.1954072Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -475,19 +475,19 @@ "chunked" ], "request-id": [ - "84cf2a71-ead5-475c-8a9b-8185205b83d7" + "0f31e86a-cce6-49fb-b4d8-796e22f11231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1aec4aaf-775d-4a78-ad0d-4afdd5b395d2" + "3a60e7b1-6320-473f-8c62-9bf5f9d8cedd" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:49:08 GMT" + "Mon, 21 Dec 2015 20:41:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -496,26 +496,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=state%20eq%20'idle'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCUyN2lkbGUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes?$filter=state%20eq%20'idle'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCUyN2lkbGUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1c32fe0b-18c6-4ea7-b4f3-ead65f6d3226" + "e5e18737-b1e8-464c-a282-1e01ff855c29" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:49:08 GMT" + "Mon, 21 Dec 2015 20:41:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T02:42:34.5943134Z\",\r\n \"lastBootTime\": \"2015-11-11T02:42:34.4623255Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:42:34.6393096Z\",\r\n \"endTime\": \"2015-11-11T02:42:35.9556823Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:24:09.7817473Z\",\r\n \"lastBootTime\": \"2015-12-21T20:24:09.6627479Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:24:10.0159338Z\",\r\n \"endTime\": \"2015-12-21T20:24:11.6148306Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:22:33.7013965Z\",\r\n \"lastBootTime\": \"2015-12-21T20:22:33.6013972Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:22:33.7483976Z\",\r\n \"endTime\": \"2015-12-21T20:22:35.1954072Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -524,19 +524,19 @@ "chunked" ], "request-id": [ - "b25e54cd-67f1-46a5-b687-93f75a5f8fd3" + "52408432-2641-4c04-a808-8c9ef94a88ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1c32fe0b-18c6-4ea7-b4f3-ead65f6d3226" + "e5e18737-b1e8-464c-a282-1e01ff855c29" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:49:08 GMT" + "Mon, 21 Dec 2015 20:41:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesWithMaxCount.json index a6d706ba91b6..c50bce8712b1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestListComputeNodesWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14997" ], "x-ms-request-id": [ - "67cf9d76-cc82-4c50-ba86-b01c1b7ac32f" + "94cdd0c5-2025-474e-95f5-0d9169f25ea7" ], "x-ms-correlation-request-id": [ - "67cf9d76-cc82-4c50-ba86-b01c1b7ac32f" + "94cdd0c5-2025-474e-95f5-0d9169f25ea7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011856Z:67cf9d76-cc82-4c50-ba86-b01c1b7ac32f" + "WESTUS:20151221T201846Z:94cdd0c5-2025-474e-95f5-0d9169f25ea7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:56 GMT" + "Mon, 21 Dec 2015 20:18:45 GMT" ] }, "StatusCode": 200 @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:18:58 GMT" + "Mon, 21 Dec 2015 20:18:46 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "22c1e459-4e47-47b1-be1b-e998d8b5a817" + "0ba4c087-6aa4-4625-9431-555a25c7cc21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14997" ], "x-ms-request-id": [ - "03de6a93-6146-454c-a15f-c9cb72ed4e84" + "8e11b128-5f75-458d-8bc8-1725858e5812" ], "x-ms-correlation-request-id": [ - "03de6a93-6146-454c-a15f-c9cb72ed4e84" + "8e11b128-5f75-458d-8bc8-1725858e5812" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011857Z:03de6a93-6146-454c-a15f-c9cb72ed4e84" + "WESTUS:20151221T201847Z:8e11b128-5f75-458d-8bc8-1725858e5812" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:56 GMT" + "Mon, 21 Dec 2015 20:18:46 GMT" ], "ETag": [ - "0x8D2EA36132E6D89" + "0x8D30A43EE722F07" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "10192d6d-ddf4-4608-88a1-bc7490ae4632" + "f6802b27-e02b-4f9a-87b8-fbc91b2b364d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "d743fbec-b445-4eb5-b14a-8af642740869" + "6f2d8188-6cda-45ce-a158-a304e600de18" ], "x-ms-correlation-request-id": [ - "d743fbec-b445-4eb5-b14a-8af642740869" + "6f2d8188-6cda-45ce-a158-a304e600de18" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011857Z:d743fbec-b445-4eb5-b14a-8af642740869" + "WESTUS:20151221T201847Z:6f2d8188-6cda-45ce-a158-a304e600de18" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:18:56 GMT" + "Mon, 21 Dec 2015 20:18:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,26 +169,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0df71129-e0b4-4536-bef4-5aeef3d8534c" + "629918c7-2fbf-42d7-9ad4-4b4b14e319d4" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:57 GMT" + "Mon, 21 Dec 2015 20:18:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_39-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_39-20151221t201203z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.146.182\",\r\n \"affinityId\": \"TVM:tvm-1783593343_39-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -197,19 +197,19 @@ "chunked" ], "request-id": [ - "d11795b6-24e0-4a94-8c1d-61bd79bfeac7" + "9b97f02d-717e-4858-9d14-0da88c5f6b52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0df71129-e0b4-4536-bef4-5aeef3d8534c" + "629918c7-2fbf-42d7-9ad4-4b4b14e319d4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:58 GMT" + "Mon, 21 Dec 2015 20:18:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -218,26 +218,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3b95f4bb-4f9b-4277-b9e6-d0a3fde582d1" + "ccbaec13-d638-42ce-b9f4-8602ce84de39" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:57 GMT" + "Mon, 21 Dec 2015 20:18:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_39-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_39-20151221t201203z\",\r\n \"state\": \"leavingpool\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.146.182\",\r\n \"affinityId\": \"TVM:tvm-1783593343_39-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -246,19 +246,19 @@ "chunked" ], "request-id": [ - "1a9acf1f-34c7-4214-b945-eb7120f2cfd0" + "1bc16449-b2ec-40b4-a4fb-11e657d9b2fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3b95f4bb-4f9b-4277-b9e6-d0a3fde582d1" + "ccbaec13-d638-42ce-b9f4-8602ce84de39" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:58 GMT" + "Mon, 21 Dec 2015 20:18:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -267,53 +267,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5a1911ab-9e40-4480-9fed-b3750b088e15" + "35449a2b-0f88-4c0f-9dd1-7c10fe8b45f2" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:18:57 GMT" + "Mon, 21 Dec 2015 20:18:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A430ACBBB0C\",\r\n \"lastModified\": \"2015-12-21T20:12:24.9582348Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 20:12:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "31a5da0c-d987-4d94-8f3b-31971d4ae743" + "c6b23508-8b8e-490d-ae48-19c58ce61945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5a1911ab-9e40-4480-9fed-b3750b088e15" + "35449a2b-0f88-4c0f-9dd1-7c10fe8b45f2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:18:58 GMT" + "Mon, 21 Dec 2015 20:18:46 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A430ACBBB0C" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodeById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodeById.json index 1cec55e1daf7..d9002c8c6be9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodeById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodeById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "836e4576-3441-44e2-8fc7-148bc5652d1e" + "55e4d3f2-4171-43fd-bbfb-415943822504" ], "x-ms-correlation-request-id": [ - "836e4576-3441-44e2-8fc7-148bc5652d1e" + "55e4d3f2-4171-43fd-bbfb-415943822504" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023139Z:836e4576-3441-44e2-8fc7-148bc5652d1e" + "CENTRALUS:20151221T220149Z:55e4d3f2-4171-43fd-bbfb-415943822504" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:38 GMT" + "Mon, 21 Dec 2015 22:01:49 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "e8ca0fd4-9554-4a6f-967d-1674ad0c9a36" + "4808b745-4e29-41b5-b8df-c36d437b520a" ], "x-ms-correlation-request-id": [ - "e8ca0fd4-9554-4a6f-967d-1674ad0c9a36" + "4808b745-4e29-41b5-b8df-c36d437b520a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023143Z:e8ca0fd4-9554-4a6f-967d-1674ad0c9a36" + "CENTRALUS:20151221T220154Z:4808b745-4e29-41b5-b8df-c36d437b520a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:42 GMT" + "Mon, 21 Dec 2015 22:01:53 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:31:40 GMT" + "Mon, 21 Dec 2015 22:01:50 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b6354d7b-8ba2-4e5c-9da0-b283a53239e7" + "b360103a-652e-4d8e-9926-373b98539139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-request-id": [ - "898d6f38-3e72-47bd-81de-a1864c031ed5" + "36225d93-ee1b-4a17-b4e7-58c7bb2f0a5b" ], "x-ms-correlation-request-id": [ - "898d6f38-3e72-47bd-81de-a1864c031ed5" + "36225d93-ee1b-4a17-b4e7-58c7bb2f0a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023140Z:898d6f38-3e72-47bd-81de-a1864c031ed5" + "CENTRALUS:20151221T220150Z:36225d93-ee1b-4a17-b4e7-58c7bb2f0a5b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:39 GMT" + "Mon, 21 Dec 2015 22:01:50 GMT" ], "ETag": [ - "0x8D2EA403B5E76B7" + "0x8D30A5253DE671D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:31:44 GMT" + "Mon, 21 Dec 2015 22:01:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c382d821-13f1-4a61-b371-915fc86b6081" + "a0f6c823-6fbd-47e9-bee4-835857123ae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-request-id": [ - "997e7354-b42d-4df4-a69e-e86c263e6146" + "594fbd33-aa13-48d9-8f8e-dd4e3ff10300" ], "x-ms-correlation-request-id": [ - "997e7354-b42d-4df4-a69e-e86c263e6146" + "594fbd33-aa13-48d9-8f8e-dd4e3ff10300" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023143Z:997e7354-b42d-4df4-a69e-e86c263e6146" + "CENTRALUS:20151221T220154Z:594fbd33-aa13-48d9-8f8e-dd4e3ff10300" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:43 GMT" + "Mon, 21 Dec 2015 22:01:54 GMT" ], "ETag": [ - "0x8D2EA403D87F56B" + "0x8D30A52565640A2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "26243bf1-50b2-4344-84f8-402537dd837a" + "6c3f4c89-96aa-4eab-a22a-9b0a5cf4dcdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "e0c4c597-fdfe-45da-a440-fc6214598a82" + "ebe9868a-6ae1-44d7-8d92-0660cf14a9c6" ], "x-ms-correlation-request-id": [ - "e0c4c597-fdfe-45da-a440-fc6214598a82" + "ebe9868a-6ae1-44d7-8d92-0660cf14a9c6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023140Z:e0c4c597-fdfe-45da-a440-fc6214598a82" + "CENTRALUS:20151221T220150Z:ebe9868a-6ae1-44d7-8d92-0660cf14a9c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:39 GMT" + "Mon, 21 Dec 2015 22:01:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "af660a1a-4eac-4601-a967-fa8f8dde0e5e" + "ac31a7d4-9180-4962-acb9-88a9aec97aca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1198" ], "x-ms-request-id": [ - "ca98084e-3f80-447b-8aba-0bf522b50ddf" + "c98636d6-000f-4d96-8100-0de33439f711" ], "x-ms-correlation-request-id": [ - "ca98084e-3f80-447b-8aba-0bf522b50ddf" + "c98636d6-000f-4d96-8100-0de33439f711" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023144Z:ca98084e-3f80-447b-8aba-0bf522b50ddf" + "CENTRALUS:20151221T220154Z:c98636d6-000f-4d96-8100-0de33439f711" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:43 GMT" + "Mon, 21 Dec 2015 22:01:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "363ba50e-c8ed-4133-8a62-85fad405e5af" + "277ba781-d47c-43ea-bb5b-5edc0a4cf3d7" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:31:40 GMT" + "Mon, 21 Dec 2015 22:01:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T01:20:03.4833205Z\",\r\n \"lastBootTime\": \"2015-11-11T01:20:03.3283191Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:20:03.6123193Z\",\r\n \"endTime\": \"2015-11-11T01:20:05.0433307Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:40:35.3129598Z\",\r\n \"lastBootTime\": \"2015-12-21T21:40:35.2089599Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T21:40:35.4059603Z\",\r\n \"endTime\": \"2015-12-21T21:40:37.1721479Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:33:33.2260349Z\",\r\n \"lastBootTime\": \"2015-12-21T21:33:33.0870352Z\",\r\n \"allocationTime\": \"2015-12-21T21:00:57.7896291Z\",\r\n \"ipAddress\": \"10.74.168.142\",\r\n \"affinityId\": \"TVM:tvm-1783593343_42-20151221t210057z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T21:33:33.2700363Z\",\r\n \"endTime\": \"2015-12-21T21:33:35.1538517Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "2b7f9c59-93d3-4159-96e7-adec618e7535" + "60ce1617-1ff7-4f73-a05e-9102d2ae95b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "363ba50e-c8ed-4133-8a62-85fad405e5af" + "277ba781-d47c-43ea-bb5b-5edc0a4cf3d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:31:40 GMT" + "Mon, 21 Dec 2015 22:01:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5c6816e1-471f-40e2-9374-f8b1b2687ddf" + "185279fb-7cf3-44e4-8aa1-a6374a4e3dc8" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:31:40 GMT" + "Mon, 21 Dec 2015 22:01:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T01:20:03.4833205Z\",\r\n \"lastBootTime\": \"2015-11-11T01:20:03.3283191Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:20:03.6123193Z\",\r\n \"endTime\": \"2015-11-11T01:20:05.0433307Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "311d41c6-12ee-45ff-bca5-848deebb5e01" + "8613d8e4-1561-43a6-baa6-0f243a84c3f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5c6816e1-471f-40e2-9374-f8b1b2687ddf" + "185279fb-7cf3-44e4-8aa1-a6374a4e3dc8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:31:40 GMT" + "Mon, 21 Dec 2015 22:01:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,8 +435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?reboot&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9yZWJvb3QmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?reboot&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/cmVib290JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeRebootOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -447,16 +447,16 @@ "39" ], "client-request-id": [ - "16094d4a-b972-408e-ae31-ecf8e62d7f56" + "176ce337-0656-4a0a-bf88-24f80feebb23" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:31:43 GMT" + "Mon, 21 Dec 2015 22:01:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -466,22 +466,22 @@ "chunked" ], "request-id": [ - "7eef48a3-170e-4384-ac7f-76597dce9c27" + "fc4876d2-caa3-48de-b8a8-89e2c555c338" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "16094d4a-b972-408e-ae31-ecf8e62d7f56" + "176ce337-0656-4a0a-bf88-24f80feebb23" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z" ], "Date": [ - "Wed, 11 Nov 2015 02:31:47 GMT" + "Mon, 21 Dec 2015 22:01:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -490,26 +490,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_2-20151110t233600z'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAweiUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_41-20151221t201203z'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3olMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6471b323-1a6b-4082-a44c-9151ea7a14bb" + "2e782818-e1a4-40e8-9e7c-2592eae3ced1" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:31:45 GMT" + "Mon, 21 Dec 2015 22:01:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T02:31:45.0280142Z\",\r\n \"lastBootTime\": \"2015-11-11T01:20:03.3283191Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:20:03.6123193Z\",\r\n \"endTime\": \"2015-11-11T01:20:05.0433307Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:01:54.2916428Z\",\r\n \"lastBootTime\": \"2015-12-21T21:40:35.2089599Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T21:40:35.4059603Z\",\r\n \"endTime\": \"2015-12-21T21:40:37.1721479Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -518,19 +518,19 @@ "chunked" ], "request-id": [ - "e8f1450d-a76c-4a88-9cef-fb808d5a2b75" + "52c35fdf-37eb-43fd-9491-ac94105ab4a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6471b323-1a6b-4082-a44c-9151ea7a14bb" + "2e782818-e1a4-40e8-9e7c-2592eae3ced1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:31:47 GMT" + "Mon, 21 Dec 2015 22:01:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodePipeline.json index 107d269b3234..8677ac674345 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootComputeNodePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14994" ], "x-ms-request-id": [ - "b5e55d2c-7824-4ba3-bb24-6944dd602ef2" + "ef8900ac-25ab-4d13-a564-c9721f33a949" ], "x-ms-correlation-request-id": [ - "b5e55d2c-7824-4ba3-bb24-6944dd602ef2" + "ef8900ac-25ab-4d13-a564-c9721f33a949" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011316Z:b5e55d2c-7824-4ba3-bb24-6944dd602ef2" + "CENTRALUS:20151221T204818Z:ef8900ac-25ab-4d13-a564-c9721f33a949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:16 GMT" + "Mon, 21 Dec 2015 20:48:18 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14993" ], "x-ms-request-id": [ - "e13cabb9-f5b7-4b3f-8bc2-6b5f60463430" + "f3f1d4b0-ddf2-4a5c-8195-4349d1aa3f8b" ], "x-ms-correlation-request-id": [ - "e13cabb9-f5b7-4b3f-8bc2-6b5f60463430" + "f3f1d4b0-ddf2-4a5c-8195-4349d1aa3f8b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011320Z:e13cabb9-f5b7-4b3f-8bc2-6b5f60463430" + "CENTRALUS:20151221T204853Z:f3f1d4b0-ddf2-4a5c-8195-4349d1aa3f8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:20 GMT" + "Mon, 21 Dec 2015 20:48:52 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:13:17 GMT" + "Mon, 21 Dec 2015 20:48:18 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a4331076-6bf5-40c1-86d5-4b760aba00c7" + "3ec7c92d-b17b-44d1-a454-1a7c02de62ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14997" ], "x-ms-request-id": [ - "5d0ede5d-58c8-44d9-ae5e-cb16d8d07e6a" + "a1c89d50-7166-4511-ab76-bb0c63868cc8" ], "x-ms-correlation-request-id": [ - "5d0ede5d-58c8-44d9-ae5e-cb16d8d07e6a" + "a1c89d50-7166-4511-ab76-bb0c63868cc8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011317Z:5d0ede5d-58c8-44d9-ae5e-cb16d8d07e6a" + "CENTRALUS:20151221T204820Z:a1c89d50-7166-4511-ab76-bb0c63868cc8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:16 GMT" + "Mon, 21 Dec 2015 20:48:19 GMT" ], "ETag": [ - "0x8D2EA35484456D1" + "0x8D30A480E8E9AE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:13:21 GMT" + "Mon, 21 Dec 2015 20:48:52 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "78db0a68-a3f7-49f2-9e4e-cc65399aa5c3" + "556b5c49-b7fe-484a-a5c6-67a84fbc6e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14996" ], "x-ms-request-id": [ - "304ec3ff-64e1-4a1e-9252-5f2a02cbd7b2" + "dbaa2aea-faa3-438e-b23c-55ba1040822b" ], "x-ms-correlation-request-id": [ - "304ec3ff-64e1-4a1e-9252-5f2a02cbd7b2" + "dbaa2aea-faa3-438e-b23c-55ba1040822b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011321Z:304ec3ff-64e1-4a1e-9252-5f2a02cbd7b2" + "CENTRALUS:20151221T204853Z:dbaa2aea-faa3-438e-b23c-55ba1040822b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:20 GMT" + "Mon, 21 Dec 2015 20:48:52 GMT" ], "ETag": [ - "0x8D2EA354A5A8AEC" + "0x8D30A482270F15F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "2604ddf8-9075-43e2-94b2-79d684af3b8e" + "e72e4d7e-af66-472d-9477-c67ecdddaa15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "c06a7b1b-329a-4b7a-9541-a7912843391f" + "93e6e128-2ef6-44e8-9219-41c52b7415d7" ], "x-ms-correlation-request-id": [ - "c06a7b1b-329a-4b7a-9541-a7912843391f" + "93e6e128-2ef6-44e8-9219-41c52b7415d7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011317Z:c06a7b1b-329a-4b7a-9541-a7912843391f" + "CENTRALUS:20151221T204820Z:93e6e128-2ef6-44e8-9219-41c52b7415d7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:17 GMT" + "Mon, 21 Dec 2015 20:48:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "3d35d7b5-aaea-4ec0-9e2f-abf8c32be9eb" + "da4b2dff-2786-4444-bcdc-09ab8e5038de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "b6817ab5-21cf-4d09-bc83-c2d1f7d82d13" + "3822a71c-f368-4431-9345-4aa5f974fce0" ], "x-ms-correlation-request-id": [ - "b6817ab5-21cf-4d09-bc83-c2d1f7d82d13" + "3822a71c-f368-4431-9345-4aa5f974fce0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011321Z:b6817ab5-21cf-4d09-bc83-c2d1f7d82d13" + "CENTRALUS:20151221T204853Z:3822a71c-f368-4431-9345-4aa5f974fce0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:13:20 GMT" + "Mon, 21 Dec 2015 20:48:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "13f99279-e3e7-4ef7-a529-0f984e41bb5d" + "e3be6243-b5b9-4227-9913-7a08b5b14296" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:13:17 GMT" + "Mon, 21 Dec 2015 20:48:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:45:13.0983222Z\",\r\n \"lastBootTime\": \"2015-12-21T20:45:12.8854346Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:45:13.200928Z\",\r\n \"endTime\": \"2015-12-21T20:45:15.0610541Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:22:33.7013965Z\",\r\n \"lastBootTime\": \"2015-12-21T20:22:33.6013972Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:22:33.7483976Z\",\r\n \"endTime\": \"2015-12-21T20:22:35.1954072Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "e0a09fb4-70cc-486f-a35c-aa8b0bd511f5" + "d6e89b78-c782-4093-b853-a08fbe910e80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "13f99279-e3e7-4ef7-a529-0f984e41bb5d" + "e3be6243-b5b9-4227-9913-7a08b5b14296" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:13:18 GMT" + "Mon, 21 Dec 2015 20:48:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "642aafda-af9b-4487-98ed-e51b382e8b0c" + "f4512c74-255f-47a7-89e6-a1110e88b3b7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:13:17 GMT" + "Mon, 21 Dec 2015 20:48:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "29ee000c-ddb9-484e-8439-cbb8bc142534" + "19e57b7d-ebea-4dcd-aa00-926f536828db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "642aafda-af9b-4487-98ed-e51b382e8b0c" + "f4512c74-255f-47a7-89e6-a1110e88b3b7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:13:18 GMT" + "Mon, 21 Dec 2015 20:48:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c8efc128-a0b8-4597-b393-403303f8461d" + "7e327c4d-28ab-4b4c-8fc2-f8cecd0bcf63" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:13:20 GMT" + "Mon, 21 Dec 2015 20:48:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:45:13.0983222Z\",\r\n \"lastBootTime\": \"2015-12-21T20:45:12.8854346Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:45:13.200928Z\",\r\n \"endTime\": \"2015-12-21T20:45:15.0610541Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "58af41f3-5dba-419d-9bd9-f3c3fd188071" + "f8352afd-53f5-4635-9e55-d3ac5cc52871" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c8efc128-a0b8-4597-b393-403303f8461d" + "7e327c4d-28ab-4b4c-8fc2-f8cecd0bcf63" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:13:21 GMT" + "Mon, 21 Dec 2015 20:48:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,8 +484,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?reboot&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9yZWJvb3QmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?reboot&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/cmVib290JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeRebootOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -496,16 +496,16 @@ "39" ], "client-request-id": [ - "bdc430ef-8e7f-4630-b112-3e8599060609" + "5c185af3-e892-45dd-9649-7313cbf6fc81" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:13:21 GMT" + "Mon, 21 Dec 2015 20:48:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -515,22 +515,22 @@ "chunked" ], "request-id": [ - "57341238-bbdc-4e9f-9eef-12f2cc522ee4" + "7b73d774-819e-42ad-891b-86a430158741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bdc430ef-8e7f-4630-b112-3e8599060609" + "5c185af3-e892-45dd-9649-7313cbf6fc81" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z" ], "Date": [ - "Wed, 11 Nov 2015 01:13:22 GMT" + "Mon, 21 Dec 2015 20:48:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -539,26 +539,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_2-20151110t233600z'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAweiUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_40-20151221t201203z'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3olMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5cbfbb31-a75d-426d-b36d-a7b047be3ff6" + "961fe56a-5f4f-42cf-b078-63f354662130" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:13:22 GMT" + "Mon, 21 Dec 2015 20:48:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"rebooting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:13:21.9442146Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:48:52.6590222Z\",\r\n \"lastBootTime\": \"2015-12-21T20:45:12.8854346Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:45:13.200928Z\",\r\n \"endTime\": \"2015-12-21T20:45:15.0610541Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -567,19 +567,19 @@ "chunked" ], "request-id": [ - "56702cbd-7598-4ab9-b3ae-689e9029cae6" + "64cf3587-aedf-4ca8-ada4-9ddedddb3ebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5cbfbb31-a75d-426d-b36d-a7b047be3ff6" + "961fe56a-5f4f-42cf-b078-63f354662130" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:13:22 GMT" + "Mon, 21 Dec 2015 20:48:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodeById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodeById.json index 0854fd737bca..60767c2f1574 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodeById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodeById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-request-id": [ - "c0a37d1a-8ec9-4d1a-af98-95450858c7d4" + "d3eadd9a-1190-497f-ac06-246aa0399c62" ], "x-ms-correlation-request-id": [ - "c0a37d1a-8ec9-4d1a-af98-95450858c7d4" + "d3eadd9a-1190-497f-ac06-246aa0399c62" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011517Z:c0a37d1a-8ec9-4d1a-af98-95450858c7d4" + "WESTUS:20151221T220425Z:d3eadd9a-1190-497f-ac06-246aa0399c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:15:17 GMT" + "Mon, 21 Dec 2015 22:04:25 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14994" ], "x-ms-request-id": [ - "5ec77c59-fb1c-4b15-aec4-d95d20192929" + "4fc05798-48f1-4b09-ab9a-765bfde40349" ], "x-ms-correlation-request-id": [ - "5ec77c59-fb1c-4b15-aec4-d95d20192929" + "4fc05798-48f1-4b09-ab9a-765bfde40349" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011522Z:5ec77c59-fb1c-4b15-aec4-d95d20192929" + "WESTUS:20151221T220431Z:4fc05798-48f1-4b09-ab9a-765bfde40349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:15:21 GMT" + "Mon, 21 Dec 2015 22:04:31 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:15:19 GMT" + "Mon, 21 Dec 2015 22:04:26 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f6022498-1028-4eb2-84f2-7dead78da39a" + "3a591349-0084-494f-8afa-0a39cab508bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14997" ], "x-ms-request-id": [ - "547c6519-3bef-4d19-9b72-e76c45077221" + "ad5dc646-4b16-4d18-a5fb-41b1105a4e7e" ], "x-ms-correlation-request-id": [ - "547c6519-3bef-4d19-9b72-e76c45077221" + "ad5dc646-4b16-4d18-a5fb-41b1105a4e7e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011519Z:547c6519-3bef-4d19-9b72-e76c45077221" + "WESTUS:20151221T220427Z:ad5dc646-4b16-4d18-a5fb-41b1105a4e7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:15:18 GMT" + "Mon, 21 Dec 2015 22:04:27 GMT" ], "ETag": [ - "0x8D2EA3590C21157" + "0x8D30A52B135EF8E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:15:23 GMT" + "Mon, 21 Dec 2015 22:04:30 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e0eb0f31-ac14-4143-ad4f-b2f064a00f46" + "fffed0bd-6fa7-4638-a1d4-f0e6e1bcbb39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14996" ], "x-ms-request-id": [ - "63355455-957e-4a24-801e-8f7e1216d15a" + "7c7fd34c-5690-4164-8ac3-3c288bf476fb" ], "x-ms-correlation-request-id": [ - "63355455-957e-4a24-801e-8f7e1216d15a" + "7c7fd34c-5690-4164-8ac3-3c288bf476fb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011522Z:63355455-957e-4a24-801e-8f7e1216d15a" + "WESTUS:20151221T220431Z:7c7fd34c-5690-4164-8ac3-3c288bf476fb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:15:22 GMT" + "Mon, 21 Dec 2015 22:04:31 GMT" ], "ETag": [ - "0x8D2EA3592EEB43D" + "0x8D30A52B3A1A5AC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "e093db45-be79-4dbb-9c6e-084bf9c1651e" + "687ef57c-fde8-4f97-a65e-5d3b89c2cc33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "2bc61feb-557c-4963-90c3-b9dfd3900dbb" + "9212d3ef-66d8-4b64-a2d3-a937034c83bb" ], "x-ms-correlation-request-id": [ - "2bc61feb-557c-4963-90c3-b9dfd3900dbb" + "9212d3ef-66d8-4b64-a2d3-a937034c83bb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011519Z:2bc61feb-557c-4963-90c3-b9dfd3900dbb" + "WESTUS:20151221T220427Z:9212d3ef-66d8-4b64-a2d3-a937034c83bb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:15:18 GMT" + "Mon, 21 Dec 2015 22:04:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "9669757c-2470-4276-b370-cf4c5c129da8" + "e075c521-795c-4a43-ada4-a2295481fdf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "41e0d498-eeaa-44c4-a028-25fd72453055" + "f876ef27-11a9-497a-9b8e-b49e17f77c47" ], "x-ms-correlation-request-id": [ - "41e0d498-eeaa-44c4-a028-25fd72453055" + "f876ef27-11a9-497a-9b8e-b49e17f77c47" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011523Z:41e0d498-eeaa-44c4-a028-25fd72453055" + "WESTUS:20151221T220431Z:f876ef27-11a9-497a-9b8e-b49e17f77c47" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:15:22 GMT" + "Mon, 21 Dec 2015 22:04:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ef3f7028-0a69-480d-823b-e1e2aa3e93dd" + "3ed0911d-2d4b-4280-b013-ce626715b53e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:15:19 GMT" + "Mon, 21 Dec 2015 22:04:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:16.8621234Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:03:53.6391835Z\",\r\n \"lastBootTime\": \"2015-12-21T22:03:53.4938323Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T22:03:53.684464Z\",\r\n \"endTime\": \"2015-12-21T22:03:54.7114642Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:33:33.2260349Z\",\r\n \"lastBootTime\": \"2015-12-21T21:33:33.0870352Z\",\r\n \"allocationTime\": \"2015-12-21T21:00:57.7896291Z\",\r\n \"ipAddress\": \"10.74.168.142\",\r\n \"affinityId\": \"TVM:tvm-1783593343_42-20151221t210057z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T21:33:33.2700363Z\",\r\n \"endTime\": \"2015-12-21T21:33:35.1538517Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "c67ecadf-f71f-43d1-93e8-69f49348f4e7" + "d085620e-c001-41e6-9c5c-b20abae7603d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ef3f7028-0a69-480d-823b-e1e2aa3e93dd" + "3ed0911d-2d4b-4280-b013-ce626715b53e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:15:20 GMT" + "Mon, 21 Dec 2015 22:04:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6432bb29-480f-4a20-8a7f-39d2645190d7" + "60529581-93bd-477f-86db-58572f4c0272" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:15:19 GMT" + "Mon, 21 Dec 2015 22:04:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:16.8621234Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "65404f1a-ec76-4189-a7ce-0afb8af610f5" + "56d7a356-f85f-46b9-a6d4-c5a44360cd73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6432bb29-480f-4a20-8a7f-39d2645190d7" + "60529581-93bd-477f-86db-58572f4c0272" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:15:20 GMT" + "Mon, 21 Dec 2015 22:04:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,8 +435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?reimage&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9yZWltYWdlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?reimage&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/cmVpbWFnZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeReimageOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -447,16 +447,16 @@ "40" ], "client-request-id": [ - "23904a37-897b-41af-8dfc-88df912b2761" + "a66bf6ed-cc95-4d2b-8db2-b8ecfdb7b337" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:15:22 GMT" + "Mon, 21 Dec 2015 22:04:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -466,22 +466,22 @@ "chunked" ], "request-id": [ - "e2780b51-0384-40fd-a78b-9483ffdcdb83" + "b3e9e710-14d1-4339-b45f-50a9a5282382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "23904a37-897b-41af-8dfc-88df912b2761" + "a66bf6ed-cc95-4d2b-8db2-b8ecfdb7b337" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z" ], "Date": [ - "Wed, 11 Nov 2015 01:15:26 GMT" + "Mon, 21 Dec 2015 22:04:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -490,26 +490,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_2-20151110t233600z'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAweiUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_41-20151221t201203z'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3olMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "05a8e640-c772-4420-b0d9-690436be441a" + "2af25d6d-7785-4f91-a1f9-3094d335d697" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:15:25 GMT" + "Mon, 21 Dec 2015 22:04:32 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T01:15:24.4870932Z\",\r\n \"lastBootTime\": \"2015-11-11T01:15:16.7111269Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T01:15:17.1101233Z\",\r\n \"endTime\": \"2015-11-11T01:15:18.3671789Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:04:30.5271222Z\",\r\n \"lastBootTime\": \"2015-12-21T22:03:53.4938323Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T22:03:53.684464Z\",\r\n \"endTime\": \"2015-12-21T22:03:54.7114642Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -518,19 +518,19 @@ "chunked" ], "request-id": [ - "6c426d14-f2f5-4b7e-aea1-9bdb2d3e3ee5" + "a13f2592-dc7d-42ef-b742-fbd59cb90480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "05a8e640-c772-4420-b0d9-690436be441a" + "2af25d6d-7785-4f91-a1f9-3094d335d697" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:15:26 GMT" + "Mon, 21 Dec 2015 22:04:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodePipeline.json index c55b410901a9..22a6055d08e8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestReimageComputeNodePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-request-id": [ - "fd433d16-4fea-4d9a-883a-828a14fec0bf" + "d6a11691-fb81-4fad-bbc7-eb3dbb34621e" ], "x-ms-correlation-request-id": [ - "fd433d16-4fea-4d9a-883a-828a14fec0bf" + "d6a11691-fb81-4fad-bbc7-eb3dbb34621e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023800Z:fd433d16-4fea-4d9a-883a-828a14fec0bf" + "CENTRALUS:20151221T205156Z:d6a11691-fb81-4fad-bbc7-eb3dbb34621e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:37:59 GMT" + "Mon, 21 Dec 2015 20:51:55 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14990" ], "x-ms-request-id": [ - "b25ae2a4-dc88-4510-af67-96eecdc8ff8d" + "71349574-b5e2-4f13-adeb-19933c1a0ce3" ], "x-ms-correlation-request-id": [ - "b25ae2a4-dc88-4510-af67-96eecdc8ff8d" + "71349574-b5e2-4f13-adeb-19933c1a0ce3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023806Z:b25ae2a4-dc88-4510-af67-96eecdc8ff8d" + "CENTRALUS:20151221T205221Z:71349574-b5e2-4f13-adeb-19933c1a0ce3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:38:05 GMT" + "Mon, 21 Dec 2015 20:52:21 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:38:02 GMT" + "Mon, 21 Dec 2015 20:51:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "51fd3b77-d063-4bab-be9c-f26d1fa46cb8" + "ce25a2ef-657d-4a99-9751-ebe12f0f2e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14984" ], "x-ms-request-id": [ - "5ba2a220-bdd2-47e7-aeef-719c923cb489" + "196caf88-3d93-4e9c-ad40-930e1ed6c3cf" ], "x-ms-correlation-request-id": [ - "5ba2a220-bdd2-47e7-aeef-719c923cb489" + "196caf88-3d93-4e9c-ad40-930e1ed6c3cf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023801Z:5ba2a220-bdd2-47e7-aeef-719c923cb489" + "CENTRALUS:20151221T205157Z:196caf88-3d93-4e9c-ad40-930e1ed6c3cf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:38:01 GMT" + "Mon, 21 Dec 2015 20:51:57 GMT" ], "ETag": [ - "0x8D2EA411ED17C7E" + "0x8D30A48905FBABE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:38:06 GMT" + "Mon, 21 Dec 2015 20:52:20 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "edcb7f8e-e4f2-49e4-9b53-8938ba834093" + "7829064c-b539-4d69-b374-f8d1a939ca3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14983" ], "x-ms-request-id": [ - "a635f710-3af2-4cd3-9e22-15adabbc8eb5" + "a0d926f2-9a26-4bd9-a605-973626f58671" ], "x-ms-correlation-request-id": [ - "a635f710-3af2-4cd3-9e22-15adabbc8eb5" + "a0d926f2-9a26-4bd9-a605-973626f58671" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023806Z:a635f710-3af2-4cd3-9e22-15adabbc8eb5" + "CENTRALUS:20151221T205221Z:a0d926f2-9a26-4bd9-a605-973626f58671" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:38:05 GMT" + "Mon, 21 Dec 2015 20:52:21 GMT" ], "ETag": [ - "0x8D2EA41217060C2" + "0x8D30A489EB76C55" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "3117416e-d8e2-482c-b750-88b9ca90cebd" + "8b3d94c6-51cf-4670-ad3b-6f37c4b00e44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "833558e0-0da7-4af5-b0b7-19baab64ee5c" + "3f7576de-f94c-4ef0-871d-c3b70f0e3ec2" ], "x-ms-correlation-request-id": [ - "833558e0-0da7-4af5-b0b7-19baab64ee5c" + "3f7576de-f94c-4ef0-871d-c3b70f0e3ec2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023802Z:833558e0-0da7-4af5-b0b7-19baab64ee5c" + "CENTRALUS:20151221T205158Z:3f7576de-f94c-4ef0-871d-c3b70f0e3ec2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:38:01 GMT" + "Mon, 21 Dec 2015 20:51:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "d46884c2-26dc-44cc-933d-ebc7808375e1" + "97ad7edd-421e-4ff3-b728-9fabe7cda3a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-request-id": [ - "ab002bc0-f7ff-4a7c-bbd9-033c990c9f2d" + "3560e17e-161d-49cf-beec-fe1d97071ad1" ], "x-ms-correlation-request-id": [ - "ab002bc0-f7ff-4a7c-bbd9-033c990c9f2d" + "3560e17e-161d-49cf-beec-fe1d97071ad1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023806Z:ab002bc0-f7ff-4a7c-bbd9-033c990c9f2d" + "CENTRALUS:20151221T205222Z:3560e17e-161d-49cf-beec-fe1d97071ad1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:38:05 GMT" + "Mon, 21 Dec 2015 20:52:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9ed04372-ffe2-4566-aef3-ade9a161591e" + "ccfff8d4-8697-4798-819a-f121cee0017d" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:38:01 GMT" + "Mon, 21 Dec 2015 20:51:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T02:33:45.50418Z\",\r\n \"lastBootTime\": \"2015-11-11T02:33:45.4231827Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:33:45.5341794Z\",\r\n \"endTime\": \"2015-11-11T02:33:46.9159537Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:51:29.3444463Z\",\r\n \"lastBootTime\": \"2015-12-21T20:51:29.1357365Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:51:29.3884483Z\",\r\n \"endTime\": \"2015-12-21T20:51:32.0757456Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:22:33.7013965Z\",\r\n \"lastBootTime\": \"2015-12-21T20:22:33.6013972Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:22:33.7483976Z\",\r\n \"endTime\": \"2015-12-21T20:22:35.1954072Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "2ed268c9-c751-46b3-a0ab-cfce95ab30a7" + "49954ef4-c889-46e9-adfe-4396cf9bdd0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9ed04372-ffe2-4566-aef3-ade9a161591e" + "ccfff8d4-8697-4798-819a-f121cee0017d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:38:02 GMT" + "Mon, 21 Dec 2015 20:51:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6990540f-bf10-4cb4-be82-2cc65d540e05" + "6abc28a3-e047-43b2-ae3d-86de9efe0182" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:38:02 GMT" + "Mon, 21 Dec 2015 20:51:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T02:33:45.50418Z\",\r\n \"lastBootTime\": \"2015-11-11T02:33:45.4231827Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:33:45.5341794Z\",\r\n \"endTime\": \"2015-11-11T02:33:46.9159537Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "ed59c3ef-1d57-4165-b1de-6cff8118283f" + "eb750501-e801-4f44-b3d0-e1e43d547593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6990540f-bf10-4cb4-be82-2cc65d540e05" + "6abc28a3-e047-43b2-ae3d-86de9efe0182" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:38:02 GMT" + "Mon, 21 Dec 2015 20:51:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "183428dd-e33c-477a-9874-65df78b7a920" + "6bc10069-93db-4d32-a2df-691b70fac5f8" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:38:06 GMT" + "Mon, 21 Dec 2015 20:52:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T02:33:45.50418Z\",\r\n \"lastBootTime\": \"2015-11-11T02:33:45.4231827Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:33:45.5341794Z\",\r\n \"endTime\": \"2015-11-11T02:33:46.9159537Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:51:29.3444463Z\",\r\n \"lastBootTime\": \"2015-12-21T20:51:29.1357365Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:51:29.3884483Z\",\r\n \"endTime\": \"2015-12-21T20:51:32.0757456Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "93a0e7a7-2502-4012-9a11-490a6284b72e" + "56a73348-4381-45f1-ad85-3e77d6f552a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "183428dd-e33c-477a-9874-65df78b7a920" + "6bc10069-93db-4d32-a2df-691b70fac5f8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:38:07 GMT" + "Mon, 21 Dec 2015 20:52:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,8 +484,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?reimage&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9yZWltYWdlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?reimage&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/cmVpbWFnZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeReimageOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -496,16 +496,16 @@ "40" ], "client-request-id": [ - "df0b9407-0198-4240-b047-a68279691d9f" + "88143f99-d2e2-4ce5-8e84-2531cb773c12" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:38:06 GMT" + "Mon, 21 Dec 2015 20:52:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -515,22 +515,22 @@ "chunked" ], "request-id": [ - "25c4aa30-5ed0-448c-8b04-d5d906a6c3bb" + "7e1de5c5-3f7e-4714-9c2e-41beda22c4ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "df0b9407-0198-4240-b047-a68279691d9f" + "88143f99-d2e2-4ce5-8e84-2531cb773c12" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z" ], "Date": [ - "Wed, 11 Nov 2015 02:38:11 GMT" + "Mon, 21 Dec 2015 20:52:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -539,26 +539,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_2-20151110t233600z'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAweiUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_40-20151221t201203z'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3olMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "23e26b57-7ea6-4087-97a8-9b608563cb3f" + "dd39e21f-136d-41ea-ba63-7d14ce43f8e5" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:38:09 GMT" + "Mon, 21 Dec 2015 20:52:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"reimaging\",\r\n \"stateTransitionTime\": \"2015-11-11T02:38:09.0150635Z\",\r\n \"lastBootTime\": \"2015-11-11T02:33:45.4231827Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:33:45.5341794Z\",\r\n \"endTime\": \"2015-11-11T02:33:46.9159537Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:52:22.2650464Z\",\r\n \"lastBootTime\": \"2015-12-21T20:51:29.1357365Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:51:29.3884483Z\",\r\n \"endTime\": \"2015-12-21T20:51:32.0757456Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -567,19 +567,19 @@ "chunked" ], "request-id": [ - "2292be74-271a-4464-b6b7-a2f3c4035a38" + "c84eeb25-f583-4622-877c-1da4d0df70e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "23e26b57-7ea6-4087-97a8-9b608563cb3f" + "dd39e21f-136d-41ea-ba63-7d14ce43f8e5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:38:11 GMT" + "Mon, 21 Dec 2015 20:52:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodeById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodeById.json index 4ec0d5e84d8a..1453ab868461 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodeById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodeById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-request-id": [ - "893fc0e6-4637-4f4a-9aa1-130bd275c425" + "9f405ce8-f267-48fe-ba7b-b97961721fbb" ], "x-ms-correlation-request-id": [ - "893fc0e6-4637-4f4a-9aa1-130bd275c425" + "9f405ce8-f267-48fe-ba7b-b97961721fbb" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001041Z:893fc0e6-4637-4f4a-9aa1-130bd275c425" + "CENTRALUS:20151221T221045Z:9f405ce8-f267-48fe-ba7b-b97961721fbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:10:40 GMT" + "Mon, 21 Dec 2015 22:10:45 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-request-id": [ - "3757f397-b524-4f20-9db5-2e451fe1b600" + "10a59b21-3d77-45b0-aa2f-e0140e7a33d4" ], "x-ms-correlation-request-id": [ - "3757f397-b524-4f20-9db5-2e451fe1b600" + "10a59b21-3d77-45b0-aa2f-e0140e7a33d4" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001046Z:3757f397-b524-4f20-9db5-2e451fe1b600" + "CENTRALUS:20151221T221222Z:10a59b21-3d77-45b0-aa2f-e0140e7a33d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:10:46 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:42 GMT" + "Mon, 21 Dec 2015 22:10:45 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "718b28e5-027d-49a0-8fdd-fc6d90171ef1" + "c43db593-622b-4e1b-8c55-c180d7d20f20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "0ff1d037-ed90-4e63-a67a-cbf11695f38b" + "d4d11df8-ac69-4ab0-a43c-05cce54e9344" ], "x-ms-correlation-request-id": [ - "0ff1d037-ed90-4e63-a67a-cbf11695f38b" + "d4d11df8-ac69-4ab0-a43c-05cce54e9344" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001042Z:0ff1d037-ed90-4e63-a67a-cbf11695f38b" + "CENTRALUS:20151221T221046Z:d4d11df8-ac69-4ab0-a43c-05cce54e9344" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:10:41 GMT" + "Mon, 21 Dec 2015 22:10:46 GMT" ], "ETag": [ - "0x8D2EEE3889DB7DC" + "0x8D30A539318CEEC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:47 GMT" + "Mon, 21 Dec 2015 22:12:21 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "004b94f5-28f3-4922-8133-21c45cbf44fb" + "50553ae4-6da9-487c-a75b-3d8a895ffa10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-request-id": [ - "d1696a76-a4b8-4d21-a20d-1b3b08b33349" + "565c504b-d7cb-4908-a534-19b8614d22f2" ], "x-ms-correlation-request-id": [ - "d1696a76-a4b8-4d21-a20d-1b3b08b33349" + "565c504b-d7cb-4908-a534-19b8614d22f2" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001046Z:d1696a76-a4b8-4d21-a20d-1b3b08b33349" + "CENTRALUS:20151221T221223Z:565c504b-d7cb-4908-a534-19b8614d22f2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:10:45 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "ETag": [ - "0x8D2EEE38B44263E" + "0x8D30A53CC745D42" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "8e7d4c4b-8246-42a5-9c7d-da0400b7d901" + "a14fda1d-e2ff-42b2-8322-3fb57aa2e238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "7bd2dc74-8f2e-4d2a-8455-dc29ee290f48" + "1dbddb91-dba3-41f8-93be-33e5d9d86098" ], "x-ms-correlation-request-id": [ - "7bd2dc74-8f2e-4d2a-8455-dc29ee290f48" + "1dbddb91-dba3-41f8-93be-33e5d9d86098" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001042Z:7bd2dc74-8f2e-4d2a-8455-dc29ee290f48" + "CENTRALUS:20151221T221047Z:1dbddb91-dba3-41f8-93be-33e5d9d86098" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:10:41 GMT" + "Mon, 21 Dec 2015 22:10:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,358 @@ "no-cache" ], "request-id": [ - "3d655b88-d18b-47ee-a6fd-7e32ec389099" + "eaab19f9-663d-40de-95ac-ed89319f29e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "62186f1e-5c39-4401-b36c-3d998de869b7" + "8f29acec-dcc9-4dc3-a2a3-7700ba2aa59f" ], "x-ms-correlation-request-id": [ - "62186f1e-5c39-4401-b36c-3d998de869b7" + "8f29acec-dcc9-4dc3-a2a3-7700ba2aa59f" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001047Z:62186f1e-5c39-4401-b36c-3d998de869b7" + "CENTRALUS:20151221T221223Z:8f29acec-dcc9-4dc3-a2a3-7700ba2aa59f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:10:47 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b5f263de-1778-4fff-84f4-c3b3b4760cea" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:10:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "173497b1-b526-44c7-b6a1-675bdeefdeb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b5f263de-1778-4fff-84f4-c3b3b4760cea" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:10:46 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bf53d0bb-1add-4d72-abd5-a963625f9ded" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:10:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d4166032-91cf-4cd4-a939-45021b90950c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "bf53d0bb-1add-4d72-abd5-a963625f9ded" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:10:46 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4f885ea5-1731-4951-9945-47dfbc694195" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:10:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7aae5a65-81d9-4e53-b196-ba1c5ead65b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4f885ea5-1731-4951-9945-47dfbc694195" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:10:51 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "081ba456-b1fb-421d-9cbc-b7c3aafb6b94" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:10:57 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "05143f6a-c9ef-46cb-8b49-90fe1fa0924e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "081ba456-b1fb-421d-9cbc-b7c3aafb6b94" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:10:56 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8a21b6f1-5321-4164-8466-84e59c3ae3bb" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:11:02 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "457d4cf7-44fb-4480-a692-699f8b95ac64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8a21b6f1-5321-4164-8466-84e59c3ae3bb" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:11:01 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "813d0d99-af5a-4cb0-8e64-c56c14c64458" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:11:08 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3359766e-52d6-4202-99d0-d986d11dadfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "813d0d99-af5a-4cb0-8e64-c56c14c64458" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:11:06 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +667,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "45ca719b-08ea-4a5b-b62d-a0a480a873a1" + "d1580ff1-0226-4c30-aa6f-9945fd7259c3" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:42 GMT" + "Mon, 21 Dec 2015 22:11:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE23EB476C7\",\r\n \"lastModified\": \"2015-11-17T00:01:29.4695111Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T00:02:39.7521537Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:01:29 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c36a9893-28f3-4fa6-add6-673c801fd22b" + "b782cf1c-b8c7-491e-bc4f-4b39ad0f1e75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "45ca719b-08ea-4a5b-b62d-a0a480a873a1" + "d1580ff1-0226-4c30-aa6f-9945fd7259c3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:43 GMT" + "Mon, 21 Dec 2015 22:11:11 GMT" ], "ETag": [ - "0x8D2EEE23EB476C7" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +722,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "52040462-8cfd-4a7c-a51f-4cbb6302ee35" + "48e0335b-49a8-416d-b758-de88e2de0cee" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:42 GMT" + "Mon, 21 Dec 2015 22:11:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE23EB476C7\",\r\n \"lastModified\": \"2015-11-17T00:01:29.4695111Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T00:02:39.7521537Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:01:29 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "59a6c4e4-7f31-4d7c-9075-3e463e77ff8a" + "0a602034-7d55-406f-875d-bb6cd7360efc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "52040462-8cfd-4a7c-a51f-4cbb6302ee35" + "48e0335b-49a8-416d-b758-de88e2de0cee" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:43 GMT" + "Mon, 21 Dec 2015 22:11:16 GMT" ], "ETag": [ - "0x8D2EEE23EB476C7" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +777,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6ed449ee-b24b-472a-bc84-a679ded1ccd1" + "d6326c05-959b-4443-a7e9-93a4ac00d216" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:48 GMT" + "Mon, 21 Dec 2015 22:11:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cfaf5080-ed21-4574-af87-8ab8b675af3e" + "e82e0edc-d80f-4acb-885d-03e3041e0d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6ed449ee-b24b-472a-bc84-a679ded1ccd1" + "d6326c05-959b-4443-a7e9-93a4ac00d216" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:11:22 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,53 +832,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f09fce9d-830a-4cb2-85f7-cd0befbedbf9" + "80fc18e9-a826-4cd1-b112-e7c579e089a7" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:53 GMT" + "Mon, 21 Dec 2015 22:11:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "72a1841b-9256-4d46-ab3d-7486eab7ac07" + "ffc05cb4-7b9b-482d-a1f4-dc819842307a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f09fce9d-830a-4cb2-85f7-cd0befbedbf9" + "80fc18e9-a826-4cd1-b112-e7c579e089a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:54 GMT" + "Mon, 21 Dec 2015 22:11:26 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,53 +887,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "47a65cdf-aca0-4822-a127-eaa85ab51f23" + "9aa844d3-8c29-4be2-99fa-35d5170e9c96" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:58 GMT" + "Mon, 21 Dec 2015 22:11:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6c0d6a6c-465e-4b05-b6ca-8acf7fd9972d" + "b99a376b-069e-49eb-a329-772512b1c178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "47a65cdf-aca0-4822-a127-eaa85ab51f23" + "9aa844d3-8c29-4be2-99fa-35d5170e9c96" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:59 GMT" + "Mon, 21 Dec 2015 22:11:32 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,53 +942,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01269b96-ef97-49ff-8c98-b70ad9affae2" + "88aa2cd7-3fa9-4efb-8335-2c369a2f5abb" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:03 GMT" + "Mon, 21 Dec 2015 22:11:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b9a21e67-6e80-44ac-a26a-537667b8d725" + "f819fd9e-5a0c-4236-95cd-3fda09ac15b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "01269b96-ef97-49ff-8c98-b70ad9affae2" + "88aa2cd7-3fa9-4efb-8335-2c369a2f5abb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:05 GMT" + "Mon, 21 Dec 2015 22:11:37 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,53 +997,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7a913778-f052-49a6-8dec-b237c2363909" + "9666fe2f-6f5b-4a5f-9a09-2c7f8d13972f" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:09 GMT" + "Mon, 21 Dec 2015 22:11:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "085857b9-2601-427c-b9e1-0e60a3972f51" + "c7d1d964-e1aa-4797-80b7-4254fa604765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7a913778-f052-49a6-8dec-b237c2363909" + "9666fe2f-6f5b-4a5f-9a09-2c7f8d13972f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:10 GMT" + "Mon, 21 Dec 2015 22:11:42 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,53 +1052,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1514257f-3ea6-49f6-a2b3-3f1941bb5037" + "635ec36e-3b7f-4c19-8ffc-d82866dac0e7" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:14 GMT" + "Mon, 21 Dec 2015 22:11:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fcc2453c-a86f-41f1-b072-886aa3a1f962" + "68cb5d29-32f3-49cb-a8fc-4270aa70c122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1514257f-3ea6-49f6-a2b3-3f1941bb5037" + "635ec36e-3b7f-4c19-8ffc-d82866dac0e7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:14 GMT" + "Mon, 21 Dec 2015 22:11:47 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -777,53 +1107,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "53206000-5265-4c6d-9f72-1490cafa8f2e" + "cc8c8f96-dc9b-42e8-9f26-afae309b6b4d" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:19 GMT" + "Mon, 21 Dec 2015 22:11:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3fc5d3e6-64d8-43d9-92d7-c1b5267a703e" + "4569046e-6370-409b-b8c8-5ea2cac11b01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "53206000-5265-4c6d-9f72-1490cafa8f2e" + "cc8c8f96-dc9b-42e8-9f26-afae309b6b4d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:20 GMT" + "Mon, 21 Dec 2015 22:11:52 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -832,53 +1162,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4f93c6fd-96af-4c24-acb6-3a0ea512c915" + "85e59553-8d7e-407d-8946-615a960fef83" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:24 GMT" + "Mon, 21 Dec 2015 22:11:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7238c14f-3a6b-4e7f-87a8-e65c6ea2f540" + "3051b6ff-8d50-4658-a1c7-2a2fc04d0187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4f93c6fd-96af-4c24-acb6-3a0ea512c915" + "85e59553-8d7e-407d-8946-615a960fef83" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:25 GMT" + "Mon, 21 Dec 2015 22:11:57 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -887,53 +1217,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3edb5e34-8827-4d6d-a044-8bc045a1b005" + "f6d43e8d-fa29-40bc-a7ba-93dd4793088f" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:29 GMT" + "Mon, 21 Dec 2015 22:12:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fc57f34f-78e9-4035-b18f-3b3e1c178adb" + "c575ffe0-1ee7-467b-8df1-6272633bba89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3edb5e34-8827-4d6d-a044-8bc045a1b005" + "f6d43e8d-fa29-40bc-a7ba-93dd4793088f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:30 GMT" + "Mon, 21 Dec 2015 22:12:03 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -942,53 +1272,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c9ef9a30-34ea-4652-9913-3b7b93416219" + "49c8bf46-7543-40c3-bef2-100d11a08869" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:34 GMT" + "Mon, 21 Dec 2015 22:12:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "852985b9-162c-433f-8505-02958c878659" + "47f34f42-848c-4f68-b489-a9ebf16eb6f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c9ef9a30-34ea-4652-9913-3b7b93416219" + "49c8bf46-7543-40c3-bef2-100d11a08869" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:35 GMT" + "Mon, 21 Dec 2015 22:12:08 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -997,53 +1327,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "88f864c5-eac6-431c-aa42-a93ee7bee938" + "50125f74-6d66-4c9f-a24b-ed8b55edd2d2" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:39 GMT" + "Mon, 21 Dec 2015 22:12:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "672c6840-c4f9-4be1-bf02-c1d1853d6219" + "047dc13f-486a-450a-b3c4-ececedd1e256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "88f864c5-eac6-431c-aa42-a93ee7bee938" + "50125f74-6d66-4c9f-a24b-ed8b55edd2d2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:40 GMT" + "Mon, 21 Dec 2015 22:12:13 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1052,53 +1382,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b01925c6-b439-44b2-98c5-f59f5334c2de" + "a5038ac9-0273-4b5b-9475-a5d4783743d8" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:44 GMT" + "Mon, 21 Dec 2015 22:12:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A536117C6C5\",\r\n \"lastModified\": \"2015-12-21T22:09:21.6883397Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:12:14.3152495Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "324d8332-85b5-4fa5-b425-541d803c4323" + "27fd8277-d4a4-414b-866c-760ffb9e1384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b01925c6-b439-44b2-98c5-f59f5334c2de" + "a5038ac9-0273-4b5b-9475-a5d4783743d8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:45 GMT" + "Mon, 21 Dec 2015 22:12:18 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A536117C6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1107,53 +1437,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "948f5d44-3545-4afc-876f-c5c458f82abc" + "882fba11-c497-433d-b2c0-8ca7cd6e803a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:49 GMT" + "Mon, 21 Dec 2015 22:12:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "24b73984-b7f8-48dc-8a2a-20607308119a" + "c98ef773-6c16-4c57-af9c-04b2488c769a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "948f5d44-3545-4afc-876f-c5c458f82abc" + "882fba11-c497-433d-b2c0-8ca7cd6e803a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:50 GMT" + "Mon, 21 Dec 2015 22:12:25 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1162,53 +1492,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "16245311-4593-413a-8c09-28078d7d005c" + "012829cb-50e4-4867-8003-093bf11636a7" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:11:55 GMT" + "Mon, 21 Dec 2015 22:12:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b12d4ff9-7825-4381-bef9-313b86ec770d" + "fc88fda5-139a-4ac7-bba3-b5e551f5da01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "16245311-4593-413a-8c09-28078d7d005c" + "012829cb-50e4-4867-8003-093bf11636a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:11:55 GMT" + "Mon, 21 Dec 2015 22:12:30 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1217,53 +1547,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5662f98c-ed0a-47c6-b1c3-a75601a3c04f" + "e5500909-de6c-45a4-9c5c-1a4ee9e222d0" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:00 GMT" + "Mon, 21 Dec 2015 22:12:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0c67de8b-da80-4e9d-87ba-74282a411b82" + "c576f4ae-4d10-483a-a919-d9157d76b304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5662f98c-ed0a-47c6-b1c3-a75601a3c04f" + "e5500909-de6c-45a4-9c5c-1a4ee9e222d0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:01 GMT" + "Mon, 21 Dec 2015 22:12:35 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1272,53 +1602,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a7d06e66-793f-424e-a6ac-5ee1ee212565" + "0548040b-c6a5-49d3-ac45-f2d5eab8e954" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:05 GMT" + "Mon, 21 Dec 2015 22:12:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ecf75ce5-a513-465f-b27c-7a7ae846ab4e" + "e789267f-7727-4baa-a2e9-f83ce5c9a73d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a7d06e66-793f-424e-a6ac-5ee1ee212565" + "0548040b-c6a5-49d3-ac45-f2d5eab8e954" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:05 GMT" + "Mon, 21 Dec 2015 22:12:40 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1327,53 +1657,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9edf0e5d-8d6e-4a42-8ead-4b0bb09d55e7" + "9d882e50-8c54-4c41-b749-5374f7c95802" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:10 GMT" + "Mon, 21 Dec 2015 22:12:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "096cf1c9-cce0-41ac-9a31-9b41d423a8b2" + "02d8c11a-a795-4eba-96a0-43796950a4ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9edf0e5d-8d6e-4a42-8ead-4b0bb09d55e7" + "9d882e50-8c54-4c41-b749-5374f7c95802" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:11 GMT" + "Mon, 21 Dec 2015 22:12:45 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1382,53 +1712,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e2786a9e-d56d-4737-8398-aea1d7fc1489" + "13212610-a795-40be-bfea-cbd34aede2f3" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:15 GMT" + "Mon, 21 Dec 2015 22:12:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a208d514-f2cb-45d5-876a-ef71b9b006ea" + "5cf56b77-f73b-4ecb-adee-d95c431ebe86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e2786a9e-d56d-4737-8398-aea1d7fc1489" + "13212610-a795-40be-bfea-cbd34aede2f3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:16 GMT" + "Mon, 21 Dec 2015 22:12:50 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1437,53 +1767,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c58131d3-3e89-42c2-acfd-72826135fe79" + "659d7dde-5a61-40f4-94fd-a25c15a93de6" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:20 GMT" + "Mon, 21 Dec 2015 22:12:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3f5abd82-1986-454b-9411-dd7ec8242b32" + "3d78ad2f-df1b-41c3-aba4-508a4abfe5f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c58131d3-3e89-42c2-acfd-72826135fe79" + "659d7dde-5a61-40f4-94fd-a25c15a93de6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:21 GMT" + "Mon, 21 Dec 2015 22:12:55 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1492,53 +1822,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f88f860d-7d51-4de4-9439-b87b4cca502a" + "5d56b1a5-7585-4528-aaf7-6639aacc6fda" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:25 GMT" + "Mon, 21 Dec 2015 22:13:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8b87a96e-3534-47ce-9c7d-6f15ffbc2044" + "cd3ffd02-b0be-43ec-8a86-e7185ce3e5af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f88f860d-7d51-4de4-9439-b87b4cca502a" + "5d56b1a5-7585-4528-aaf7-6639aacc6fda" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:26 GMT" + "Mon, 21 Dec 2015 22:13:01 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1547,53 +1877,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe87111e-d3ff-460e-83fe-6e4ab3cbf487" + "6973b367-c74b-47c4-a7f4-49c2cb597e87" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:30 GMT" + "Mon, 21 Dec 2015 22:13:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7a95d21e-a508-453b-b314-751a626c3a1f" + "7cf7ced7-851f-4f42-91f2-6b6af6dd960d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fe87111e-d3ff-460e-83fe-6e4ab3cbf487" + "6973b367-c74b-47c4-a7f4-49c2cb597e87" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:31 GMT" + "Mon, 21 Dec 2015 22:13:05 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,53 +1932,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b0e04edd-e477-4758-aeda-1b4206ffc4ef" + "74118778-c626-40fc-a650-48dcb4ff696b" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:35 GMT" + "Mon, 21 Dec 2015 22:13:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5daa66ff-b545-44c8-b818-f9c87437152e" + "5c546c40-22f5-47bf-882c-21b83d614d36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b0e04edd-e477-4758-aeda-1b4206ffc4ef" + "74118778-c626-40fc-a650-48dcb4ff696b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:36 GMT" + "Mon, 21 Dec 2015 22:13:11 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1657,53 +1987,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cca78d09-7922-47f0-8182-d76bb804b77a" + "581d71c8-b01c-4cce-991d-a45366942f63" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:40 GMT" + "Mon, 21 Dec 2015 22:13:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2baca3b0-19ed-473b-9138-aab2bc0b94f5" + "aee1170e-a8c4-4415-b92e-a7d00fec99a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cca78d09-7922-47f0-8182-d76bb804b77a" + "581d71c8-b01c-4cce-991d-a45366942f63" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:42 GMT" + "Mon, 21 Dec 2015 22:13:16 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1712,53 +2042,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "72542331-f9dd-4862-963a-7b1cd72fdd47" + "cc44713a-9639-46e4-b129-c6f52eded77a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:46 GMT" + "Mon, 21 Dec 2015 22:13:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4e7595c7-84d0-43f4-9d33-3ec2642dab59" + "7305cfda-66e3-4012-af87-a88bd15f202b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "72542331-f9dd-4862-963a-7b1cd72fdd47" + "cc44713a-9639-46e4-b129-c6f52eded77a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:46 GMT" + "Mon, 21 Dec 2015 22:13:21 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1767,53 +2097,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3face32c-c14c-4d13-a7ce-0ef28d8358b9" + "ebd31059-6d2b-4b9c-9b1e-8c6a5af7ffd5" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:51 GMT" + "Mon, 21 Dec 2015 22:13:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f129f20-136e-470e-a430-578b71fe3ab0" + "59e256d6-c2a8-4ca8-9776-379426ed2473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3face32c-c14c-4d13-a7ce-0ef28d8358b9" + "ebd31059-6d2b-4b9c-9b1e-8c6a5af7ffd5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:52 GMT" + "Mon, 21 Dec 2015 22:13:26 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1822,53 +2152,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ec37e3cf-cb28-42dc-846e-a3a5ad5cb772" + "ce888fc6-3d95-4830-8892-8829cdfd7597" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:12:56 GMT" + "Mon, 21 Dec 2015 22:13:32 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "13f4b2ca-ba5f-4dac-bafb-8ce4009e6188" + "4fb4a715-8b53-4ef8-9bb0-4fce7590b391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ec37e3cf-cb28-42dc-846e-a3a5ad5cb772" + "ce888fc6-3d95-4830-8892-8829cdfd7597" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:12:57 GMT" + "Mon, 21 Dec 2015 22:13:31 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1877,53 +2207,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "88851c6b-097c-4428-902e-fc0aa067e619" + "f4d9c587-ea61-4813-a006-f437a35bdc9a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:13:01 GMT" + "Mon, 21 Dec 2015 22:13:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "47e18572-ed19-4aee-9e9f-cde75a293134" + "a005c9c6-efc2-498d-915f-21698bcdae21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "88851c6b-097c-4428-902e-fc0aa067e619" + "f4d9c587-ea61-4813-a006-f437a35bdc9a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:13:02 GMT" + "Mon, 21 Dec 2015 22:13:36 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1932,53 +2262,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "188e6156-75cf-4701-a3c9-fc2afe8a6e25" + "5a113438-e6df-4513-9391-b17b003e1b70" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:13:06 GMT" + "Mon, 21 Dec 2015 22:13:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "379c7e15-9c47-4a19-b0c6-9004ad86dbc0" + "3f2b17d3-4079-4a12-b305-48ebbd357af2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "188e6156-75cf-4701-a3c9-fc2afe8a6e25" + "5a113438-e6df-4513-9391-b17b003e1b70" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:13:06 GMT" + "Mon, 21 Dec 2015 22:13:41 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1987,53 +2317,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "78a97cee-d582-41bd-9c52-38e75da028ed" + "824e408c-15b7-472b-8a14-4ef6dc034f3f" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:13:11 GMT" + "Mon, 21 Dec 2015 22:13:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE38C420D22\",\r\n \"lastModified\": \"2015-11-17T00:10:49.0787106Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T00:13:13.1228232Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9842f613-7e05-4331-85ee-1d275373d314" + "3221df35-b301-463d-aeed-4c4f2d892f0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "78a97cee-d582-41bd-9c52-38e75da028ed" + "824e408c-15b7-472b-8a14-4ef6dc034f3f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:13:12 GMT" + "Mon, 21 Dec 2015 22:13:46 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2042,47 +2372,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "07e72ecc-a6e6-4d7f-a43a-708148b21d39" + "446ffded-0a2c-4e27-9a6c-8e75bca225ec" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:42 GMT" + "Mon, 21 Dec 2015 22:13:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_16-20151116t235725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_16-20151116t235725z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T00:00:25.5987691Z\",\r\n \"lastBootTime\": \"2015-11-17T00:00:25.5007673Z\",\r\n \"allocationTime\": \"2015-11-16T23:57:25.3453718Z\",\r\n \"ipAddress\": \"100.116.142.161\",\r\n \"affinityId\": \"TVM:tvm-1783593343_16-20151116t235725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T00:00:25.6977713Z\",\r\n \"endTime\": \"2015-11-17T00:00:27.1278087Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_17-20151117t000235z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_17-20151117t000235z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T00:05:35.6105772Z\",\r\n \"lastBootTime\": \"2015-11-17T00:05:35.4615742Z\",\r\n \"allocationTime\": \"2015-11-17T00:02:35.2944188Z\",\r\n \"ipAddress\": \"100.116.200.131\",\r\n \"affinityId\": \"TVM:tvm-1783593343_17-20151117t000235z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T00:05:35.7038595Z\",\r\n \"endTime\": \"2015-11-17T00:05:36.9496033Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_9-20151116t230350z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_9-20151116t230350z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-16T23:06:45.2813661Z\",\r\n \"lastBootTime\": \"2015-11-16T23:06:45.081531Z\",\r\n \"allocationTime\": \"2015-11-16T23:03:50.7562084Z\",\r\n \"ipAddress\": \"100.116.198.68\",\r\n \"affinityId\": \"TVM:tvm-1783593343_9-20151116t230350z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-16T23:06:45.4593669Z\",\r\n \"endTime\": \"2015-11-16T23:06:46.9579627Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:12:22 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5c563f82-f2fa-4bfd-842d-1122ce168002" + "879c102f-f3d6-4e79-9422-edfb6091dc44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "07e72ecc-a6e6-4d7f-a43a-708148b21d39" + "446ffded-0a2c-4e27-9a6c-8e75bca225ec" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:43 GMT" + "Mon, 21 Dec 2015 22:13:51 GMT" + ], + "ETag": [ + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2091,47 +2427,163 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_16-20151116t235725z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE2LTIwMTUxMTE2dDIzNTcyNXo/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "110ef97c-b8c0-4099-aa9c-aed69df0fca3" + "2a21e2fc-50f5-4b77-86e0-11366ed7a923" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:43 GMT" + "Mon, 21 Dec 2015 22:13:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_16-20151116t235725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_16-20151116t235725z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T00:00:25.5987691Z\",\r\n \"lastBootTime\": \"2015-11-17T00:00:25.5007673Z\",\r\n \"allocationTime\": \"2015-11-16T23:57:25.3453718Z\",\r\n \"ipAddress\": \"100.116.142.161\",\r\n \"affinityId\": \"TVM:tvm-1783593343_16-20151116t235725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T00:00:25.6977713Z\",\r\n \"endTime\": \"2015-11-17T00:00:27.1278087Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:12:22 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "99995285-0901-4065-85f6-f7a233aaa2c3" + "77041d1c-8649-4d3e-9e7d-9463f930b913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "110ef97c-b8c0-4099-aa9c-aed69df0fca3" + "2a21e2fc-50f5-4b77-86e0-11366ed7a923" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:43 GMT" + "Mon, 21 Dec 2015 22:13:56 GMT" + ], + "ETag": [ + "0x8D30A53CCC5CF9D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8e90d80d-cda4-4457-9920-1bd611647684" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:14:03 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:12:22 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e35dadfe-4d27-4c97-b296-9a5536ca29de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8e90d80d-cda4-4457-9920-1bd611647684" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:14:02 GMT" + ], + "ETag": [ + "0x8D30A53CCC5CF9D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2a40ed6e-2929-41a3-ae52-52da7b718434" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:14:08 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A53CCC5CF9D\",\r\n \"lastModified\": \"2015-12-21T22:12:22.3451037Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:14:05.5145072Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:12:22 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b566f5dd-7606-4854-9155-1a1a7d51fd89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2a40ed6e-2929-41a3-ae52-52da7b718434" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:14:06 GMT" + ], + "ETag": [ + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2140,10 +2592,108 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?removenodes&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3JlbW92ZW5vZGVzJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4f97321a-6a60-4cc6-a099-fafc00374108" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:12:19 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:09:56.0213109Z\",\r\n \"lastBootTime\": \"2015-12-21T22:09:55.9223125Z\",\r\n \"allocationTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"ipAddress\": \"10.74.152.118\",\r\n \"affinityId\": \"TVM:tvm-1783593343_43-20151221t220725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T22:09:56.1083122Z\",\r\n \"endTime\": \"2015-12-21T22:09:57.896327Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_44-20151221t220725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_44-20151221t220725z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:09:58.9249996Z\",\r\n \"lastBootTime\": \"2015-12-21T22:09:58.6859947Z\",\r\n \"allocationTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"ipAddress\": \"10.74.164.69\",\r\n \"affinityId\": \"TVM:tvm-1783593343_44-20151221t220725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T22:09:59.1980062Z\",\r\n \"endTime\": \"2015-12-21T22:10:00.6290435Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b972de5a-87d4-4326-a2dc-e2227e0ec662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4f97321a-6a60-4cc6-a099-fafc00374108" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:12:18 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_43-20151221t220725z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQzLTIwMTUxMjIxdDIyMDcyNXo/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b257d6f8-ed1a-4d7f-95e8-0fe8a41a7429" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:12:19 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "10169cf2-fc7c-481c-b946-0259b7f1a726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b257d6f8-ed1a-4d7f-95e8-0fe8a41a7429" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:12:18 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?removenodes&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3JlbW92ZW5vZGVzJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-1783593343_16-20151116t235725z\"\r\n ],\r\n \"resizeTimeout\": \"PT8M\",\r\n \"nodeDeallocationOption\": \"terminate\"\r\n}", + "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-1783593343_43-20151221t220725z\"\r\n ],\r\n \"resizeTimeout\": \"PT8M\",\r\n \"nodeDeallocationOption\": \"terminate\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -2152,35 +2702,35 @@ "138" ], "client-request-id": [ - "6cbf36b0-a368-4dbe-ac9f-e18574c6a45a" + "a02d1ac7-6c77-498d-81a9-18585300b4a5" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:46 GMT" + "Mon, 21 Dec 2015 22:12:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "24b716b7-f310-49c5-ac9d-6355f7a94d61" + "03aaa918-d3f5-4e82-8093-80b7a6776076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6cbf36b0-a368-4dbe-ac9f-e18574c6a45a" + "a02d1ac7-6c77-498d-81a9-18585300b4a5" ], "DataServiceVersion": [ "3.0" @@ -2189,10 +2739,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 17 Nov 2015 00:10:48 GMT" + "Mon, 21 Dec 2015 22:12:22 GMT" ], "ETag": [ - "0x8D2EEE38C420D22" + "0x8D30A53CCC5CF9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2201,26 +2751,75 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_16-20151116t235725z'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzE2LTIwMTUxMTE2dDIzNTcyNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_43-20151221t220725z'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQzLTIwMTUxMjIxdDIyMDcyNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1ee91ae5-c6b6-435c-b114-fba7608b484c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:12:23 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d245d466-ba1f-4c68-81eb-0002950b6da9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1ee91ae5-c6b6-435c-b114-fba7608b484c" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:12:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_43-20151221t220725z'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQzLTIwMTUxMjIxdDIyMDcyNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4d53018c-2a46-4296-b78d-8d077bb81e28" + "98626c73-ecf7-4c37-9b85-299e06ff6307" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:47 GMT" + "Mon, 21 Dec 2015 22:12:25 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_16-20151116t235725z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -2229,19 +2828,19 @@ "chunked" ], "request-id": [ - "5255948f-72ed-4986-bc6a-66c1d178f46b" + "83ece8a4-32e6-40a0-94a7-5087de6e0eb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4d53018c-2a46-4296-b78d-8d077bb81e28" + "98626c73-ecf7-4c37-9b85-299e06ff6307" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:48 GMT" + "Mon, 21 Dec 2015 22:12:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2250,26 +2849,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_16-20151116t235725z'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzE2LTIwMTUxMTE2dDIzNTcyNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_43-20151221t220725z'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQzLTIwMTUxMjIxdDIyMDcyNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bcca1d3f-3670-4ee4-8e8d-2156837eff77" + "f8c8843c-f4a7-4375-881a-506f470a1bce" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:10:48 GMT" + "Mon, 21 Dec 2015 22:12:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_16-20151116t235725z\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -2278,19 +2877,19 @@ "chunked" ], "request-id": [ - "ae0682d4-73e7-4abc-bfd2-a479865ebc32" + "cf457c0f-bc1a-4664-9327-740c5e735aed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bcca1d3f-3670-4ee4-8e8d-2156837eff77" + "f8c8843c-f4a7-4375-881a-506f470a1bce" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:10:49 GMT" + "Mon, 21 Dec 2015 22:12:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2299,10 +2898,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 3\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 4\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -2311,35 +2910,35 @@ "28" ], "client-request-id": [ - "ece48e2c-180f-470a-9aa1-e3e1390e21ee" + "fdb7c61e-f1f3-437b-96af-768c7c5ab69e" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:13:11 GMT" + "Mon, 21 Dec 2015 22:14:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 00:13:13 GMT" + "Mon, 21 Dec 2015 22:14:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3c2a2f31-5db7-4013-95b4-e1c62fb1bde2" + "06dd1205-67ad-44d2-b701-31e447f73b58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ece48e2c-180f-470a-9aa1-e3e1390e21ee" + "fdb7c61e-f1f3-437b-96af-768c7c5ab69e" ], "DataServiceVersion": [ "3.0" @@ -2348,10 +2947,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 17 Nov 2015 00:13:12 GMT" + "Mon, 21 Dec 2015 22:14:07 GMT" ], "ETag": [ - "0x8D2EEE3E282C866" + "0x8D30A540B59213E" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodePipeline.json index f41a70c79421..c809802c1ecc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "ebba9092-c2ce-49ec-bb36-d018cff7dc6f" + "13871c6c-71ed-42dd-b646-b610f987e0e9" ], "x-ms-correlation-request-id": [ - "ebba9092-c2ce-49ec-bb36-d018cff7dc6f" + "13871c6c-71ed-42dd-b646-b610f987e0e9" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001507Z:ebba9092-c2ce-49ec-bb36-d018cff7dc6f" + "WESTUS:20151221T205658Z:13871c6c-71ed-42dd-b646-b610f987e0e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:15:07 GMT" + "Mon, 21 Dec 2015 20:56:57 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "b5101f3f-9958-4f87-b098-1648988fa5e0" + "4eccf68b-beed-4741-88bf-29c7abce7b9f" ], "x-ms-correlation-request-id": [ - "b5101f3f-9958-4f87-b098-1648988fa5e0" + "4eccf68b-beed-4741-88bf-29c7abce7b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001513Z:b5101f3f-9958-4f87-b098-1648988fa5e0" + "WESTUS:20151221T205810Z:4eccf68b-beed-4741-88bf-29c7abce7b9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:15:13 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:56:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "039e7a09-f7f9-46f7-aee0-04689d83eb2a" + "5f1841a4-f40c-466c-9cf5-1c29ee311b6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14996" ], "x-ms-request-id": [ - "808bcef5-4e17-47ec-a3cc-afda2a256a32" + "c179e249-2b91-40f9-8dfb-9bc7260d742d" ], "x-ms-correlation-request-id": [ - "808bcef5-4e17-47ec-a3cc-afda2a256a32" + "c179e249-2b91-40f9-8dfb-9bc7260d742d" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001509Z:808bcef5-4e17-47ec-a3cc-afda2a256a32" + "WESTUS:20151221T205659Z:c179e249-2b91-40f9-8dfb-9bc7260d742d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:15:08 GMT" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "ETag": [ - "0x8D2EEE427B4B2B1" + "0x8D30A49443B4361" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:14 GMT" + "Mon, 21 Dec 2015 20:58:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "18519f34-99c2-4bf1-849b-7055386399f6" + "13a3a4b2-77c4-476b-94ad-0527a97be410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14995" ], "x-ms-request-id": [ - "8331dae5-266e-41c4-8450-2df36dafdb18" + "e76c3372-4658-4a1d-b7e4-4beca2b54e51" ], "x-ms-correlation-request-id": [ - "8331dae5-266e-41c4-8450-2df36dafdb18" + "e76c3372-4658-4a1d-b7e4-4beca2b54e51" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001513Z:8331dae5-266e-41c4-8450-2df36dafdb18" + "WESTUS:20151221T205810Z:e76c3372-4658-4a1d-b7e4-4beca2b54e51" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:15:13 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "ETag": [ - "0x8D2EEE42A73C715" + "0x8D30A496EB0A2BC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "5b18ed67-e61f-42d6-aec7-a90c018cc918" + "8995b636-8cc2-45d9-add0-4a8ca79e3165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "01cb03bd-d5b7-4751-8e8a-00b91d300599" + "836bdab4-e503-4994-aaa6-0aa0d93e1c1f" ], "x-ms-correlation-request-id": [ - "01cb03bd-d5b7-4751-8e8a-00b91d300599" + "836bdab4-e503-4994-aaa6-0aa0d93e1c1f" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001509Z:01cb03bd-d5b7-4751-8e8a-00b91d300599" + "WESTUS:20151221T205659Z:836bdab4-e503-4994-aaa6-0aa0d93e1c1f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:15:08 GMT" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "71516fa9-3166-4125-88a3-aeb022644cd6" + "4c2eac62-843f-4c31-8716-0b518614f15b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "6a6d6e4b-bd9c-477d-a257-05b2655e318e" + "ccf7fca2-23ec-4829-acec-c19bd91eb47b" ], "x-ms-correlation-request-id": [ - "6a6d6e4b-bd9c-477d-a257-05b2655e318e" + "ccf7fca2-23ec-4829-acec-c19bd91eb47b" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T001514Z:6a6d6e4b-bd9c-477d-a257-05b2655e318e" + "WESTUS:20151221T205811Z:ccf7fca2-23ec-4829-acec-c19bd91eb47b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:15:13 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ceb983c1-cadf-4689-8eed-ebe77cce6a1f" + "54f08218-0a1a-4793-ab19-abb6b0bee7c0" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE3E282C866\",\r\n \"lastModified\": \"2015-11-17T00:13:13.7869926Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T00:14:23.7181738Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4920B065B3\",\r\n \"lastModified\": \"2015-12-21T20:55:58.6693555Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:40:02.9356725Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:13:13 GMT" + "Mon, 21 Dec 2015 20:55:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cdd1017d-36ef-4350-9339-b91e52211796" + "d59d4cc9-b500-48f8-904e-789e5d1e5b55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ceb983c1-cadf-4689-8eed-ebe77cce6a1f" + "54f08218-0a1a-4793-ab19-abb6b0bee7c0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "ETag": [ - "0x8D2EEE3E282C866" + "0x8D30A4920B065B3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0ec45e72-eb14-40c5-961f-c8803339d126" + "5817ad68-df2f-4698-9294-c5760ac88e62" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:57:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE3E282C866\",\r\n \"lastModified\": \"2015-11-17T00:13:13.7869926Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T00:14:23.7181738Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4920B065B3\",\r\n \"lastModified\": \"2015-12-21T20:55:58.6693555Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:40:02.9356725Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:13:13 GMT" + "Mon, 21 Dec 2015 20:55:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "efe6c7a2-650a-46aa-8093-8acade3e911f" + "2356735b-e38b-42e0-bf64-e1846f3e9cbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0ec45e72-eb14-40c5-961f-c8803339d126" + "5817ad68-df2f-4698-9294-c5760ac88e62" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "ETag": [ - "0x8D2EEE3E282C866" + "0x8D30A4920B065B3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a0794702-a9a3-41fc-846e-6e2064f8734a" + "0aa62dbc-af76-4e01-9809-ffbec86d435c" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:15 GMT" + "Mon, 21 Dec 2015 20:58:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "537ed367-e517-4e77-b418-47524e8ef873" + "5bd76a5b-ab69-4f01-b511-0d26c4fb35b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a0794702-a9a3-41fc-846e-6e2064f8734a" + "0aa62dbc-af76-4e01-9809-ffbec86d435c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:12 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,53 +502,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b49b27d1-c124-4285-84dc-0917e2393c1a" + "665b4623-5794-4501-ba0c-9b46d53dea9a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:20 GMT" + "Mon, 21 Dec 2015 20:58:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d32a999c-df45-4f7e-ab70-a3d75ef1ca58" + "7ad22afa-6b7f-44f4-9534-a6b73dc6cf41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b49b27d1-c124-4285-84dc-0917e2393c1a" + "665b4623-5794-4501-ba0c-9b46d53dea9a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:21 GMT" + "Mon, 21 Dec 2015 20:58:17 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,53 +557,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3f1becab-f439-44c9-a766-b6702b863913" + "c7be457a-1b65-4cb3-a06f-2d98ea1dc4e1" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:26 GMT" + "Mon, 21 Dec 2015 20:58:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "50187750-26da-4165-8094-44ed4b88b047" + "422d2bb2-5f78-41bd-98c5-406a78a22f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3f1becab-f439-44c9-a766-b6702b863913" + "c7be457a-1b65-4cb3-a06f-2d98ea1dc4e1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:25 GMT" + "Mon, 21 Dec 2015 20:58:23 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,53 +612,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4940b53a-2eda-4213-b6f3-30af6b0b8c25" + "1ac25be4-27b6-4cd5-9a09-d526d183f436" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:31 GMT" + "Mon, 21 Dec 2015 20:58:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "499c5b99-6dde-49f7-82f9-47ebb41e3cb5" + "055d8fb0-8e9c-4db7-b9fb-44d9bb4648c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4940b53a-2eda-4213-b6f3-30af6b0b8c25" + "1ac25be4-27b6-4cd5-9a09-d526d183f436" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:31 GMT" + "Mon, 21 Dec 2015 20:58:28 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,53 +667,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0905d378-6dde-4c49-a6e0-fa4a2b1fc381" + "352719dd-8854-4960-b877-c8d7d71cc5b9" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:36 GMT" + "Mon, 21 Dec 2015 20:58:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bf7647eb-f6b9-4c26-878c-0f8c26f4fa1c" + "11eb196f-8bfa-441d-bc2f-04f334bc770e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0905d378-6dde-4c49-a6e0-fa4a2b1fc381" + "352719dd-8854-4960-b877-c8d7d71cc5b9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:36 GMT" + "Mon, 21 Dec 2015 20:58:33 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,53 +722,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "06265ed8-3c89-4dad-9f76-ebf897e2ddae" + "54c162f6-e362-4a3f-92de-30bad0f8a800" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:41 GMT" + "Mon, 21 Dec 2015 20:58:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "aad501c3-4b02-426e-ba84-c4bc73f7a633" + "db6da9e3-49c4-49f7-b0aa-2dc6ce9216c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "06265ed8-3c89-4dad-9f76-ebf897e2ddae" + "54c162f6-e362-4a3f-92de-30bad0f8a800" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:41 GMT" + "Mon, 21 Dec 2015 20:58:38 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -777,53 +777,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5d922fe0-b3af-4270-b15e-20fdd3cbd9f0" + "dd8410cc-0ccb-49d4-a9cf-5efac1013d93" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:46 GMT" + "Mon, 21 Dec 2015 20:58:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d50ca7ff-9bdf-4011-9eec-87a11766bc2d" + "a0ba8b74-eb92-45c2-b445-bad62628b28c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5d922fe0-b3af-4270-b15e-20fdd3cbd9f0" + "dd8410cc-0ccb-49d4-a9cf-5efac1013d93" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:45 GMT" + "Mon, 21 Dec 2015 20:58:43 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -832,53 +832,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "248493ae-f0d3-4a37-b0c8-92dbb7c9d23a" + "51b4fa19-9eca-4d95-b62b-f8a091268181" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:51 GMT" + "Mon, 21 Dec 2015 20:58:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "32580d5a-ffff-43de-b73b-cce3cc4e586e" + "81f62481-117c-4316-ac23-126b817a5299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "248493ae-f0d3-4a37-b0c8-92dbb7c9d23a" + "51b4fa19-9eca-4d95-b62b-f8a091268181" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:51 GMT" + "Mon, 21 Dec 2015 20:58:48 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -887,53 +887,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "76b9bae5-5685-4c6b-be46-db11f8535f1b" + "d1d1607f-d205-42fc-ab20-8538763cb9b6" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:56 GMT" + "Mon, 21 Dec 2015 20:58:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53605b4f-22a6-4927-be88-afd7ed267906" + "50e4c2a7-78d4-4c6a-9298-d018f4feeda7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "76b9bae5-5685-4c6b-be46-db11f8535f1b" + "d1d1607f-d205-42fc-ab20-8538763cb9b6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:56 GMT" + "Mon, 21 Dec 2015 20:58:53 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -942,53 +942,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "47f208ac-a450-4caa-9d41-a814565ad4e8" + "ea1e8664-51fc-4ed7-8f6f-b5d5684a9a80" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:01 GMT" + "Mon, 21 Dec 2015 20:58:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9a93f5f8-efb3-4f70-a826-d52202a6f097" + "fbd9a408-d4b5-47a9-8bcc-6bb8cbaf91d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "47f208ac-a450-4caa-9d41-a814565ad4e8" + "ea1e8664-51fc-4ed7-8f6f-b5d5684a9a80" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:01 GMT" + "Mon, 21 Dec 2015 20:58:58 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -997,53 +997,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "051338a0-eda2-4d59-8869-6040a5e328fb" + "307e129c-9b7c-421a-8be3-33087ed5308e" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:06 GMT" + "Mon, 21 Dec 2015 20:59:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53ba3e09-1afc-4c1e-9f36-485933cc8f6a" + "2c5f41eb-f57d-4f04-b860-3065a560d2c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "051338a0-eda2-4d59-8869-6040a5e328fb" + "307e129c-9b7c-421a-8be3-33087ed5308e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:06 GMT" + "Mon, 21 Dec 2015 20:59:04 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1052,53 +1052,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a4f52f11-ac28-401b-814e-44d32c0c0fa2" + "075037ff-c079-4123-b992-4e2e7362b753" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:11 GMT" + "Mon, 21 Dec 2015 20:59:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "06febe00-72ae-49b9-9cdb-bed1bea6e694" + "379c1491-0274-4d4e-a9c3-664df4ecec64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a4f52f11-ac28-401b-814e-44d32c0c0fa2" + "075037ff-c079-4123-b992-4e2e7362b753" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:11 GMT" + "Mon, 21 Dec 2015 20:59:08 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1107,53 +1107,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1a54bc26-b858-40e9-87a6-a30f7ca5de69" + "ea1e3d58-deaf-408b-bef4-c296e5de8d29" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:17 GMT" + "Mon, 21 Dec 2015 20:59:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea126a41-8924-465e-ab39-92a54ff5d254" + "82009111-3173-4440-87f5-f274e20fafaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1a54bc26-b858-40e9-87a6-a30f7ca5de69" + "ea1e3d58-deaf-408b-bef4-c296e5de8d29" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:16 GMT" + "Mon, 21 Dec 2015 20:59:14 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1162,53 +1162,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f3d7462-22d7-4549-b5e0-5ef9c3611685" + "772642b7-cad0-4643-80b8-ffe2c513569b" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:22 GMT" + "Mon, 21 Dec 2015 20:59:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9a750a2c-d742-4d60-98da-a5884956b464" + "9c0f03cc-da1b-4423-b60c-99b15ffb8f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f3d7462-22d7-4549-b5e0-5ef9c3611685" + "772642b7-cad0-4643-80b8-ffe2c513569b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:22 GMT" + "Mon, 21 Dec 2015 20:59:19 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1217,53 +1217,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "148afb95-c0d0-467e-93a9-bbaf6781a860" + "a6984f12-6e9c-42a2-bbce-46a7d4b689bc" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:27 GMT" + "Mon, 21 Dec 2015 20:59:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7a51d8f3-1aea-4a54-99e9-b7a5b57dc936" + "9b6890bc-ab17-4b47-990a-edf662530b28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "148afb95-c0d0-467e-93a9-bbaf6781a860" + "a6984f12-6e9c-42a2-bbce-46a7d4b689bc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:26 GMT" + "Mon, 21 Dec 2015 20:59:24 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1272,53 +1272,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6ec8dd15-8497-4b68-9309-b7deb008d750" + "2e19e417-f290-4ff6-9977-8e6f3e39203e" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:32 GMT" + "Mon, 21 Dec 2015 20:59:29 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "515ae83c-3ccb-4936-80f7-4272ceb2612c" + "3147da61-ed94-44d5-b12d-c744ae90e3e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6ec8dd15-8497-4b68-9309-b7deb008d750" + "2e19e417-f290-4ff6-9977-8e6f3e39203e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:32 GMT" + "Mon, 21 Dec 2015 20:59:28 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1327,53 +1327,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d17fba04-a87a-45c7-bcf8-83e187290af5" + "044761f1-8f49-4b0e-b8c0-08987f613a20" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:37 GMT" + "Mon, 21 Dec 2015 20:59:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e2dc9a7e-ad30-4aed-8653-c4570636f74f" + "e3023814-3566-4e18-be6b-8a7a0719bf5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d17fba04-a87a-45c7-bcf8-83e187290af5" + "044761f1-8f49-4b0e-b8c0-08987f613a20" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:37 GMT" + "Mon, 21 Dec 2015 20:59:33 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1382,53 +1382,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3b5971c7-bfcb-41c4-9b2e-d562c0bfe35b" + "777e51ae-7b11-45ff-92e2-84fa7e7b3ee1" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:42 GMT" + "Mon, 21 Dec 2015 20:59:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b6502d7f-94f3-47ca-8627-a9dc6f002db2" + "abbe970f-fa40-43ce-ae30-8d39b5e468f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3b5971c7-bfcb-41c4-9b2e-d562c0bfe35b" + "777e51ae-7b11-45ff-92e2-84fa7e7b3ee1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:42 GMT" + "Mon, 21 Dec 2015 20:59:39 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1437,53 +1437,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "950b6080-33eb-43eb-900a-27b0a5f36780" + "aee7fd04-204d-43a9-addf-c7d09e247614" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:47 GMT" + "Mon, 21 Dec 2015 20:59:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e9e787fb-d96f-4cbc-84a5-5a3eaf21f46a" + "f28367c3-4624-419b-8073-630b5d56c2c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "950b6080-33eb-43eb-900a-27b0a5f36780" + "aee7fd04-204d-43a9-addf-c7d09e247614" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:47 GMT" + "Mon, 21 Dec 2015 20:59:44 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1492,53 +1492,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2d9e2c82-81a7-4645-8bd4-a6cde2433d22" + "f78bdd3f-5516-4d76-81b3-8bf57f9d73a9" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:52 GMT" + "Mon, 21 Dec 2015 20:59:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1ae363a3-3185-4a22-857e-ca96eefd420c" + "1fcaf041-6ad7-49e4-b5c8-c0d94e77915e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2d9e2c82-81a7-4645-8bd4-a6cde2433d22" + "f78bdd3f-5516-4d76-81b3-8bf57f9d73a9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:52 GMT" + "Mon, 21 Dec 2015 20:59:49 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1547,53 +1547,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "83036466-9647-413a-abdb-8536cef7458a" + "996ee330-4da4-43b0-8d94-02be94f2b478" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:16:57 GMT" + "Mon, 21 Dec 2015 20:59:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e5369cc3-de57-491e-bca6-1f26bf30c2ed" + "a3c1164c-39f1-440b-ab88-6f58b9008d51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "83036466-9647-413a-abdb-8536cef7458a" + "996ee330-4da4-43b0-8d94-02be94f2b478" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:16:58 GMT" + "Mon, 21 Dec 2015 20:59:55 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,53 +1602,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c84463de-2e2d-450e-9b6f-28586e17695d" + "ab670ce7-7c1d-4d1d-9b9d-29fdcbec8e2f" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:17:02 GMT" + "Mon, 21 Dec 2015 21:00:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A496F200BAF\",\r\n \"lastModified\": \"2015-12-21T20:58:10.2633391Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:59:55.9891713Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b452a68a-28a7-4016-996f-d82f238b7309" + "d61bad4a-1412-40aa-8c39-042409f84469" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c84463de-2e2d-450e-9b6f-28586e17695d" + "ab670ce7-7c1d-4d1d-9b9d-29fdcbec8e2f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:17:02 GMT" + "Mon, 21 Dec 2015 21:00:00 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1657,988 +1657,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e603bf72-a25a-4f1c-be50-d44cdaea521f" + "7e114afd-9566-4492-bc78-2d068ba71404" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:17:08 GMT" + "Mon, 21 Dec 2015 20:57:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:52:22.2650464Z\",\r\n \"lastBootTime\": \"2015-12-21T20:51:29.1357365Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:51:29.3884483Z\",\r\n \"endTime\": \"2015-12-21T20:51:32.0757456Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:22:33.7013965Z\",\r\n \"lastBootTime\": \"2015-12-21T20:22:33.6013972Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:22:33.7483976Z\",\r\n \"endTime\": \"2015-12-21T20:22:35.1954072Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "e714cc7a-f9f9-4755-bafa-c6f8ea500ae0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "e603bf72-a25a-4f1c-be50-d44cdaea521f" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:08 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "5ca4849d-661c-41f0-b2a6-730cd65ac94b" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:13 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "84a159dd-5fa1-4b73-86e7-1aad0399605f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "5ca4849d-661c-41f0-b2a6-730cd65ac94b" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:13 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "2e5f9901-1c41-4e0d-b3ad-d14b1aa12a6d" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:18 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "50e8d3dd-a6de-44d6-852f-1b59665af967" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "2e5f9901-1c41-4e0d-b3ad-d14b1aa12a6d" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:18 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "ae9d7e97-8931-4996-9d3f-f4c0f2202b90" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:23 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "01520d45-efc9-47af-bbb9-21367a285e09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "ae9d7e97-8931-4996-9d3f-f4c0f2202b90" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:23 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "3710cf82-6d2f-4f01-9e4f-eeba4d5a20ae" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:28 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "d3f34132-a669-4304-a1d1-704db8993da0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "3710cf82-6d2f-4f01-9e4f-eeba4d5a20ae" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:27 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "c0315fa0-581b-4792-a0da-e1d1ae987eba" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:33 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "86b08a12-447f-4599-a01b-b7980c8951e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "c0315fa0-581b-4792-a0da-e1d1ae987eba" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:33 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "1088503c-7346-40b3-a28a-9f92cd75ae57" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:38 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "53bbc11c-7144-4e3c-a619-6bc32c3401f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "1088503c-7346-40b3-a28a-9f92cd75ae57" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:38 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "11c056bf-fb02-4a7b-bec5-14434485e32a" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:43 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "690bf595-1b0f-4aa2-aba6-43b7eb6ef867" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "11c056bf-fb02-4a7b-bec5-14434485e32a" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:43 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "106536c6-82c7-45a2-ac7b-9355d8c98b9d" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:48 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "101bc049-2278-474d-b776-21a8e5bf2c7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "106536c6-82c7-45a2-ac7b-9355d8c98b9d" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:48 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "581e679b-0f40-4c66-a335-a90da4ce7f4e" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:54 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "cfa76320-e627-4a85-b553-cb9dc260cac6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "581e679b-0f40-4c66-a335-a90da4ce7f4e" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:53 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "0490155c-2c22-4cbd-9b91-aa91a99314e1" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:17:59 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "71e28f54-109e-468a-99b2-5d09f7abf6ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "0490155c-2c22-4cbd-9b91-aa91a99314e1" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:17:58 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "a82bcd9f-b5c5-4be7-850b-f153c954dd18" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:04 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "bb481e3e-11bc-4cda-9462-819b368c9fd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "a82bcd9f-b5c5-4be7-850b-f153c954dd18" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:18:03 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "0aa1c500-edeb-424e-a0de-8bde20ce220c" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:09 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "0f90b6b1-91b4-4971-921a-c14c25ea861c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "0aa1c500-edeb-424e-a0de-8bde20ce220c" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:18:09 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "933d59ce-48ef-4214-865a-ea32a73c25f7" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:14 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "4565b2d1-ea62-42f1-b346-7c9b5691d82a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "933d59ce-48ef-4214-865a-ea32a73c25f7" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:18:14 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "10286020-3a81-4144-94c4-6db32f96aa59" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:19 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3ce78f99-314d-4303-9c2d-247aa1c8e6ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "10286020-3a81-4144-94c4-6db32f96aa59" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:18:19 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "cefab48d-f69a-43d0-9c81-dc2efe2e2b70" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:24 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "e6627ea3-2412-4c26-a911-3c4efc961995" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "cefab48d-f69a-43d0-9c81-dc2efe2e2b70" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:18:24 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "2fefa6f5-8c69-4d5b-bc3d-59c6b636bdd0" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:29 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "ff83a0e3-31c2-4b80-b39e-b142b88ac1a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "2fefa6f5-8c69-4d5b-bc3d-59c6b636bdd0" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Nov 2015 00:18:29 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "ddc6ab5b-6505-4774-8636-6a6d2d09123c" - ], - "ocp-date": [ - "Tue, 17 Nov 2015 00:18:34 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bc3571db-5a05-438c-93bf-f0f3cf28677d" + "fca86785-7fe1-4c73-93a4-37598893d8d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ddc6ab5b-6505-4774-8636-6a6d2d09123c" + "7e114afd-9566-4492-bc78-2d068ba71404" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:18:34 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2647,53 +1706,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "457a6973-05b5-411c-a1ab-43a00fa8a2dc" + "d1dbafcd-a76f-4926-8957-9683c4806922" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:18:39 GMT" + "Mon, 21 Dec 2015 20:57:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8fc9886d-bfc8-42a9-81d6-213b3e19b6ac" + "840727e0-46f6-4bcc-a743-ea9abd4c39cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "457a6973-05b5-411c-a1ab-43a00fa8a2dc" + "d1dbafcd-a76f-4926-8957-9683c4806922" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:18:40 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:56:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2702,53 +1755,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9c2dad5e-38a6-436d-b7ee-e1f14fe924f7" + "41b89d48-a569-410f-9d6c-88459452435b" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:18:45 GMT" + "Mon, 21 Dec 2015 20:57:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ec0600d7-054b-408e-8721-b8feeec70517" + "fb987f6b-d12e-40cb-b6d3-c330e5f32d34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9c2dad5e-38a6-436d-b7ee-e1f14fe924f7" + "41b89d48-a569-410f-9d6c-88459452435b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:18:45 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2757,53 +1804,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "61cb133f-63a7-481a-8bed-42b859fc4737" + "72a24813-76d8-483d-8418-e1d4614bfcaf" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:18:50 GMT" + "Mon, 21 Dec 2015 20:57:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d59d991f-9ad6-43bb-989d-8b1611de7c14" + "917c63be-2405-412c-ada6-21c98cd29e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "61cb133f-63a7-481a-8bed-42b859fc4737" + "72a24813-76d8-483d-8418-e1d4614bfcaf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:18:50 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2812,53 +1853,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b6ea15c2-bcb8-4119-ac6e-daa66ec1c05d" + "b5a73e56-459d-4474-a796-8c96de044d7a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:18:55 GMT" + "Mon, 21 Dec 2015 20:57:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "47e0f27c-f038-4d6c-9711-ae0f74da7352" + "64e9db5e-ca50-4755-bbce-8c604cd53516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b6ea15c2-bcb8-4119-ac6e-daa66ec1c05d" + "b5a73e56-459d-4474-a796-8c96de044d7a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:18:54 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2867,53 +1902,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7bf6cf15-2ef9-42f6-b3db-caf12fac31bd" + "27ceab9a-1201-4f1c-b21d-fc07091f1956" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:00 GMT" + "Mon, 21 Dec 2015 20:57:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53a7e93d-c8cf-4a95-8319-3f194be107e4" + "4413de2a-034b-4afa-87dc-3230b9dfb1ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7bf6cf15-2ef9-42f6-b3db-caf12fac31bd" + "27ceab9a-1201-4f1c-b21d-fc07091f1956" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:18:59 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2922,53 +1951,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1b99e2d5-ace0-4135-9419-622fdf9992ba" + "0a419b8d-9931-4ff3-88dc-82ccd5865e39" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:05 GMT" + "Mon, 21 Dec 2015 20:57:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "839f2f18-46eb-4fe0-8459-5946ced6102c" + "24bd898b-5059-4c4a-b7ee-2c0730186df6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1b99e2d5-ace0-4135-9419-622fdf9992ba" + "0a419b8d-9931-4ff3-88dc-82ccd5865e39" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:05 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2977,53 +2000,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6e40b0d2-0b7b-43ff-b464-6ca49fcde8c9" + "0454425f-ea3a-44d2-87a6-2a785f178de8" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:10 GMT" + "Mon, 21 Dec 2015 20:57:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8d7224e7-86ec-4a40-9045-cbab09d57c04" + "3bd555f0-b53c-43e5-a973-353927e7b65e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6e40b0d2-0b7b-43ff-b464-6ca49fcde8c9" + "0454425f-ea3a-44d2-87a6-2a785f178de8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:10 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3032,53 +2049,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e20dc31a-b3ce-4e9f-98ec-ef08a2b58799" + "15e99bad-57f8-484d-bfa0-80a672615f26" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:15 GMT" + "Mon, 21 Dec 2015 20:57:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "170dfe6e-4548-40fb-a49e-47f871a0f11a" + "89babf89-7620-4093-8489-2c0ed057577a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e20dc31a-b3ce-4e9f-98ec-ef08a2b58799" + "15e99bad-57f8-484d-bfa0-80a672615f26" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:14 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3087,53 +2098,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ab09657d-8a26-4dca-863b-41218f8eb457" + "06c9c1c4-d012-40fb-a9f4-853215e37d21" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:20 GMT" + "Mon, 21 Dec 2015 20:57:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "80ba8a26-e314-4502-a424-94660639b6a0" + "1d4e8b8c-0cc7-440a-8ec0-ce06268ef69b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ab09657d-8a26-4dca-863b-41218f8eb457" + "06c9c1c4-d012-40fb-a9f4-853215e37d21" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:20 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3142,53 +2147,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8028e066-8df3-4af7-ad02-33be64bb93c1" + "e00665f4-7ed2-4a19-9d44-6a09475d6473" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:25 GMT" + "Mon, 21 Dec 2015 20:57:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8888f74e-f5e7-4a94-ba66-c3fa7ae54bbe" + "6d6b534e-9221-40b8-9e13-187b40fbd314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8028e066-8df3-4af7-ad02-33be64bb93c1" + "e00665f4-7ed2-4a19-9d44-6a09475d6473" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:25 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3197,53 +2196,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d2b6c895-51e4-4660-900b-46120fb8c02a" + "ca9768ad-bb10-4310-a505-b7bb14d7ea0a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:30 GMT" + "Mon, 21 Dec 2015 20:57:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5d52a95f-90d2-4f83-8303-c49bb4d75a93" + "d27c9f09-c371-4089-a713-234baf2d35fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d2b6c895-51e4-4660-900b-46120fb8c02a" + "ca9768ad-bb10-4310-a505-b7bb14d7ea0a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:31 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3252,53 +2245,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "675dc229-61ac-4455-95c6-c4242c4f1515" + "e2657240-07fd-4d19-b7ad-2cce4132cc74" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:35 GMT" + "Mon, 21 Dec 2015 20:57:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EEE42B88BBCA\",\r\n \"lastModified\": \"2015-11-17T00:15:16.2996682Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T00:19:37.7766923Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fd2d1c7f-0d6d-41a9-b2e7-05e717740bd7" + "564982d6-a063-4f90-a07e-9aedf52a2c2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "675dc229-61ac-4455-95c6-c4242c4f1515" + "e2657240-07fd-4d19-b7ad-2cce4132cc74" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:19:35 GMT" - ], - "ETag": [ - "0x8D2EEE42B88BBCA" + "Mon, 21 Dec 2015 20:57:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3307,26 +2294,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "75b56de6-fa85-428f-b33e-2dc1ffbd56c5" + "ada1292f-c2d2-4bb7-87aa-a5055ace1f55" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:58:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_17-20151117t000235z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_17-20151117t000235z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T00:05:35.6105772Z\",\r\n \"lastBootTime\": \"2015-11-17T00:05:35.4615742Z\",\r\n \"allocationTime\": \"2015-11-17T00:02:35.2944188Z\",\r\n \"ipAddress\": \"100.116.200.131\",\r\n \"affinityId\": \"TVM:tvm-1783593343_17-20151117t000235z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T00:05:35.7038595Z\",\r\n \"endTime\": \"2015-11-17T00:05:36.9496033Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_18-20151117t001419z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_18-20151117t001419z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-11-17T00:14:49.4138908Z\",\r\n \"allocationTime\": \"2015-11-17T00:14:19.3087268Z\",\r\n \"ipAddress\": \"100.116.186.131\",\r\n \"affinityId\": \"TVM:tvm-1783593343_18-20151117t001419z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_9-20151116t230350z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_9-20151116t230350z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-16T23:06:45.2813661Z\",\r\n \"lastBootTime\": \"2015-11-16T23:06:45.081531Z\",\r\n \"allocationTime\": \"2015-11-16T23:03:50.7562084Z\",\r\n \"ipAddress\": \"100.116.198.68\",\r\n \"affinityId\": \"TVM:tvm-1783593343_9-20151116t230350z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-16T23:06:45.4593669Z\",\r\n \"endTime\": \"2015-11-16T23:06:46.9579627Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3335,19 +2322,19 @@ "chunked" ], "request-id": [ - "923e1ab0-bb3f-452e-b50f-b0443a53b267" + "7442c9e7-6796-4607-ae58-10d06f03496a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "75b56de6-fa85-428f-b33e-2dc1ffbd56c5" + "ada1292f-c2d2-4bb7-87aa-a5055ace1f55" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:09 GMT" + "Mon, 21 Dec 2015 20:58:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3356,26 +2343,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_17-20151117t000235z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE3LTIwMTUxMTE3dDAwMDIzNXo/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c1847a4c-1ea1-454c-b9ee-e62190d060c8" + "49a0d807-1278-432d-a3dc-005f093f13fe" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:10 GMT" + "Mon, 21 Dec 2015 20:58:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_17-20151117t000235z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_17-20151117t000235z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T00:05:35.6105772Z\",\r\n \"lastBootTime\": \"2015-11-17T00:05:35.4615742Z\",\r\n \"allocationTime\": \"2015-11-17T00:02:35.2944188Z\",\r\n \"ipAddress\": \"100.116.200.131\",\r\n \"affinityId\": \"TVM:tvm-1783593343_17-20151117t000235z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T00:05:35.7038595Z\",\r\n \"endTime\": \"2015-11-17T00:05:36.9496033Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3384,19 +2371,19 @@ "chunked" ], "request-id": [ - "548b73de-e9e8-4751-bbb0-4cb5cfddb0ba" + "9cdc32ac-22e7-4ab9-ba99-d9dec416c9dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c1847a4c-1ea1-454c-b9ee-e62190d060c8" + "49a0d807-1278-432d-a3dc-005f093f13fe" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:10 GMT" + "Mon, 21 Dec 2015 20:58:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3405,26 +2392,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_17-20151117t000235z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE3LTIwMTUxMTE3dDAwMDIzNXo/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3o/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "65313b3f-1c25-447b-8677-2692f44799c1" + "7c8a0a99-5dd8-4215-bcdf-6b844b87550a" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:13 GMT" + "Mon, 21 Dec 2015 20:58:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_17-20151117t000235z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_17-20151117t000235z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T00:05:35.6105772Z\",\r\n \"lastBootTime\": \"2015-11-17T00:05:35.4615742Z\",\r\n \"allocationTime\": \"2015-11-17T00:02:35.2944188Z\",\r\n \"ipAddress\": \"100.116.200.131\",\r\n \"affinityId\": \"TVM:tvm-1783593343_17-20151117t000235z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T00:05:35.7038595Z\",\r\n \"endTime\": \"2015-11-17T00:05:36.9496033Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T20:58:02.0742218Z\",\r\n \"lastBootTime\": \"2015-12-21T20:58:01.9992215Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.108.117\",\r\n \"affinityId\": \"TVM:tvm-1783593343_40-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T20:58:02.1222235Z\",\r\n \"endTime\": \"2015-12-21T20:58:04.1803164Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3433,19 +2420,19 @@ "chunked" ], "request-id": [ - "1927cbc3-ce5c-4fca-add6-f66a0b5f9f1c" + "06ebadbb-8565-4656-b972-ec2dfa3bfbf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "65313b3f-1c25-447b-8677-2692f44799c1" + "7c8a0a99-5dd8-4215-bcdf-6b844b87550a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:15 GMT" + "Mon, 21 Dec 2015 20:58:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3454,10 +2441,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?removenodes&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3JlbW92ZW5vZGVzJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?removenodes&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3JlbW92ZW5vZGVzJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-1783593343_17-20151117t000235z\"\r\n ],\r\n \"resizeTimeout\": \"PT8M\",\r\n \"nodeDeallocationOption\": \"terminate\"\r\n}", + "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-1783593343_40-20151221t201203z\"\r\n ],\r\n \"resizeTimeout\": \"PT8M\",\r\n \"nodeDeallocationOption\": \"terminate\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3466,35 +2453,35 @@ "138" ], "client-request-id": [ - "c1f7c410-b9f3-413d-bd5c-9b6154c372c8" + "aeadce17-ac32-4e29-8572-e341c7a03edb" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:14 GMT" + "Mon, 21 Dec 2015 20:58:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cf4e0c56-dc4c-40a5-8280-4c08c2a907fb" + "dc98910b-d700-4978-a649-e62549ed2be1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c1f7c410-b9f3-413d-bd5c-9b6154c372c8" + "aeadce17-ac32-4e29-8572-e341c7a03edb" ], "DataServiceVersion": [ "3.0" @@ -3503,10 +2490,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:09 GMT" ], "ETag": [ - "0x8D2EEE42B88BBCA" + "0x8D30A496F200BAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3515,26 +2502,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_17-20151117t000235z'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzE3LTIwMTUxMTE3dDAwMDIzNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_40-20151221t201203z'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3olMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bdb43eda-0d4f-4e8b-ac62-183b09565db1" + "7ef9cc25-3ff3-48db-9253-adac96131bac" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:14 GMT" + "Mon, 21 Dec 2015 20:58:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_17-20151117t000235z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3543,19 +2530,19 @@ "chunked" ], "request-id": [ - "c6117c80-04b4-4cc7-a8c7-1e5550e2cb11" + "1187c05f-184e-468f-bdbe-448916d6c748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bdb43eda-0d4f-4e8b-ac62-183b09565db1" + "7ef9cc25-3ff3-48db-9253-adac96131bac" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:16 GMT" + "Mon, 21 Dec 2015 20:58:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3564,26 +2551,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_17-20151117t000235z'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzE3LTIwMTUxMTE3dDAwMDIzNXolMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?$filter=id%20eq%20'tvm-1783593343_40-20151221t201203z'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQwLTIwMTUxMjIxdDIwMTIwM3olMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c12a4c10-f64f-4f9c-9ea9-6464061453f6" + "6191c677-95d5-419a-a4ea-9783f919bd13" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:15:15 GMT" + "Mon, 21 Dec 2015 20:58:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_17-20151117t000235z\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_40-20151221t201203z\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3592,19 +2579,19 @@ "chunked" ], "request-id": [ - "3f8d8444-51d6-4cdf-ac56-f36a2e90a30d" + "027b58aa-de23-4bd5-8e1b-4d61c34808fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c12a4c10-f64f-4f9c-9ea9-6464061453f6" + "6191c677-95d5-419a-a4ea-9783f919bd13" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:15:17 GMT" + "Mon, 21 Dec 2015 20:58:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3613,10 +2600,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 3\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 2\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -3625,35 +2612,35 @@ "28" ], "client-request-id": [ - "f328ca04-84fd-4287-a44a-137b61400e3e" + "a5292d3e-d39f-4b91-b8e7-93202d107c27" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:19:36 GMT" + "Mon, 21 Dec 2015 21:00:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 00:19:38 GMT" + "Mon, 21 Dec 2015 20:59:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "260e23e3-324f-4b9a-aa57-2d7bf681a8fa" + "e4e288ae-4f3e-4950-8fed-45819c1fbe83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f328ca04-84fd-4287-a44a-137b61400e3e" + "a5292d3e-d39f-4b91-b8e7-93202d107c27" ], "DataServiceVersion": [ "3.0" @@ -3662,10 +2649,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 17 Nov 2015 00:19:36 GMT" + "Mon, 21 Dec 2015 21:00:00 GMT" ], "ETag": [ - "0x8D2EEE4C78C849F" + "0x8D30A49B01AF3B3" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveMultipleComputeNodes.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveMultipleComputeNodes.json index 8da8be492ccf..c99c0f5d3661 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveMultipleComputeNodes.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveMultipleComputeNodes.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-request-id": [ - "e2ec7c54-32b2-4029-8e3c-01083332df5a" + "2365f8ca-1891-4a7d-b4ec-11bc3a06852d" ], "x-ms-correlation-request-id": [ - "e2ec7c54-32b2-4029-8e3c-01083332df5a" + "2365f8ca-1891-4a7d-b4ec-11bc3a06852d" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T222354Z:e2ec7c54-32b2-4029-8e3c-01083332df5a" + "CENTRALUS:20151221T220545Z:2365f8ca-1891-4a7d-b4ec-11bc3a06852d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 22:23:54 GMT" + "Mon, 21 Dec 2015 22:05:45 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "b87228df-e7a5-4c64-a6cf-59f1da27d28d" + "4dcb25bb-1017-4dd8-954a-810f531a768d" ], "x-ms-correlation-request-id": [ - "b87228df-e7a5-4c64-a6cf-59f1da27d28d" + "4dcb25bb-1017-4dd8-954a-810f531a768d" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T222523Z:b87228df-e7a5-4c64-a6cf-59f1da27d28d" + "CENTRALUS:20151221T220921Z:4dcb25bb-1017-4dd8-954a-810f531a768d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 22:25:23 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:56 GMT" + "Mon, 21 Dec 2015 22:05:45 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "409d4949-8b5d-44e6-8b3e-4e58fae3d2cc" + "281b723a-6f18-4a4b-8fc5-e244a4dc2624" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-request-id": [ - "244862c2-5b64-4648-9d45-e7c0822db81d" + "08623a5e-6735-4583-a625-eadeeedca989" ], "x-ms-correlation-request-id": [ - "244862c2-5b64-4648-9d45-e7c0822db81d" + "08623a5e-6735-4583-a625-eadeeedca989" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T222355Z:244862c2-5b64-4648-9d45-e7c0822db81d" + "CENTRALUS:20151221T220546Z:08623a5e-6735-4583-a625-eadeeedca989" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 22:23:55 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "ETag": [ - "0x8D2EF9DC8B5CDAE" + "0x8D30A52E0549FB4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:25:25 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "912329f6-dfe5-4493-b413-8fee5200b950" + "cc79d59f-55f5-4046-845a-49731f190dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14997" ], "x-ms-request-id": [ - "f5686685-6913-4e6b-ae87-74853ca185cd" + "4545935e-ac18-458d-aefa-0efa004813ae" ], "x-ms-correlation-request-id": [ - "f5686685-6913-4e6b-ae87-74853ca185cd" + "4545935e-ac18-458d-aefa-0efa004813ae" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T222524Z:f5686685-6913-4e6b-ae87-74853ca185cd" + "CENTRALUS:20151221T220922Z:4545935e-ac18-458d-aefa-0efa004813ae" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 22:25:24 GMT" + "Mon, 21 Dec 2015 22:09:22 GMT" ], "ETag": [ - "0x8D2EF9DFD908FF0" + "0x8D30A536114CEC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "6020eb1e-546b-4464-90fd-ad9349910643" + "0802126f-a2ec-4ed6-aa6b-ba1b5025dd15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "b8f3dc67-e7c7-410e-9334-fb53877d9fdf" + "a3ddbf74-9502-4dd6-b009-ebba442a6cdf" ], "x-ms-correlation-request-id": [ - "b8f3dc67-e7c7-410e-9334-fb53877d9fdf" + "a3ddbf74-9502-4dd6-b009-ebba442a6cdf" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T222356Z:b8f3dc67-e7c7-410e-9334-fb53877d9fdf" + "CENTRALUS:20151221T220547Z:a3ddbf74-9502-4dd6-b009-ebba442a6cdf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 22:23:55 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -307,28 +307,248 @@ "no-cache" ], "request-id": [ - "97bb66dd-c9c3-4922-85e3-54fc4f2c37cf" + "ee326615-5916-49dc-9991-ba4c99636594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "bebc7759-1cbb-4926-96b7-f8bfc9fbca55" + "69e3c725-76f6-4a04-a097-9fb8cf803522" ], "x-ms-correlation-request-id": [ - "bebc7759-1cbb-4926-96b7-f8bfc9fbca55" + "69e3c725-76f6-4a04-a097-9fb8cf803522" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T222524Z:bebc7759-1cbb-4926-96b7-f8bfc9fbca55" + "CENTRALUS:20151221T220922Z:69e3c725-76f6-4a04-a097-9fb8cf803522" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 22:25:24 GMT" + "Mon, 21 Dec 2015 22:09:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "eb635f83-3cf7-4721-8f58-ed5223367346" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:05:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4FD7989BC8\",\r\n \"lastModified\": \"2015-12-21T21:44:02.516884Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:44:04.5582751Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:44:02 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "364c0f9b-a89b-4d7c-970e-43d5796c785a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "eb635f83-3cf7-4721-8f58-ed5223367346" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:05:46 GMT" + ], + "ETag": [ + "0x8D30A4FD7989BC8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bceec9d5-c247-4148-926b-dfe3c035892a" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:05:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4FD7989BC8\",\r\n \"lastModified\": \"2015-12-21T21:44:02.516884Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:44:04.5582751Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:44:02 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f5304f72-8dc8-4630-8199-10b39a2e0a86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "bceec9d5-c247-4148-926b-dfe3c035892a" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:05:46 GMT" + ], + "ETag": [ + "0x8D30A4FD7989BC8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "92efb5d5-e29c-4a30-a316-6fe12139af83" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:05:48 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:05:46 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d964ac99-5e73-4c93-a5e3-2b716071b1bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "92efb5d5-e29c-4a30-a316-6fe12139af83" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:05:47 GMT" + ], + "ETag": [ + "0x8D30A52E0F0857D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8ede2c6d-692c-4bea-9c88-e5117f551849" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:05:53 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 22:05:46 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e7be98fe-df72-461c-9989-349332e9b71c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8ede2c6d-692c-4bea-9c88-e5117f551849" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:05:52 GMT" + ], + "ETag": [ + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +557,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5310dc0a-42cd-4ec9-beb6-462fb75ca6f9" + "8afb9ede-7cfd-4a4c-98b2-a5338000dcd6" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:23:56 GMT" + "Mon, 21 Dec 2015 22:05:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9BDA219C28\",\r\n \"lastModified\": \"2015-11-17T22:10:07.1266344Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:10:29.1288272Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:10:07 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "08fe5bd8-be13-4fa5-a6f9-763bc6521a03" + "1677eb4a-0d7e-4256-9da6-f96acf805fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5310dc0a-42cd-4ec9-beb6-462fb75ca6f9" + "8afb9ede-7cfd-4a4c-98b2-a5338000dcd6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:23:57 GMT" + "Mon, 21 Dec 2015 22:05:57 GMT" ], "ETag": [ - "0x8D2EF9BDA219C28" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +612,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a3390773-28b6-4576-bf51-b7d90433eb22" + "ba5c3d68-a296-480d-ae9c-274412c57be5" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:23:56 GMT" + "Mon, 21 Dec 2015 22:06:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9BDA219C28\",\r\n \"lastModified\": \"2015-11-17T22:10:07.1266344Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:10:29.1288272Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:10:07 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b0ff19f3-175c-4fa8-b99b-4f0efcf5fa4e" + "c1a07264-e6ac-40d1-965a-d618a08d811e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a3390773-28b6-4576-bf51-b7d90433eb22" + "ba5c3d68-a296-480d-ae9c-274412c57be5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:23:57 GMT" + "Mon, 21 Dec 2015 22:06:02 GMT" ], "ETag": [ - "0x8D2EF9BDA219C28" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +667,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "518cc197-7a11-43b2-80c6-5cbe887e0e83" + "b8ae2b19-089a-4816-894c-eb80dd1be100" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:23:57 GMT" + "Mon, 21 Dec 2015 22:06:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a39c4a82-cf2d-424e-af1a-daeb8d528015" + "4f04a57e-51ed-42b5-8aa6-d3a5146439f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "518cc197-7a11-43b2-80c6-5cbe887e0e83" + "b8ae2b19-089a-4816-894c-eb80dd1be100" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:23:57 GMT" + "Mon, 21 Dec 2015 22:06:06 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,53 +722,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "19a31c08-395b-4228-8384-9451815e6510" + "d0cf3e46-41aa-4115-9617-f0ca2f8946ae" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:02 GMT" + "Mon, 21 Dec 2015 22:06:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "92f0e955-2688-46b1-8b0f-32322bb5585b" + "8678e4bb-a341-4cb9-9070-067acefe6716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "19a31c08-395b-4228-8384-9451815e6510" + "d0cf3e46-41aa-4115-9617-f0ca2f8946ae" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:03 GMT" + "Mon, 21 Dec 2015 22:06:12 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,53 +777,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "080cfc45-1fc0-4bb6-b7e5-dd997d77950d" + "8af313e6-46e0-44d0-9682-aece0f9c41e1" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:07 GMT" + "Mon, 21 Dec 2015 22:06:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a1c57551-9a6f-4651-af81-4f106fd8c353" + "dd21446a-ca8f-4195-b760-6708cae2bf31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "080cfc45-1fc0-4bb6-b7e5-dd997d77950d" + "8af313e6-46e0-44d0-9682-aece0f9c41e1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:07 GMT" + "Mon, 21 Dec 2015 22:06:17 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,53 +832,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c03f6fe6-a23e-4819-9cf9-f3029f98f574" + "d88e6e3f-ec32-4bcd-8f4c-cd15236409cd" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:12 GMT" + "Mon, 21 Dec 2015 22:06:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "78b043a5-73a1-4987-a3b2-cdfb1bc6f68b" + "7ad28347-e9d8-42db-9a98-9521fe9efdbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c03f6fe6-a23e-4819-9cf9-f3029f98f574" + "d88e6e3f-ec32-4bcd-8f4c-cd15236409cd" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:13 GMT" + "Mon, 21 Dec 2015 22:06:22 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,53 +887,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f94ed0c8-2b71-4243-8385-890115b0ccdd" + "9522acc4-e503-42db-8b93-1c53f9b252a6" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:17 GMT" + "Mon, 21 Dec 2015 22:06:29 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a2526e39-2373-4af2-b0d6-86c8f2360331" + "09396e5b-875c-41d2-964f-21593ce25f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f94ed0c8-2b71-4243-8385-890115b0ccdd" + "9522acc4-e503-42db-8b93-1c53f9b252a6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:18 GMT" + "Mon, 21 Dec 2015 22:06:27 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,53 +942,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9e31b876-3d42-44d9-b76b-217c94a0213c" + "adf62490-529a-425f-bbb4-70cde3652772" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:22 GMT" + "Mon, 21 Dec 2015 22:06:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "418d7bc5-a037-4088-a869-569f343f4fc2" + "b5c7ec6d-086f-4ef4-8703-4d7bca15d1ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9e31b876-3d42-44d9-b76b-217c94a0213c" + "adf62490-529a-425f-bbb4-70cde3652772" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:23 GMT" + "Mon, 21 Dec 2015 22:06:33 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -777,53 +997,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "260b3f32-9dcf-4a7e-af1f-b1fc7beec6ee" + "67cfc0cb-9293-447e-95f7-f6c262041200" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:27 GMT" + "Mon, 21 Dec 2015 22:06:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d73e7ffc-2e5c-46b1-96d2-4fcea702daed" + "606533de-98ff-4ab4-9670-d71f02b84691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "260b3f32-9dcf-4a7e-af1f-b1fc7beec6ee" + "67cfc0cb-9293-447e-95f7-f6c262041200" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:28 GMT" + "Mon, 21 Dec 2015 22:06:38 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -832,53 +1052,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6af027e4-7300-40bd-98db-53310c7f8a06" + "55720855-13b2-4edb-b586-063e51b61d7f" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:32 GMT" + "Mon, 21 Dec 2015 22:06:44 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bc8077d5-7bbb-4bad-84d0-eb8d3b947e58" + "d17a18f1-90eb-4129-bafc-05bb93453dba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6af027e4-7300-40bd-98db-53310c7f8a06" + "55720855-13b2-4edb-b586-063e51b61d7f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:34 GMT" + "Mon, 21 Dec 2015 22:06:42 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -887,53 +1107,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b61abb61-649b-47ba-8689-90393f521d43" + "0fe69493-86f3-4c4e-ad4a-c3a68bc4615d" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:37 GMT" + "Mon, 21 Dec 2015 22:06:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b8943365-ccd8-439f-9142-4552535604f0" + "f760ac67-b785-4a9a-8be1-3ad99f88e6c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b61abb61-649b-47ba-8689-90393f521d43" + "0fe69493-86f3-4c4e-ad4a-c3a68bc4615d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:38 GMT" + "Mon, 21 Dec 2015 22:06:48 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -942,53 +1162,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d724a27f-adfc-4514-a5d0-608580d9f7d8" + "2b3563b1-4dfa-4bcf-a8ca-5469deeb1a1c" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:43 GMT" + "Mon, 21 Dec 2015 22:06:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2cbcb6d8-c7c2-4d51-8e9f-f4230cbb2b07" + "a2409396-c008-4b9c-9268-9c9c723a0596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d724a27f-adfc-4514-a5d0-608580d9f7d8" + "2b3563b1-4dfa-4bcf-a8ca-5469deeb1a1c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:43 GMT" + "Mon, 21 Dec 2015 22:06:53 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -997,53 +1217,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "20fce391-6eee-48c8-aae0-eadfc084364c" + "4c77ab46-e8bc-4450-9488-47f5874420cf" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:48 GMT" + "Mon, 21 Dec 2015 22:07:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c71dc991-efd1-48b3-ac9a-2f65f191ed0d" + "3a7173ee-dc82-49cf-89c4-308f75c6c76e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "20fce391-6eee-48c8-aae0-eadfc084364c" + "4c77ab46-e8bc-4450-9488-47f5874420cf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:48 GMT" + "Mon, 21 Dec 2015 22:06:58 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1052,53 +1272,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cee5e27d-6b29-4a0c-abc5-ad9166c0da5d" + "df9d7dfd-48dd-4348-9393-6b3c814d0e98" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:53 GMT" + "Mon, 21 Dec 2015 22:07:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "34523114-9bea-402d-998d-d5cbb9b1ea1e" + "61527457-2288-416d-9cd7-05169d14b2be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cee5e27d-6b29-4a0c-abc5-ad9166c0da5d" + "df9d7dfd-48dd-4348-9393-6b3c814d0e98" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:54 GMT" + "Mon, 21 Dec 2015 22:07:03 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1107,53 +1327,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "288dbade-56aa-4743-b9c8-74612e59953f" + "b7fb8f36-2e20-4e24-84a1-5a5c957f9b80" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:24:58 GMT" + "Mon, 21 Dec 2015 22:07:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "58a3b3ca-1455-4f2a-a045-066ec03b656d" + "42394773-967a-40c2-913c-5804b3c24b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "288dbade-56aa-4743-b9c8-74612e59953f" + "b7fb8f36-2e20-4e24-84a1-5a5c957f9b80" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:24:59 GMT" + "Mon, 21 Dec 2015 22:07:08 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1162,53 +1382,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "479094d3-e646-4d81-99b4-35a386535290" + "3404b13c-c854-4f08-b721-668b4103473c" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:03 GMT" + "Mon, 21 Dec 2015 22:07:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e68aa855-1acc-4cab-a040-57954e4dc728" + "bb93801a-192c-4ee2-aeeb-3f16ceaf989a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "479094d3-e646-4d81-99b4-35a386535290" + "3404b13c-c854-4f08-b721-668b4103473c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:04 GMT" + "Mon, 21 Dec 2015 22:07:14 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1217,53 +1437,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe7369f4-757b-4704-97df-31a6cab744c6" + "668e672d-b823-4eef-95c0-63459ce9fbc1" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:08 GMT" + "Mon, 21 Dec 2015 22:07:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2f00da55-e670-412e-873c-9c4569750f1a" + "7f46807d-8532-455e-85af-7f994f2a583d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fe7369f4-757b-4704-97df-31a6cab744c6" + "668e672d-b823-4eef-95c0-63459ce9fbc1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:09 GMT" + "Mon, 21 Dec 2015 22:07:19 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1272,53 +1492,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "215c948d-6279-4463-9124-e0c33693c04c" + "0bc077a2-da2b-4148-b951-6f81ddf6addb" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:13 GMT" + "Mon, 21 Dec 2015 22:07:25 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:23:58.926844Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e3383628-6d95-43f9-b7b6-c6cfc43d8ef9" + "b3e52182-3b07-48bd-92b9-2b92fbc14729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "215c948d-6279-4463-9124-e0c33693c04c" + "0bc077a2-da2b-4148-b951-6f81ddf6addb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:13 GMT" + "Mon, 21 Dec 2015 22:07:24 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1327,53 +1547,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f21462be-e150-4057-93a3-b8eaf9f77190" + "5e248e06-402d-4d4c-9b97-f35994f8d7d4" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:18 GMT" + "Mon, 21 Dec 2015 22:07:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EF9DC9EC3FD8\",\r\n \"lastModified\": \"2015-11-17T22:23:58.926844Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-17T22:25:19.2363509Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 7,\r\n \"targetDedicated\": 7,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A52E0F0857D\",\r\n \"lastModified\": \"2015-12-21T22:05:46.6827133Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T22:07:26.0628801Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 4,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8369a3ca-c6ae-4cd4-885f-4ae7fcbd9546" + "594e616b-a7fa-4326-b721-f0e7ac1af7ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f21462be-e150-4057-93a3-b8eaf9f77190" + "5e248e06-402d-4d4c-9b97-f35994f8d7d4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:07:29 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1382,10 +1602,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 7\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 4\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1394,35 +1614,35 @@ "28" ], "client-request-id": [ - "eea38129-d980-42c9-b277-c4c9f34e326f" + "e1f9af30-a3e6-4ef4-af10-bd53c1a7d9f6" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:23:56 GMT" + "Mon, 21 Dec 2015 22:05:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 22:23:58 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8d2e9904-e994-4209-a3a3-31c688230fb9" + "292bc575-81a8-4bcb-9449-78b38f52c4a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "eea38129-d980-42c9-b277-c4c9f34e326f" + "e1f9af30-a3e6-4ef4-af10-bd53c1a7d9f6" ], "DataServiceVersion": [ "3.0" @@ -1431,10 +1651,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 17 Nov 2015 22:23:57 GMT" + "Mon, 21 Dec 2015 22:05:46 GMT" ], "ETag": [ - "0x8D2EF9DC9EC3FD8" + "0x8D30A52E0F0857D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1443,26 +1663,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7a4422be-5ebe-4a33-a6f1-9fa850e64f87" + "35a06ea9-ace8-44e8-aae9-36ffdc1c4297" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:18 GMT" + "Mon, 21 Dec 2015 22:07:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_30-20151117t214804z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_30-20151117t214804z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:51:10.7620121Z\",\r\n \"lastBootTime\": \"2015-11-17T21:51:10.6630121Z\",\r\n \"allocationTime\": \"2015-11-17T21:48:04.4065139Z\",\r\n \"ipAddress\": \"100.116.174.138\",\r\n \"affinityId\": \"TVM:tvm-1783593343_30-20151117t214804z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:51:10.8420131Z\",\r\n \"endTime\": \"2015-11-17T21:51:12.2250217Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_31-20151117t214804z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_31-20151117t214804z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:53:44.2692335Z\",\r\n \"lastBootTime\": \"2015-11-17T21:53:44.1379675Z\",\r\n \"allocationTime\": \"2015-11-17T21:48:04.4065139Z\",\r\n \"ipAddress\": \"100.116.178.133\",\r\n \"affinityId\": \"TVM:tvm-1783593343_31-20151117t214804z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:53:44.3719726Z\",\r\n \"endTime\": \"2015-11-17T21:53:46.0520156Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_32-20151117t220951z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_32-20151117t220951z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T22:13:25.4957099Z\",\r\n \"lastBootTime\": \"2015-11-17T22:13:25.380441Z\",\r\n \"allocationTime\": \"2015-11-17T22:09:51.9938955Z\",\r\n \"ipAddress\": \"100.116.190.15\",\r\n \"affinityId\": \"TVM:tvm-1783593343_32-20151117t220951z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T22:13:25.5464448Z\",\r\n \"endTime\": \"2015-11-17T22:13:27.6277907Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_33-20151117t220951z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_33-20151117t220951z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T22:13:37.3583225Z\",\r\n \"lastBootTime\": \"2015-11-17T22:13:37.2563229Z\",\r\n \"allocationTime\": \"2015-11-17T22:09:51.9938955Z\",\r\n \"ipAddress\": \"100.116.142.43\",\r\n \"affinityId\": \"TVM:tvm-1783593343_33-20151117t220951z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T22:13:37.4447263Z\",\r\n \"endTime\": \"2015-11-17T22:13:39.6635664Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"creating\",\r\n \"stateTransitionTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_35-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_35-20151117t222514z\",\r\n \"state\": \"creating\",\r\n \"stateTransitionTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.180.45\",\r\n \"affinityId\": \"TVM:tvm-1783593343_35-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_9-20151116t230350z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_9-20151116t230350z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:19:36.783802Z\",\r\n \"lastBootTime\": \"2015-11-17T21:19:36.6037956Z\",\r\n \"allocationTime\": \"2015-11-16T23:03:50.7562084Z\",\r\n \"ipAddress\": \"100.116.198.68\",\r\n \"affinityId\": \"TVM:tvm-1783593343_9-20151116t230350z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:19:36.8652608Z\",\r\n \"endTime\": \"2015-11-17T21:19:39.0248554Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:04:30.5371206Z\",\r\n \"lastBootTime\": \"2015-12-21T22:03:53.4938323Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T22:03:53.684464Z\",\r\n \"endTime\": \"2015-12-21T22:03:54.7114642Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:33:33.2260349Z\",\r\n \"lastBootTime\": \"2015-12-21T21:33:33.0870352Z\",\r\n \"allocationTime\": \"2015-12-21T21:00:57.7896291Z\",\r\n \"ipAddress\": \"10.74.168.142\",\r\n \"affinityId\": \"TVM:tvm-1783593343_42-20151221t210057z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T21:33:33.2700363Z\",\r\n \"endTime\": \"2015-12-21T21:33:35.1538517Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"allocationTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"ipAddress\": \"10.74.152.118\",\r\n \"affinityId\": \"TVM:tvm-1783593343_43-20151221t220725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_44-20151221t220725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_44-20151221t220725z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"allocationTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"ipAddress\": \"10.74.164.69\",\r\n \"affinityId\": \"TVM:tvm-1783593343_44-20151221t220725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1471,19 +1691,19 @@ "chunked" ], "request-id": [ - "ab014a7d-a1f5-412f-a3bb-8a323ffcea2e" + "21d24016-5f4a-4e7c-aba9-38ce353ceb3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7a4422be-5ebe-4a33-a6f1-9fa850e64f87" + "35a06ea9-ace8-44e8-aae9-36ffdc1c4297" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:07:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1492,26 +1712,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d4ceefaf-d864-43b6-86e4-4ff73215a89c" + "552bedda-0fc3-454d-bfa0-f8cd85c3e1ec" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:09:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_30-20151117t214804z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_30-20151117t214804z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:51:10.7620121Z\",\r\n \"lastBootTime\": \"2015-11-17T21:51:10.6630121Z\",\r\n \"allocationTime\": \"2015-11-17T21:48:04.4065139Z\",\r\n \"ipAddress\": \"100.116.174.138\",\r\n \"affinityId\": \"TVM:tvm-1783593343_30-20151117t214804z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:51:10.8420131Z\",\r\n \"endTime\": \"2015-11-17T21:51:12.2250217Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_31-20151117t214804z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_31-20151117t214804z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:53:44.2692335Z\",\r\n \"lastBootTime\": \"2015-11-17T21:53:44.1379675Z\",\r\n \"allocationTime\": \"2015-11-17T21:48:04.4065139Z\",\r\n \"ipAddress\": \"100.116.178.133\",\r\n \"affinityId\": \"TVM:tvm-1783593343_31-20151117t214804z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:53:44.3719726Z\",\r\n \"endTime\": \"2015-11-17T21:53:46.0520156Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_32-20151117t220951z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_32-20151117t220951z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T22:13:25.4957099Z\",\r\n \"lastBootTime\": \"2015-11-17T22:13:25.380441Z\",\r\n \"allocationTime\": \"2015-11-17T22:09:51.9938955Z\",\r\n \"ipAddress\": \"100.116.190.15\",\r\n \"affinityId\": \"TVM:tvm-1783593343_32-20151117t220951z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T22:13:25.5464448Z\",\r\n \"endTime\": \"2015-11-17T22:13:27.6277907Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_33-20151117t220951z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_33-20151117t220951z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T22:13:37.3583225Z\",\r\n \"lastBootTime\": \"2015-11-17T22:13:37.2563229Z\",\r\n \"allocationTime\": \"2015-11-17T22:09:51.9938955Z\",\r\n \"ipAddress\": \"100.116.142.43\",\r\n \"affinityId\": \"TVM:tvm-1783593343_33-20151117t220951z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T22:13:37.4447263Z\",\r\n \"endTime\": \"2015-11-17T22:13:39.6635664Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"creating\",\r\n \"stateTransitionTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_35-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_35-20151117t222514z\",\r\n \"state\": \"creating\",\r\n \"stateTransitionTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.180.45\",\r\n \"affinityId\": \"TVM:tvm-1783593343_35-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_9-20151116t230350z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_9-20151116t230350z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:19:36.783802Z\",\r\n \"lastBootTime\": \"2015-11-17T21:19:36.6037956Z\",\r\n \"allocationTime\": \"2015-11-16T23:03:50.7562084Z\",\r\n \"ipAddress\": \"100.116.198.68\",\r\n \"affinityId\": \"TVM:tvm-1783593343_9-20151116t230350z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:19:36.8652608Z\",\r\n \"endTime\": \"2015-11-17T21:19:39.0248554Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:09:12.418928Z\",\r\n \"lastBootTime\": \"2015-12-21T22:09:12.2579268Z\",\r\n \"allocationTime\": \"2015-12-21T20:12:03.0353108Z\",\r\n \"ipAddress\": \"10.74.128.157\",\r\n \"affinityId\": \"TVM:tvm-1783593343_41-20151221t201203z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T22:09:12.48893Z\",\r\n \"endTime\": \"2015-12-21T22:09:13.6863835Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T21:33:33.2260349Z\",\r\n \"lastBootTime\": \"2015-12-21T21:33:33.0870352Z\",\r\n \"allocationTime\": \"2015-12-21T21:00:57.7896291Z\",\r\n \"ipAddress\": \"10.74.168.142\",\r\n \"affinityId\": \"TVM:tvm-1783593343_42-20151221t210057z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T21:33:33.2700363Z\",\r\n \"endTime\": \"2015-12-21T21:33:35.1538517Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_43-20151221t220725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_43-20151221t220725z\",\r\n \"state\": \"starting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:07:55.3659171Z\",\r\n \"allocationTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"ipAddress\": \"10.74.152.118\",\r\n \"affinityId\": \"TVM:tvm-1783593343_43-20151221t220725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_44-20151221t220725z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_44-20151221t220725z\",\r\n \"state\": \"starting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T22:07:55.3629161Z\",\r\n \"allocationTime\": \"2015-12-21T22:07:25.2310552Z\",\r\n \"ipAddress\": \"10.74.164.69\",\r\n \"affinityId\": \"TVM:tvm-1783593343_44-20151221t220725z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1520,19 +1740,19 @@ "chunked" ], "request-id": [ - "23a7f312-03db-4747-bb2d-bfe387a9d9a5" + "163ac3a8-0d96-41b5-9eeb-df995a548dd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d4ceefaf-d864-43b6-86e4-4ff73215a89c" + "552bedda-0fc3-454d-bfa0-f8cd85c3e1ec" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:09:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1541,26 +1761,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_30-20151117t214804z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzMwLTIwMTUxMTE3dDIxNDgwNHo/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b01e8838-0760-4ae5-9d7d-bbea089ffe91" + "68f09dac-ddeb-483b-af53-20d1dea8f802" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:18 GMT" + "Mon, 21 Dec 2015 22:07:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_30-20151117t214804z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_30-20151117t214804z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:51:10.7620121Z\",\r\n \"lastBootTime\": \"2015-11-17T21:51:10.6630121Z\",\r\n \"allocationTime\": \"2015-11-17T21:48:04.4065139Z\",\r\n \"ipAddress\": \"100.116.174.138\",\r\n \"affinityId\": \"TVM:tvm-1783593343_30-20151117t214804z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:51:10.8420131Z\",\r\n \"endTime\": \"2015-11-17T21:51:12.2250217Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1569,19 +1789,19 @@ "chunked" ], "request-id": [ - "01a549f4-110b-4d2d-a063-06c579c903cd" + "bdf2c8fb-fdcf-453e-8b23-cddca80cd1b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b01e8838-0760-4ae5-9d7d-bbea089ffe91" + "68f09dac-ddeb-483b-af53-20d1dea8f802" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:07:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1590,26 +1810,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_31-20151117t214804z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzMxLTIwMTUxMTE3dDIxNDgwNHo/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "af66cd40-21f3-474f-ae73-53731d9fc084" + "e43edad5-8507-42b7-847e-bc920f8957b9" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:07:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_31-20151117t214804z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_31-20151117t214804z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-17T21:53:44.2692335Z\",\r\n \"lastBootTime\": \"2015-11-17T21:53:44.1379675Z\",\r\n \"allocationTime\": \"2015-11-17T21:48:04.4065139Z\",\r\n \"ipAddress\": \"100.116.178.133\",\r\n \"affinityId\": \"TVM:tvm-1783593343_31-20151117t214804z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-17T21:53:44.3719726Z\",\r\n \"endTime\": \"2015-11-17T21:53:46.0520156Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1618,19 +1838,19 @@ "chunked" ], "request-id": [ - "0a17c2e8-92fd-4277-94e8-1a41d0954baa" + "9ad48a68-7c9a-47b3-9bd5-1ec81063355c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "af66cd40-21f3-474f-ae73-53731d9fc084" + "e43edad5-8507-42b7-847e-bc920f8957b9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:19 GMT" + "Mon, 21 Dec 2015 22:07:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1639,87 +1859,124 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?removenodes&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3JlbW92ZW5vZGVzJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-1783593343_30-20151117t214804z\",\r\n \"tvm-1783593343_31-20151117t214804z\"\r\n ]\r\n}", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "client-request-id": [ + "80499994-576b-4dc3-a7ad-fe708e6cf8f3" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:07:41 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Content-Length": [ - "111" + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ed140ad3-83c3-46c7-bacd-f9dd9af6f49a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "80499994-576b-4dc3-a7ad-fe708e6cf8f3" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:07:39 GMT" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "client-request-id": [ - "d32f056c-6ba0-4b6d-a418-c823eb7e787b" + "8ee14f59-3461-4a6b-a7c1-01b24c1435dd" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:24 GMT" + "Mon, 21 Dec 2015 22:07:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { - "Last-Modified": [ - "Tue, 17 Nov 2015 22:25:27 GMT" + "Content-Type": [ + "application/json; odata=minimalmetadata" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d3798930-eab0-4c27-95af-c2934a3ea6e0" + "e9f56fe4-8109-45e0-ab1a-d3902ced3817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d32f056c-6ba0-4b6d-a418-c823eb7e787b" + "8ee14f59-3461-4a6b-a7c1-01b24c1435dd" ], "DataServiceVersion": [ "3.0" ], - "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool" - ], "Date": [ - "Tue, 17 Nov 2015 22:25:26 GMT" - ], - "ETag": [ - "0x8D2EF9DFE84068A" + "Mon, 21 Dec 2015 22:07:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=(id%20eq%20'tvm-1783593343_30-20151117t214804z')%20or%20(id%20eq%20'tvm-1783593343_31-20151117t214804z')&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9JTI4aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzMwLTIwMTUxMTE3dDIxNDgwNHolMjclMjklMjBvciUyMCUyOGlkJTIwZXElMjAlMjd0dm0tMTc4MzU5MzM0M18zMS0yMDE1MTExN3QyMTQ4MDR6JTI3JTI5JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aef3cca7-3250-4032-a983-d0af387f1eb0" + "7d623eee-f04e-43db-98f9-398dca6e08fe" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:25 GMT" + "Mon, 21 Dec 2015 22:07:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_30-20151117t214804z\",\r\n \"state\": \"idle\"\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_31-20151117t214804z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1728,19 +1985,19 @@ "chunked" ], "request-id": [ - "3870bb39-f8be-4bb6-a500-c839cc1ad4e7" + "4806100c-e771-42eb-aab1-90858d18c5a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "aef3cca7-3250-4032-a983-d0af387f1eb0" + "7d623eee-f04e-43db-98f9-398dca6e08fe" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:26 GMT" + "Mon, 21 Dec 2015 22:07:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1749,26 +2006,969 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=(id%20eq%20'tvm-1783593343_30-20151117t214804z')%20or%20(id%20eq%20'tvm-1783593343_31-20151117t214804z')&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9JTI4aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzMwLTIwMTUxMTE3dDIxNDgwNHolMjclMjklMjBvciUyMCUyOGlkJTIwZXElMjAlMjd0dm0tMTc4MzU5MzM0M18zMS0yMDE1MTExN3QyMTQ4MDR6JTI3JTI5JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "220b5074-f60e-469d-a266-26c9523ffcb0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:07:56 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0c8f17ee-a7a0-4654-a945-5de2b7122332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "220b5074-f60e-469d-a266-26c9523ffcb0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:07:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e52245fa-2aaf-407a-97e7-9f693a2eaa4f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:01 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "feef8bb2-74bf-46b8-88fd-96c80f28fa9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e52245fa-2aaf-407a-97e7-9f693a2eaa4f" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fb89e5e4-e6c6-4871-87b5-9202b8012245" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:06 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "12c907e4-3d26-4928-a37f-eae20efbb6bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "fb89e5e4-e6c6-4871-87b5-9202b8012245" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8268bbf7-ca2b-4adb-92c3-17c1da37605b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:11 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3ae187d6-e4c3-461a-84c3-60670a98e592" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8268bbf7-ca2b-4adb-92c3-17c1da37605b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "eb9b1ae3-7fb2-4ca7-b84d-c631a474396a" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:17 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b4578cc5-d213-417e-b08f-e930214039b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "eb9b1ae3-7fb2-4ca7-b84d-c631a474396a" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d84c902f-f283-40cf-aebd-03a27bf4fcec" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:22 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "67671e17-1471-409a-a325-b7664d0bdc54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d84c902f-f283-40cf-aebd-03a27bf4fcec" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d90c9702-fb5d-4f10-8cc8-91b91a9ffe6a" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ecb7f310-d834-47d3-825a-24fb72101021" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d90c9702-fb5d-4f10-8cc8-91b91a9ffe6a" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "df653550-523a-434b-9ab2-9f926eb45eb4" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:32 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "acf6b306-8ef6-4e09-9803-435313c4d5db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "df653550-523a-434b-9ab2-9f926eb45eb4" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:30 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d19470b6-8fd7-41d9-a062-2b3ad5bb8c72" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:37 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "907f085c-820c-4241-b7f4-67d442b0bf85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d19470b6-8fd7-41d9-a062-2b3ad5bb8c72" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b2dec238-50fc-4919-aafd-873cc75a1ac5" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:42 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "735f182c-abca-4103-a9d4-22e4aa941710" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b2dec238-50fc-4919-aafd-873cc75a1ac5" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "98d3265c-6c31-432b-aa1f-c071acced5b3" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ea62daf5-6416-4997-9af2-6f4c4c042cd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "98d3265c-6c31-432b-aa1f-c071acced5b3" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3a1d8e24-cde4-4ce9-9b59-45deeb52f0b7" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "85ae5792-9b40-423b-99fe-ce1d3489c46c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3a1d8e24-cde4-4ce9-9b59-45deeb52f0b7" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ab2ccb89-0fad-478f-b32a-408486228ce2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:08:57 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8de41454-5140-44b2-a221-4c16a0d23b0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ab2ccb89-0fad-478f-b32a-408486228ce2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:08:56 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "383cee8e-40f7-4b4d-a4e8-8124c9775d97" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:09:03 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ac15b4f3-d896-4467-ab67-1ad0ceac9432" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "383cee8e-40f7-4b4d-a4e8-8124c9775d97" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:09:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ec48f8c4-b229-4bd0-a9d9-cc2fde60efb1" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:09:08 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9e576c35-5a82-4205-b980-51187a7599a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ec48f8c4-b229-4bd0-a9d9-cc2fde60efb1" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:09:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "86a24cc9-a0bc-4989-b7d5-aba4ea3ea7b6" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:09:13 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"reimaging\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "58dc1369-f024-46cb-abee-0ae60f151937" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "86a24cc9-a0bc-4989-b7d5-aba4ea3ea7b6" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:09:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_41-20151221t201203z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0720f92f-7dcb-4659-b6f7-ef4eae07ca61" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:09:18 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ca97c725-1592-41e0-bec2-09d5550ef08d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0720f92f-7dcb-4659-b6f7-ef4eae07ca61" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:09:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_42-20151221t210057z?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzQyLTIwMTUxMjIxdDIxMDA1N3o/JHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b996bbd6-549f-4d51-9144-c6c0575ab940" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:09:18 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4275b716-95af-474e-8454-dd01b3ed6d71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b996bbd6-549f-4d51-9144-c6c0575ab940" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 22:09:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?removenodes&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3JlbW92ZW5vZGVzJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-1783593343_41-20151221t201203z\",\r\n \"tvm-1783593343_42-20151221t210057z\"\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "111" + ], + "client-request-id": [ + "b45572f5-4d11-471f-ba40-d89aad87d7be" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 22:09:22 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "642701f6-ace2-4a0a-9696-937fc681734d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b45572f5-4d11-471f-ba40-d89aad87d7be" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstestaccount.eastus.batch.azure.com/pools/testPool" + ], + "Date": [ + "Mon, 21 Dec 2015 22:09:21 GMT" + ], + "ETag": [ + "0x8D30A536117C6C5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/pools/testPool/nodes?$filter=(id%20eq%20'tvm-1783593343_41-20151221t201203z')%20or%20(id%20eq%20'tvm-1783593343_42-20151221t210057z')&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9JTI4aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3olMjclMjklMjBvciUyMCUyOGlkJTIwZXElMjAlMjd0dm0tMTc4MzU5MzM0M180Mi0yMDE1MTIyMXQyMTAwNTd6JTI3JTI5JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2ae99978-4d2b-469f-9fb9-0e4d11601afe" + "2d588d8f-6192-4556-b962-76e605a19be8" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:26 GMT" + "Mon, 21 Dec 2015 22:09:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_30-20151117t214804z\",\r\n \"state\": \"idle\"\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_31-20151117t214804z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"idle\"\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1777,19 +2977,19 @@ "chunked" ], "request-id": [ - "68053ab7-21c2-47b3-b973-892eaf6e369e" + "5b8733e8-1cd6-468f-993d-aeff48bebe88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2ae99978-4d2b-469f-9fb9-0e4d11601afe" + "2d588d8f-6192-4556-b962-76e605a19be8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:28 GMT" + "Mon, 21 Dec 2015 22:09:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1798,26 +2998,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?$filter=(id%20eq%20'tvm-1783593343_30-20151117t214804z')%20or%20(id%20eq%20'tvm-1783593343_31-20151117t214804z')&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9JTI4aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzMwLTIwMTUxMTE3dDIxNDgwNHolMjclMjklMjBvciUyMCUyOGlkJTIwZXElMjAlMjd0dm0tMTc4MzU5MzM0M18zMS0yMDE1MTExN3QyMTQ4MDR6JTI3JTI5JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes?$filter=(id%20eq%20'tvm-1783593343_41-20151221t201203z')%20or%20(id%20eq%20'tvm-1783593343_42-20151221t210057z')&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzPyRmaWx0ZXI9JTI4aWQlMjBlcSUyMCUyN3R2bS0xNzgzNTkzMzQzXzQxLTIwMTUxMjIxdDIwMTIwM3olMjclMjklMjBvciUyMCUyOGlkJTIwZXElMjAlMjd0dm0tMTc4MzU5MzM0M180Mi0yMDE1MTIyMXQyMTAwNTd6JTI3JTI5JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d7228efb-91ce-4ce7-a1e3-7b5f7c513e03" + "5671a1c9-1691-4d4c-bd5f-9d3e5548e246" ], "ocp-date": [ - "Tue, 17 Nov 2015 22:25:27 GMT" + "Mon, 21 Dec 2015 22:09:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_30-20151117t214804z\",\r\n \"state\": \"leavingpool\"\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_31-20151117t214804z\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_41-20151221t201203z\",\r\n \"state\": \"leavingpool\"\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_42-20151221t210057z\",\r\n \"state\": \"idle\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1826,19 +3026,19 @@ "chunked" ], "request-id": [ - "7097659b-ec19-4992-8308-5e64d7f84e8a" + "b97e4f73-8167-4975-a6f0-252945442614" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d7228efb-91ce-4ce7-a1e3-7b5f7c513e03" + "5671a1c9-1691-4d4c-bd5f-9d3e5548e246" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 22:25:29 GMT" + "Mon, 21 Dec 2015 22:09:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUser.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUser.json index 811954624ce0..5aab7b42e442 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUser.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUser.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14978" ], "x-ms-request-id": [ - "6ee72fc5-ef7a-470c-b71b-5e93971d8530" + "6f17b111-cd2b-48be-b403-0355576fd548" ], "x-ms-correlation-request-id": [ - "6ee72fc5-ef7a-470c-b71b-5e93971d8530" + "6f17b111-cd2b-48be-b403-0355576fd548" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011150Z:6ee72fc5-ef7a-470c-b71b-5e93971d8530" + "CENTRALUS:20151221T200036Z:6f17b111-cd2b-48be-b403-0355576fd548" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:50 GMT" + "Mon, 21 Dec 2015 20:00:36 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14977" ], "x-ms-request-id": [ - "e8b60ddf-5375-4f2d-8898-020b35f20ea4" + "94bb50ac-6512-415c-8f55-874c9b9057e0" ], "x-ms-correlation-request-id": [ - "e8b60ddf-5375-4f2d-8898-020b35f20ea4" + "94bb50ac-6512-415c-8f55-874c9b9057e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011155Z:e8b60ddf-5375-4f2d-8898-020b35f20ea4" + "CENTRALUS:20151221T200040Z:94bb50ac-6512-415c-8f55-874c9b9057e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:54 GMT" + "Mon, 21 Dec 2015 20:00:40 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:11:52 GMT" + "Mon, 21 Dec 2015 20:00:36 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "457c2674-f570-4910-b951-eb99c93d5a4b" + "ddfe4f2a-c946-47d0-a9ab-487f5f17af2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14991" ], "x-ms-request-id": [ - "091ed803-8c2d-4a00-9d33-3e0caf76563c" + "3c31f3f2-0483-4d45-9ca6-f6e073fdba52" ], "x-ms-correlation-request-id": [ - "091ed803-8c2d-4a00-9d33-3e0caf76563c" + "3c31f3f2-0483-4d45-9ca6-f6e073fdba52" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011152Z:091ed803-8c2d-4a00-9d33-3e0caf76563c" + "CENTRALUS:20151221T200037Z:3c31f3f2-0483-4d45-9ca6-f6e073fdba52" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:52 GMT" + "Mon, 21 Dec 2015 20:00:37 GMT" ], "ETag": [ - "0x8D2EA35151B0762" + "0x8D30A41649978B7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:11:55 GMT" + "Mon, 21 Dec 2015 20:00:39 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "aa6ac1c4-a5a6-4f6d-a3d9-111293936fb5" + "f377c0c1-bf47-42c6-a417-85704a0315de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14990" ], "x-ms-request-id": [ - "9b972de8-dd88-4536-9034-958106de2616" + "c160a005-0586-4a5d-97a8-d76a0a12b80f" ], "x-ms-correlation-request-id": [ - "9b972de8-dd88-4536-9034-958106de2616" + "c160a005-0586-4a5d-97a8-d76a0a12b80f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011155Z:9b972de8-dd88-4536-9034-958106de2616" + "CENTRALUS:20151221T200041Z:c160a005-0586-4a5d-97a8-d76a0a12b80f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:55 GMT" + "Mon, 21 Dec 2015 20:00:40 GMT" ], "ETag": [ - "0x8D2EA3517302064" + "0x8D30A416674BDBF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "56634c31-9a0d-4a81-928c-6615ba4c42bc" + "1bfdf1c4-e86f-40ec-8206-6080354fc8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1193" ], "x-ms-request-id": [ - "22f32365-afbe-4763-b0fe-f069ac0ebb1f" + "eca9c5cd-39d5-4310-9b8c-e8fc10a90d5c" ], "x-ms-correlation-request-id": [ - "22f32365-afbe-4763-b0fe-f069ac0ebb1f" + "eca9c5cd-39d5-4310-9b8c-e8fc10a90d5c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011152Z:22f32365-afbe-4763-b0fe-f069ac0ebb1f" + "CENTRALUS:20151221T200038Z:eca9c5cd-39d5-4310-9b8c-e8fc10a90d5c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:52 GMT" + "Mon, 21 Dec 2015 20:00:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "5cd4b697-e1f2-419a-b078-166c3a705c06" + "09b4ee82-05ce-4819-8e34-dbd61fea70e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1192" ], "x-ms-request-id": [ - "0257e9ec-aee5-4e31-9440-af8ee91437ac" + "f899e0ea-9876-493b-b9e9-4bfc90824bd7" ], "x-ms-correlation-request-id": [ - "0257e9ec-aee5-4e31-9440-af8ee91437ac" + "f899e0ea-9876-493b-b9e9-4bfc90824bd7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011155Z:0257e9ec-aee5-4e31-9440-af8ee91437ac" + "CENTRALUS:20151221T200041Z:f899e0ea-9876-493b-b9e9-4bfc90824bd7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:55 GMT" + "Mon, 21 Dec 2015 20:00:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a5905c23-844e-488d-ba8e-e36d4cc8f03c" + "b67220d2-c492-4887-a334-e651063616ae" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:52 GMT" + "Mon, 21 Dec 2015 20:00:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "4fc2c487-59a1-4cbf-a225-fb8e68d3b937" + "8bf6cff0-d121-4145-bf1d-bc9245efd1b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a5905c23-844e-488d-ba8e-e36d4cc8f03c" + "b67220d2-c492-4887-a334-e651063616ae" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:11:53 GMT" + "Mon, 21 Dec 2015 20:00:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"createuser\",\r\n \"isAdmin\": false,\r\n \"expiryTime\": \"0001-01-01T00:00:00\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { @@ -398,16 +398,16 @@ "121" ], "client-request-id": [ - "fd6edbd7-cd1c-4d50-b317-ea68b8a4cae4" + "9f62548c-45f9-4dbd-968a-40def1cccc07" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:55 GMT" + "Mon, 21 Dec 2015 20:00:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -417,25 +417,25 @@ "chunked" ], "request-id": [ - "9035ecbd-7900-4d73-9dc4-5e0c883601c4" + "4773b28c-4316-4c08-9ceb-83c5993f01b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fd6edbd7-cd1c-4d50-b317-ea68b8a4cae4" + "9f62548c-45f9-4dbd-968a-40def1cccc07" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/createuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/createuser" ], "Date": [ - "Wed, 11 Nov 2015 01:11:57 GMT" + "Mon, 21 Dec 2015 20:00:42 GMT" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/createuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/createuser" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,22 +444,22 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/createuser?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycy9jcmVhdGV1c2VyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/createuser?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnMvY3JlYXRldXNlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "75aaa13a-abcc-4579-a21c-125f1ffc69d2" + "f4234195-7c3c-466a-8094-f4ec727b82a7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:56 GMT" + "Mon, 21 Dec 2015 20:00:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -469,19 +469,19 @@ "chunked" ], "request-id": [ - "26ec28f4-7424-478b-8278-3c177ae731ae" + "1dc2f6b2-48db-4c95-bc41-7dda16ad2a1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "75aaa13a-abcc-4579-a21c-125f1ffc69d2" + "f4234195-7c3c-466a-8094-f4ec727b82a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:11:57 GMT" + "Mon, 21 Dec 2015 20:00:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUserPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUserPipeline.json index 7c1f9ad61a9b..c80deb67f023 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUserPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestCreateComputeNodeUserPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14980" ], "x-ms-request-id": [ - "1d7dea14-718b-4001-a22f-7f13dc93732e" + "cd97f3a3-bd2f-494c-a6d9-15e16eb2bac9" ], "x-ms-correlation-request-id": [ - "1d7dea14-718b-4001-a22f-7f13dc93732e" + "cd97f3a3-bd2f-494c-a6d9-15e16eb2bac9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011111Z:1d7dea14-718b-4001-a22f-7f13dc93732e" + "CENTRALUS:20151221T195832Z:cd97f3a3-bd2f-494c-a6d9-15e16eb2bac9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:11 GMT" + "Mon, 21 Dec 2015 19:58:32 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14979" ], "x-ms-request-id": [ - "3371f353-7b7a-4105-81a4-33192b204eea" + "059db119-d2ad-4ab3-8f5c-d89ee9299e05" ], "x-ms-correlation-request-id": [ - "3371f353-7b7a-4105-81a4-33192b204eea" + "059db119-d2ad-4ab3-8f5c-d89ee9299e05" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011116Z:3371f353-7b7a-4105-81a4-33192b204eea" + "CENTRALUS:20151221T195836Z:059db119-d2ad-4ab3-8f5c-d89ee9299e05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:15 GMT" + "Mon, 21 Dec 2015 19:58:36 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:11:13 GMT" + "Mon, 21 Dec 2015 19:58:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4647639c-b434-4c93-b59b-920c831497e5" + "e8ec6aba-1b06-47f5-8671-5cec2f54885a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14977" ], "x-ms-request-id": [ - "9c7a0e05-ba98-405a-81ef-861c01eaa052" + "9f1bf638-dae8-4823-aeff-bbff954949fc" ], "x-ms-correlation-request-id": [ - "9c7a0e05-ba98-405a-81ef-861c01eaa052" + "9f1bf638-dae8-4823-aeff-bbff954949fc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011112Z:9c7a0e05-ba98-405a-81ef-861c01eaa052" + "CENTRALUS:20151221T195833Z:9f1bf638-dae8-4823-aeff-bbff954949fc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:12 GMT" + "Mon, 21 Dec 2015 19:58:33 GMT" ], "ETag": [ - "0x8D2EA34FDF7D526" + "0x8D30A411AC83A5C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:11:16 GMT" + "Mon, 21 Dec 2015 19:58:35 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "fc9d10db-3a7f-481b-aaeb-6e3286af7c0b" + "8c2d4283-de10-4da1-aacb-112905ed1314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14976" ], "x-ms-request-id": [ - "04f647a1-4fbf-405b-b047-074227b91c35" + "fb867e24-39f3-4fe8-9a3d-d708b730ccbf" ], "x-ms-correlation-request-id": [ - "04f647a1-4fbf-405b-b047-074227b91c35" + "fb867e24-39f3-4fe8-9a3d-d708b730ccbf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011116Z:04f647a1-4fbf-405b-b047-074227b91c35" + "CENTRALUS:20151221T195837Z:fb867e24-39f3-4fe8-9a3d-d708b730ccbf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:16 GMT" + "Mon, 21 Dec 2015 19:58:36 GMT" ], "ETag": [ - "0x8D2EA35000F1E82" + "0x8D30A411CABC41A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "fe97904c-29f3-4c8f-bde8-5d1d1d3176b4" + "ed4e8494-3bed-4884-8129-431c10257780" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1187" ], "x-ms-request-id": [ - "9bcede7b-5b8e-4bbc-98f6-4d57dc87e9bc" + "797e15a8-49dd-4ec3-a002-804dc8145fed" ], "x-ms-correlation-request-id": [ - "9bcede7b-5b8e-4bbc-98f6-4d57dc87e9bc" + "797e15a8-49dd-4ec3-a002-804dc8145fed" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011113Z:9bcede7b-5b8e-4bbc-98f6-4d57dc87e9bc" + "CENTRALUS:20151221T195833Z:797e15a8-49dd-4ec3-a002-804dc8145fed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:12 GMT" + "Mon, 21 Dec 2015 19:58:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "bb0c8871-6447-4f50-97aa-62b823e88213" + "9254a37e-bc75-4906-a8e2-1ceb6502fec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1186" ], "x-ms-request-id": [ - "73793354-a706-40e1-b343-4944c93425e8" + "7bbac4ba-43cf-45d6-acca-a2d802849f3e" ], "x-ms-correlation-request-id": [ - "73793354-a706-40e1-b343-4944c93425e8" + "7bbac4ba-43cf-45d6-acca-a2d802849f3e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011116Z:73793354-a706-40e1-b343-4944c93425e8" + "CENTRALUS:20151221T195837Z:7bbac4ba-43cf-45d6-acca-a2d802849f3e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:11:16 GMT" + "Mon, 21 Dec 2015 19:58:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bf58933b-fc87-4c52-9c8f-50baf10b1195" + "82a0c01f-ea17-4918-8d2f-3ebd18d2cb5c" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:12 GMT" + "Mon, 21 Dec 2015 19:58:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "0e17ddcc-91ba-44b7-84d5-233ec4fb251d" + "db11e81e-5e92-4e26-92a2-074cc8177bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bf58933b-fc87-4c52-9c8f-50baf10b1195" + "82a0c01f-ea17-4918-8d2f-3ebd18d2cb5c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:11:14 GMT" + "Mon, 21 Dec 2015 19:58:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "df95a563-7cf6-4063-84cf-5549a6c2ca8d" + "282319f5-6d48-4919-8436-e03281dfe6e4" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:16 GMT" + "Mon, 21 Dec 2015 19:58:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "20209e96-607b-435c-b76f-e2e096ce77ee" + "d19c5739-b4ae-4a38-aad8-5cf386206750" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "df95a563-7cf6-4063-84cf-5549a6c2ca8d" + "282319f5-6d48-4919-8436-e03281dfe6e4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:11:17 GMT" + "Mon, 21 Dec 2015 19:58:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,8 +435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"createuser2\",\r\n \"isAdmin\": true,\r\n \"expiryTime\": \"2020-01-01T00:00:00\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { @@ -447,16 +447,16 @@ "121" ], "client-request-id": [ - "68c08d5d-d64b-48d3-9d8f-2f86b2d589c6" + "6c9c691a-2827-4997-8a3c-a1e53073bcb0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:16 GMT" + "Mon, 21 Dec 2015 19:58:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -466,25 +466,25 @@ "chunked" ], "request-id": [ - "d35ccb7b-47ba-4595-98d6-4c0dcb3c8f62" + "98c5ce6f-ae53-44e4-92c4-5a52ecfb5d10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "68c08d5d-d64b-48d3-9d8f-2f86b2d589c6" + "6c9c691a-2827-4997-8a3c-a1e53073bcb0" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/createuser2" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/createuser2" ], "Date": [ - "Wed, 11 Nov 2015 01:11:17 GMT" + "Mon, 21 Dec 2015 19:58:38 GMT" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/createuser2" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/createuser2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -493,22 +493,22 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/createuser2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycy9jcmVhdGV1c2VyMj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/createuser2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnMvY3JlYXRldXNlcjI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "73a165bf-a93c-49c9-9743-8eaf0605afbd" + "505a0023-105e-4195-98cb-6ba34fcb6e99" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:11:17 GMT" + "Mon, 21 Dec 2015 19:58:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -518,19 +518,19 @@ "chunked" ], "request-id": [ - "0dee4d05-713c-41b0-81a9-facbf63e4e10" + "dfdec1c1-df81-47d4-8aec-b4345ea77b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "73a165bf-a93c-49c9-9743-8eaf0605afbd" + "505a0023-105e-4195-98cb-6ba34fcb6e99" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:11:18 GMT" + "Mon, 21 Dec 2015 19:58:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestDeleteComputeNodeUser.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestDeleteComputeNodeUser.json index 1380a8f42c53..2478f0619683 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestDeleteComputeNodeUser.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestDeleteComputeNodeUser.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14997" ], "x-ms-request-id": [ - "44785d23-5ce6-4a18-8ac0-8e7884618f83" + "51b8a4d2-b8a0-40ef-aff4-12277b9b2586" ], "x-ms-correlation-request-id": [ - "44785d23-5ce6-4a18-8ac0-8e7884618f83" + "51b8a4d2-b8a0-40ef-aff4-12277b9b2586" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011233Z:44785d23-5ce6-4a18-8ac0-8e7884618f83" + "CENTRALUS:20151221T195912Z:51b8a4d2-b8a0-40ef-aff4-12277b9b2586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:12:32 GMT" + "Mon, 21 Dec 2015 19:59:12 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14996" ], "x-ms-request-id": [ - "d6566226-6453-47c9-98e7-b0e7aea3dab3" + "c34c6245-afc3-45cf-9644-aa3e0cb5fb87" ], "x-ms-correlation-request-id": [ - "d6566226-6453-47c9-98e7-b0e7aea3dab3" + "c34c6245-afc3-45cf-9644-aa3e0cb5fb87" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011238Z:d6566226-6453-47c9-98e7-b0e7aea3dab3" + "CENTRALUS:20151221T195917Z:c34c6245-afc3-45cf-9644-aa3e0cb5fb87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:12:38 GMT" + "Mon, 21 Dec 2015 19:59:17 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:12:34 GMT" + "Mon, 21 Dec 2015 19:59:12 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6285e6f6-b29f-4b4b-ba2b-d87e2cf01358" + "5b71c774-6423-4766-980a-32708764c9cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14996" ], "x-ms-request-id": [ - "74b0c5b8-3ee1-4b8c-b51b-e7c416427a13" + "57953b27-659c-4d2b-8744-95dc81e3099b" ], "x-ms-correlation-request-id": [ - "74b0c5b8-3ee1-4b8c-b51b-e7c416427a13" + "57953b27-659c-4d2b-8744-95dc81e3099b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011234Z:74b0c5b8-3ee1-4b8c-b51b-e7c416427a13" + "CENTRALUS:20151221T195913Z:57953b27-659c-4d2b-8744-95dc81e3099b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:12:33 GMT" + "Mon, 21 Dec 2015 19:59:13 GMT" ], "ETag": [ - "0x8D2EA352E3533ED" + "0x8D30A41327C2B75" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:12:38 GMT" + "Mon, 21 Dec 2015 19:59:16 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a7a0801a-d844-4763-9566-9fbc38af24f3" + "22c361c6-3d53-41c2-b265-729dc87cf4e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14995" ], "x-ms-request-id": [ - "d465d8ad-3206-4ba6-beea-3b3347612ddc" + "9c5dcde2-20e9-4195-aa50-8c94311e93e8" ], "x-ms-correlation-request-id": [ - "d465d8ad-3206-4ba6-beea-3b3347612ddc" + "9c5dcde2-20e9-4195-aa50-8c94311e93e8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011238Z:d465d8ad-3206-4ba6-beea-3b3347612ddc" + "CENTRALUS:20151221T195917Z:9c5dcde2-20e9-4195-aa50-8c94311e93e8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:12:38 GMT" + "Mon, 21 Dec 2015 19:59:17 GMT" ], "ETag": [ - "0x8D2EA3530EE5CC7" + "0x8D30A4134CFEB07" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "eadea2d8-2c35-4e86-ad9b-d857e7e97205" + "cb4095c9-762c-44e5-850e-4636efa3c0bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-request-id": [ - "ee3b7367-351a-4b17-a7b8-63e58f618a08" + "c458505e-4856-40ef-bf1e-07fccb7d85f8" ], "x-ms-correlation-request-id": [ - "ee3b7367-351a-4b17-a7b8-63e58f618a08" + "c458505e-4856-40ef-bf1e-07fccb7d85f8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011234Z:ee3b7367-351a-4b17-a7b8-63e58f618a08" + "CENTRALUS:20151221T195914Z:c458505e-4856-40ef-bf1e-07fccb7d85f8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:12:33 GMT" + "Mon, 21 Dec 2015 19:59:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "ce10cc60-14d5-46f9-a70c-a637de24eb04" + "1757069d-b8bf-4d99-be98-f7a67d2d793b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-request-id": [ - "5ecad04c-f058-454e-8d3f-8c1b3ac566c3" + "fd9c5779-3f88-4f5a-8472-d7c3024a2fb4" ], "x-ms-correlation-request-id": [ - "5ecad04c-f058-454e-8d3f-8c1b3ac566c3" + "fd9c5779-3f88-4f5a-8472-d7c3024a2fb4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011239Z:5ecad04c-f058-454e-8d3f-8c1b3ac566c3" + "CENTRALUS:20151221T195917Z:fd9c5779-3f88-4f5a-8472-d7c3024a2fb4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:12:38 GMT" + "Mon, 21 Dec 2015 19:59:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aea96635-ae6d-4626-9cf7-ffe64a83fd6e" + "53f96ff6-3b54-4e43-a15c-41e9e495a16e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:12:34 GMT" + "Mon, 21 Dec 2015 19:59:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "b992e053-b921-4cbd-bb63-3031b25ac50b" + "73b0b481-8c5f-437a-bb61-dfff635b4f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "aea96635-ae6d-4626-9cf7-ffe64a83fd6e" + "53f96ff6-3b54-4e43-a15c-41e9e495a16e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:12:35 GMT" + "Mon, 21 Dec 2015 19:59:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"deleteuser\",\r\n \"isAdmin\": false,\r\n \"expiryTime\": \"0001-01-01T00:00:00\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { @@ -398,16 +398,16 @@ "121" ], "client-request-id": [ - "5c4c3280-4a79-422f-a093-2bb6784dcdb4" + "1f92828b-e8ed-4a07-a719-e9732d9325b6" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:12:34 GMT" + "Mon, 21 Dec 2015 19:59:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -417,25 +417,25 @@ "chunked" ], "request-id": [ - "cfaa6df9-d753-4fd9-9ef0-bf846e69e0a4" + "2446bb7e-30d0-4389-89f9-a5cd4b359f9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5c4c3280-4a79-422f-a093-2bb6784dcdb4" + "1f92828b-e8ed-4a07-a719-e9732d9325b6" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/deleteuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/deleteuser" ], "Date": [ - "Wed, 11 Nov 2015 01:12:35 GMT" + "Mon, 21 Dec 2015 19:59:12 GMT" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/deleteuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/deleteuser" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,22 +444,22 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/deleteuser?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycy9kZWxldGV1c2VyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/deleteuser?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnMvZGVsZXRldXNlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8d3fa70e-2287-46dc-8759-b63c911ffd4a" + "6e7107e4-2330-460c-b23e-a29e0b346670" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:12:38 GMT" + "Mon, 21 Dec 2015 19:59:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -469,19 +469,19 @@ "chunked" ], "request-id": [ - "c5bb00ac-67c1-46e0-a5e8-77ee749fac27" + "d9acd0ba-4959-4cf3-82f6-5e25a3c6c93c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8d3fa70e-2287-46dc-8759-b63c911ffd4a" + "6e7107e4-2330-460c-b23e-a29e0b346670" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:12:40 GMT" + "Mon, 21 Dec 2015 19:59:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -490,26 +490,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/deleteuser?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycy9kZWxldGV1c2VyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/deleteuser?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnMvZGVsZXRldXNlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3cc6f127-062e-455e-9dfb-c0d229f4b61c" + "6d8a20d1-1741-4f7a-9023-55c98cd8564e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:12:39 GMT" + "Mon, 21 Dec 2015 19:59:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"NodeUserNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified node user does not exist.\\nRequestId:13f85097-d806-4d99-a8c6-25d394f581e5\\nTime:2015-11-11T01:12:40.8454845Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"NodeUserNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified node user does not exist.\\nRequestId:255801d5-5a11-4fc4-a7a0-3b6d19606e50\\nTime:2015-12-21T19:59:17.5493749Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "343" @@ -518,19 +518,19 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "13f85097-d806-4d99-a8c6-25d394f581e5" + "255801d5-5a11-4fc4-a7a0-3b6d19606e50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3cc6f127-062e-455e-9dfb-c0d229f4b61c" + "6d8a20d1-1741-4f7a-9023-55c98cd8564e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:12:40 GMT" + "Mon, 21 Dec 2015 19:59:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestUpdateComputeNodeUser.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestUpdateComputeNodeUser.json index a61705abdc8a..538868ce24f4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestUpdateComputeNodeUser.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestUpdateComputeNodeUser.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14959" ], "x-ms-request-id": [ - "92791ab5-9fd6-4c5b-bd21-3932acd96448" + "d4e1b275-859a-4ac2-a173-fe91c5309f0f" ], "x-ms-correlation-request-id": [ - "92791ab5-9fd6-4c5b-bd21-3932acd96448" + "d4e1b275-859a-4ac2-a173-fe91c5309f0f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011030Z:92791ab5-9fd6-4c5b-bd21-3932acd96448" + "CENTRALUS:20151221T195953Z:d4e1b275-859a-4ac2-a173-fe91c5309f0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:10:29 GMT" + "Mon, 21 Dec 2015 19:59:53 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14958" ], "x-ms-request-id": [ - "b25399c1-a576-40f6-852f-bc8fb8208e14" + "89c5f178-5a90-4d0b-bc08-b9585c4d84f5" ], "x-ms-correlation-request-id": [ - "b25399c1-a576-40f6-852f-bc8fb8208e14" + "89c5f178-5a90-4d0b-bc08-b9585c4d84f5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011035Z:b25399c1-a576-40f6-852f-bc8fb8208e14" + "CENTRALUS:20151221T195958Z:89c5f178-5a90-4d0b-bc08-b9585c4d84f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:10:34 GMT" + "Mon, 21 Dec 2015 19:59:58 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:10:31 GMT" + "Mon, 21 Dec 2015 19:59:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1e4dee74-74e2-45e4-80ee-f51e031cc443" + "32f6952d-a703-4257-abe4-27a56d061268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14975" ], "x-ms-request-id": [ - "44c86f6f-f197-4d6f-a862-2b8bb9f5ab57" + "9a1c2cc0-dbcc-4f48-81a3-f51fbc94aa73" ], "x-ms-correlation-request-id": [ - "44c86f6f-f197-4d6f-a862-2b8bb9f5ab57" + "9a1c2cc0-dbcc-4f48-81a3-f51fbc94aa73" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011031Z:44c86f6f-f197-4d6f-a862-2b8bb9f5ab57" + "CENTRALUS:20151221T195954Z:9a1c2cc0-dbcc-4f48-81a3-f51fbc94aa73" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:10:31 GMT" + "Mon, 21 Dec 2015 19:59:53 GMT" ], "ETag": [ - "0x8D2EA34E52CE6CF" + "0x8D30A414AEED5DB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:10:36 GMT" + "Mon, 21 Dec 2015 19:59:59 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d1809975-a894-4c3a-8afd-db31751b0aec" + "0b807197-2eee-4a3f-b6db-2accc5fdbceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14979" ], "x-ms-request-id": [ - "2e9e3db2-3907-4865-bffe-356074aded81" + "adfdd2d2-6bca-4651-874c-7536309efe31" ], "x-ms-correlation-request-id": [ - "2e9e3db2-3907-4865-bffe-356074aded81" + "adfdd2d2-6bca-4651-874c-7536309efe31" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011035Z:2e9e3db2-3907-4865-bffe-356074aded81" + "CENTRALUS:20151221T200000Z:adfdd2d2-6bca-4651-874c-7536309efe31" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:10:35 GMT" + "Mon, 21 Dec 2015 20:00:00 GMT" ], "ETag": [ - "0x8D2EA34E7C18155" + "0x8D30A414E476189" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "1f1e6e7c-c333-4d7e-8f89-739e7315164e" + "d24fc614-6cf1-482a-8c58-53f2eeefc096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-request-id": [ - "9f348908-2ecd-4f8d-857a-ee92871c9541" + "61d8eb90-5385-4391-ae76-9f322006e420" ], "x-ms-correlation-request-id": [ - "9f348908-2ecd-4f8d-857a-ee92871c9541" + "61d8eb90-5385-4391-ae76-9f322006e420" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011031Z:9f348908-2ecd-4f8d-857a-ee92871c9541" + "CENTRALUS:20151221T195954Z:61d8eb90-5385-4391-ae76-9f322006e420" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:10:31 GMT" + "Mon, 21 Dec 2015 19:59:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "1e64d30b-dbb2-46f7-b06f-d520a6b60a77" + "4201815b-a335-4b29-bc1a-c2efbd790b5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-request-id": [ - "23d6d984-7013-46d1-8182-5b3e06b207ca" + "05877b97-e29f-4099-8a1a-624f6b3295a8" ], "x-ms-correlation-request-id": [ - "23d6d984-7013-46d1-8182-5b3e06b207ca" + "05877b97-e29f-4099-8a1a-624f6b3295a8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T011035Z:23d6d984-7013-46d1-8182-5b3e06b207ca" + "CENTRALUS:20151221T200000Z:05877b97-e29f-4099-8a1a-624f6b3295a8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:10:35 GMT" + "Mon, 21 Dec 2015 20:00:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ff2ad328-a101-4d07-b382-e3f5a1b76ec6" + "728e966f-934f-4dbc-abc2-f97f3828c693" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:10:31 GMT" + "Mon, 21 Dec 2015 19:59:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 23,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "d597a1d3-783f-42b9-b8dd-b1ce78cadc44" + "a1482384-f448-4fc5-93e4-2f12c2217b97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ff2ad328-a101-4d07-b382-e3f5a1b76ec6" + "728e966f-934f-4dbc-abc2-f97f3828c693" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:10:31 GMT" + "Mon, 21 Dec 2015 19:59:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"updateuser\",\r\n \"isAdmin\": false,\r\n \"expiryTime\": \"0001-01-01T00:00:00\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { @@ -398,16 +398,16 @@ "121" ], "client-request-id": [ - "4c32e2ba-cd9e-420b-9373-a9f919a30b39" + "4786b974-532e-42fe-b8c2-e19833d850d6" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:10:31 GMT" + "Mon, 21 Dec 2015 19:59:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -417,25 +417,25 @@ "chunked" ], "request-id": [ - "8bd7057f-35a9-4134-a89d-6e47011b8da6" + "a3e4847f-6162-4cd7-992a-3dc1ee8372af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4c32e2ba-cd9e-420b-9373-a9f919a30b39" + "4786b974-532e-42fe-b8c2-e19833d850d6" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/updateuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/updateuser" ], "Date": [ - "Wed, 11 Nov 2015 01:10:33 GMT" + "Mon, 21 Dec 2015 19:59:56 GMT" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/updateuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/updateuser" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,10 +444,10 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/updateuser?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycy91cGRhdGV1c2VyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/updateuser?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnMvdXBkYXRldXNlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"Abcdefghijk1234!\",\r\n \"expiryTime\": \"2015-11-15T17:10:35.5400105-08:00\"\r\n}", + "RequestBody": "{\r\n \"password\": \"Abcdefghijk1234!\",\r\n \"expiryTime\": \"2015-12-26T12:00:00.7408688-08:00\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -456,16 +456,16 @@ "92" ], "client-request-id": [ - "834ced5f-a56c-4f48-806f-7f11b215afdf" + "017e8caa-8a05-4342-b9eb-68455421e2c0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:10:35 GMT" + "Mon, 21 Dec 2015 20:00:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -475,22 +475,22 @@ "chunked" ], "request-id": [ - "43c883d0-5eeb-4e0f-a055-c139f2fb64fa" + "cae11454-c62a-4121-8056-9c6bf0aa5736" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "834ced5f-a56c-4f48-806f-7f11b215afdf" + "017e8caa-8a05-4342-b9eb-68455421e2c0" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/updateuser" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/updateuser" ], "Date": [ - "Wed, 11 Nov 2015 01:10:37 GMT" + "Mon, 21 Dec 2015 20:00:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -499,22 +499,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/users/updateuser?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei91c2Vycy91cGRhdGV1c2VyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/users/updateuser?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovdXNlcnMvdXBkYXRldXNlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "81268705-c334-4498-87d0-9119f57db484" + "4cb7c1d4-cd1f-4588-8c04-9514efa5a724" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:10:36 GMT" + "Mon, 21 Dec 2015 20:00:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -524,19 +524,19 @@ "chunked" ], "request-id": [ - "857fc276-a2ce-47e7-9c38-398f3549e88a" + "dbe076c6-bdaa-4d10-ba42-bc511f03dee2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "81268705-c334-4498-87d0-9119f57db484" + "4cb7c1d4-cd1f-4588-8c04-9514efa5a724" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:10:37 GMT" + "Mon, 21 Dec 2015 20:00:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByName.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByName.json index ab2eb904f8a2..de726de35247 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByName.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14885" ], "x-ms-request-id": [ - "8526d3e0-e424-4c96-ab2b-a5173a622f4e" + "af62047c-efeb-4c7e-b6ea-d30fc5613bde" ], "x-ms-correlation-request-id": [ - "8526d3e0-e424-4c96-ab2b-a5173a622f4e" + "af62047c-efeb-4c7e-b6ea-d30fc5613bde" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011652Z:8526d3e0-e424-4c96-ab2b-a5173a622f4e" + "CENTRALUS:20151221T191940Z:af62047c-efeb-4c7e-b6ea-d30fc5613bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:52 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14883" ], "x-ms-request-id": [ - "5edb9668-29fe-43b1-8147-b2b29918e759" + "20f13efa-de5e-4893-a3a3-8fde68337070" ], "x-ms-correlation-request-id": [ - "5edb9668-29fe-43b1-8147-b2b29918e759" + "20f13efa-de5e-4893-a3a3-8fde68337070" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011659Z:5edb9668-29fe-43b1-8147-b2b29918e759" + "CENTRALUS:20151221T191949Z:20f13efa-de5e-4893-a3a3-8fde68337070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:59 GMT" + "Mon, 21 Dec 2015 19:19:48 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:39 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "29485e97-e420-4e28-bf78-d8610edbe873" + "7765da3f-7bc7-4357-a5ee-e1a150854ad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-request-id": [ - "d585a940-8598-43a4-8524-14c14b6ad80d" + "ef028631-4ecc-4769-a877-f84978a80939" ], "x-ms-correlation-request-id": [ - "d585a940-8598-43a4-8524-14c14b6ad80d" + "ef028631-4ecc-4769-a877-f84978a80939" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011653Z:d585a940-8598-43a4-8524-14c14b6ad80d" + "CENTRALUS:20151221T191941Z:ef028631-4ecc-4769-a877-f84978a80939" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:53 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "ETag": [ - "0x8D2EEECC8264D0E" + "0x8D30A3BAC420295" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:17:01 GMT" + "Mon, 21 Dec 2015 19:19:48 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ef0ef311-946a-4818-9d26-032d96051127" + "eb0932c4-8d34-4108-9a34-c041e2176f0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14976" ], "x-ms-request-id": [ - "bb850e13-eac0-43ca-bc8e-895fe52290a2" + "d76e4fca-b9a7-4f0e-9fe1-52a12e0b9f6c" ], "x-ms-correlation-request-id": [ - "bb850e13-eac0-43ca-bc8e-895fe52290a2" + "d76e4fca-b9a7-4f0e-9fe1-52a12e0b9f6c" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011700Z:bb850e13-eac0-43ca-bc8e-895fe52290a2" + "CENTRALUS:20151221T191949Z:d76e4fca-b9a7-4f0e-9fe1-52a12e0b9f6c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:59 GMT" + "Mon, 21 Dec 2015 19:19:48 GMT" ], "ETag": [ - "0x8D2EEECCBE02731" + "0x8D30A3BB131C61B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "f272a2c7-8b3e-445b-89a5-48da0c398351" + "8f72094e-2db3-4681-9403-4fce49d7c18c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1188" ], "x-ms-request-id": [ - "85f256bc-13e9-4f6c-8a4c-bb55097aae10" + "a7a26a57-b721-4de0-9ff7-a2379c1133c5" ], "x-ms-correlation-request-id": [ - "85f256bc-13e9-4f6c-8a4c-bb55097aae10" + "a7a26a57-b721-4de0-9ff7-a2379c1133c5" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011653Z:85f256bc-13e9-4f6c-8a4c-bb55097aae10" + "CENTRALUS:20151221T191941Z:a7a26a57-b721-4de0-9ff7-a2379c1133c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:53 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "202752b1-94b0-4434-b2a7-a7954e8477b3" + "4ae52209-9b0f-4dba-a2a9-a8bd73839e7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1187" ], "x-ms-request-id": [ - "3e7593da-9d5d-493c-9944-1aa08ea57162" + "c1a2fe55-c4e9-46d4-b33c-13cba5cea4b8" ], "x-ms-correlation-request-id": [ - "3e7593da-9d5d-493c-9944-1aa08ea57162" + "c1a2fe55-c4e9-46d4-b33c-13cba5cea4b8" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011700Z:3e7593da-9d5d-493c-9944-1aa08ea57162" + "CENTRALUS:20151221T191949Z:c1a2fe55-c4e9-46d4-b33c-13cba5cea4b8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:17:00 GMT" + "Mon, 21 Dec 2015 19:19:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteNodeByFileComputeNodeByName\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "116" ], "client-request-id": [ - "d3822122-0ce3-4dd7-ad41-777b79220929" + "687ed35f-b640-47c5-a6b3-dc4e6f397cc0" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:53 GMT" + "Mon, 21 Dec 2015 19:19:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:54 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f03abd1b-4c78-4ac2-a719-9b8a77d3064c" + "bc0f434f-f1cc-4237-97b2-077c3f5b4a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d3822122-0ce3-4dd7-ad41-777b79220929" + "687ed35f-b640-47c5-a6b3-dc4e6f397cc0" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "ETag": [ - "0x8D2EEECC80E3110" + "0x8D30A3BACB72552" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "102" ], "client-request-id": [ - "d7ae285c-b419-462b-8887-182a2184d7da" + "6ee0df6a-7dc4-4d50-b26b-64d9e5168f27" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:54 GMT" + "Mon, 21 Dec 2015 19:19:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c3b11fca-e6cf-4b1a-8ec8-a629241336e3" + "96c4cada-eb70-4d3f-9c8a-2d5d312ac4bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d7ae285c-b419-462b-8887-182a2184d7da" + "6ee0df6a-7dc4-4d50-b26b-64d9e5168f27" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByName/tasks/task1" ], "Date": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "ETag": [ - "0x8D2EEECC85F76FB" + "0x8D30A3BACEE0409" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByName/tasks/task1" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks/task1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzL3Rhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks/task1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzL3Rhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7accf7ec-c119-444b-aa3b-db1a189d8c93" + "885e4190-7b30-49a5-a515-2eea897eeb27" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:54 GMT" + "Mon, 21 Dec 2015 19:19:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByName/tasks/task1\",\r\n \"eTag\": \"0x8D2EEECC85F76FB\",\r\n \"creationTime\": \"2015-11-17T01:16:55.4053371Z\",\r\n \"lastModified\": \"2015-11-17T01:16:55.4053371Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-17T01:16:55.4053371Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByName/tasks/task1\",\r\n \"eTag\": \"0x8D30A3BACEE0409\",\r\n \"creationTime\": \"2015-12-21T19:19:40.9999881Z\",\r\n \"lastModified\": \"2015-12-21T19:19:40.9999881Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:19:40.9999881Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "64ceba7e-6d92-47f9-9d7d-e00d71a7314e" + "9f118050-337b-471d-9cf0-75ef2f8e5ced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7accf7ec-c119-444b-aa3b-db1a189d8c93" + "885e4190-7b30-49a5-a515-2eea897eeb27" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "ETag": [ - "0x8D2EEECC85F76FB" + "0x8D30A3BACEE0409" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks/task1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzL3Rhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks/task1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzL3Rhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "42c78437-8d5b-4129-84d6-46eebae9b923" + "44283c2d-9e33-450f-938a-114eb7f86165" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:56 GMT" + "Mon, 21 Dec 2015 19:19:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByName/tasks/task1\",\r\n \"eTag\": \"0x8D2EEECC85F76FB\",\r\n \"creationTime\": \"2015-11-17T01:16:55.4053371Z\",\r\n \"lastModified\": \"2015-11-17T01:16:55.4053371Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-17T01:16:55.9280439Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-17T01:16:55.8050446Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-17T01:16:55.8050446Z\",\r\n \"endTime\": \"2015-11-17T01:16:55.9280439Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_19-20151117t002133z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_19-20151117t002133z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_19-20151117t002133z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByName/tasks/task1\",\r\n \"eTag\": \"0x8D30A3BACEE0409\",\r\n \"creationTime\": \"2015-12-21T19:19:40.9999881Z\",\r\n \"lastModified\": \"2015-12-21T19:19:40.9999881Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:19:44.4466936Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:19:44.3126893Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:19:44.3126893Z\",\r\n \"endTime\": \"2015-12-21T19:19:44.4466936Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "37d70665-d838-4513-b354-671d3fabe54e" + "19addb73-2ca4-4cd2-82dc-fd1244996691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "42c78437-8d5b-4129-84d6-46eebae9b923" + "44283c2d-9e33-450f-938a-114eb7f86165" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:57 GMT" + "Mon, 21 Dec 2015 19:19:44 GMT" ], "ETag": [ - "0x8D2EEECC85F76FB" + "0x8D30A3BACEE0409" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e8389940-74f1-47d9-9f55-3d81664b0043" + "38f313b1-ea4c-43db-b540-3083044ff941" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:54 GMT" + "Mon, 21 Dec 2015 19:19:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "2d74142e-8e74-48cd-9a25-39b4a42af84b" + "4557eae6-5cba-4b87-aed9-a78ed6bf2e2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e8389940-74f1-47d9-9f55-3d81664b0043" + "38f313b1-ea4c-43db-b540-3083044ff941" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:55 GMT" + "Mon, 21 Dec 2015 19:19:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,71 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c5533132-0eeb-4d4e-b815-4e0b0a2f9ef8" + "f018d49e-85ef-4d9d-9d2d-78d9dee4ec0d" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:56 GMT" + "Mon, 21 Dec 2015 19:19:44 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "65e9277f-e660-4619-a415-50cbc8fa6fad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f018d49e-85ef-4d9d-9d2d-78d9dee4ec0d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:19:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5181efc7-1941-4d86-971f-30c28b6ff38f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:19:46 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -652,19 +701,19 @@ "chunked" ], "request-id": [ - "41f1ecff-2484-476d-8ada-1c7ec49aa826" + "04d86780-9c81-4b07-8c16-0f78177f3ac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c5533132-0eeb-4d4e-b815-4e0b0a2f9ef8" + "5181efc7-1941-4d86-971f-30c28b6ff38f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:57 GMT" + "Mon, 21 Dec 2015 19:19:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,22 +722,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_19-20151117t002133z/files/workitems%5CdeleteNodeByFileComputeNodeByName%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE5LTIwMTUxMTE3dDAwMjEzM3ovZmlsZXMvd29ya2l0ZW1zJTVDZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lJTVDam9iLTElNUN0YXNrMSU1Q3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems%5CdeleteNodeByFileComputeNodeByName%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvd29ya2l0ZW1zJTVDZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lJTVDam9iLTElNUN0YXNrMSU1Q3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3e51ec7e-f3ec-45de-b531-a2da4260badf" + "ab3af1e1-0d0b-442a-b9b7-eac8cf4773da" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:17:00 GMT" + "Mon, 21 Dec 2015 19:19:49 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -698,19 +747,19 @@ "chunked" ], "request-id": [ - "f7f98224-f8ef-4795-a322-e2e8dde33f9e" + "9296e7b5-5d48-4624-ab96-d2955ddda8fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3e51ec7e-f3ec-45de-b531-a2da4260badf" + "ab3af1e1-0d0b-442a-b9b7-eac8cf4773da" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:17:01 GMT" + "Mon, 21 Dec 2015 19:19:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -719,22 +768,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_19-20151117t002133z/files?$filter=startswith(name%2C'workitems%5CdeleteNodeByFileComputeNodeByName%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE5LTIwMTUxMTE3dDAwMjEzM3ovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVCeUZpbGVDb21wdXRlTm9kZUJ5TmFtZSU1Q2pvYi0xJTVDdGFzazElNUN3ZCU1Q3Rlc3RGaWxlLnR4dCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?$filter=startswith(name%2C'workitems%5CdeleteNodeByFileComputeNodeByName%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVCeUZpbGVDb21wdXRlTm9kZUJ5TmFtZSU1Q2pvYi0xJTVDdGFzazElNUN3ZCU1Q3Rlc3RGaWxlLnR4dCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2600194c-5f05-4d4d-a698-e949c7a27816" + "fa438c5f-fad9-445b-bab3-e758c79c3d4b" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:17:00 GMT" + "Mon, 21 Dec 2015 19:19:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -747,19 +796,19 @@ "chunked" ], "request-id": [ - "66498e78-31b1-4836-9238-c163bfbff18c" + "c5076378-4cc1-414e-9408-a30e3f799bf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2600194c-5f05-4d4d-a698-e949c7a27816" + "fa438c5f-fad9-445b-bab3-e758c79c3d4b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:17:01 GMT" + "Mon, 21 Dec 2015 19:19:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -768,22 +817,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByName?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlOYW1lP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "796a6e18-72f0-4085-8bf5-b85d5ac99898" + "557e7887-a08a-43c6-bb44-2f1f056d796f" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:17:00 GMT" + "Mon, 21 Dec 2015 19:19:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -793,19 +842,19 @@ "chunked" ], "request-id": [ - "d8564c51-217a-4de0-8f98-feb5326f02b2" + "fe27a232-224b-479a-af88-9f0d69899468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "796a6e18-72f0-4085-8bf5-b85d5ac99898" + "557e7887-a08a-43c6-bb44-2f1f056d796f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:17:01 GMT" + "Mon, 21 Dec 2015 19:19:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByPipeline.json index a1780183656e..53754e1e2269 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNodeByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "16408404-6ec0-4432-8cc9-8d8f57a60dbb" + "59b377c7-52c4-4c9d-95e4-a66be3d2782f" ], "x-ms-correlation-request-id": [ - "16408404-6ec0-4432-8cc9-8d8f57a60dbb" + "59b377c7-52c4-4c9d-95e4-a66be3d2782f" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011606Z:16408404-6ec0-4432-8cc9-8d8f57a60dbb" + "CENTRALUS:20151221T191737Z:59b377c7-52c4-4c9d-95e4-a66be3d2782f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:06 GMT" + "Mon, 21 Dec 2015 19:17:37 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "109cb520-df2a-4612-bc5e-e5f14bf0c9b0" + "218cc29a-000d-497b-a881-9152e84b7839" ], "x-ms-correlation-request-id": [ - "109cb520-df2a-4612-bc5e-e5f14bf0c9b0" + "218cc29a-000d-497b-a881-9152e84b7839" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011615Z:109cb520-df2a-4612-bc5e-e5f14bf0c9b0" + "CENTRALUS:20151221T191744Z:218cc29a-000d-497b-a881-9152e84b7839" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:15 GMT" + "Mon, 21 Dec 2015 19:17:44 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:08 GMT" + "Mon, 21 Dec 2015 19:17:37 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6adad153-426a-4146-90a6-ca262705d970" + "7012cac4-a23f-4cc5-8e07-42a008346172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14997" ], "x-ms-request-id": [ - "356a6ed4-2763-46ab-8d49-318314ba4aca" + "1fd8115d-e6b5-42ae-a71e-64f1abff8e86" ], "x-ms-correlation-request-id": [ - "356a6ed4-2763-46ab-8d49-318314ba4aca" + "1fd8115d-e6b5-42ae-a71e-64f1abff8e86" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011608Z:356a6ed4-2763-46ab-8d49-318314ba4aca" + "CENTRALUS:20151221T191738Z:1fd8115d-e6b5-42ae-a71e-64f1abff8e86" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:07 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "ETag": [ - "0x8D2EEECAC83EE23" + "0x8D30A3B632B0580" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:16 GMT" + "Mon, 21 Dec 2015 19:17:43 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "da5eab25-7f9d-49f8-b0ef-e84aaa4be978" + "52c6d3c3-d327-44b8-a6cc-932c5082ac7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14996" ], "x-ms-request-id": [ - "db9fa8f3-fce7-4491-a876-7cbe00ed02f5" + "91e8d091-77a6-4f7a-a781-b128ef241f68" ], "x-ms-correlation-request-id": [ - "db9fa8f3-fce7-4491-a876-7cbe00ed02f5" + "91e8d091-77a6-4f7a-a781-b128ef241f68" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011616Z:db9fa8f3-fce7-4491-a876-7cbe00ed02f5" + "CENTRALUS:20151221T191744Z:91e8d091-77a6-4f7a-a781-b128ef241f68" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:15 GMT" + "Mon, 21 Dec 2015 19:17:44 GMT" ], "ETag": [ - "0x8D2EEECB1413A09" + "0x8D30A3B66F5C150" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "8a113fa6-1177-4f87-901a-9b028fd26872" + "9354c48e-5359-4cb6-9c2b-21ff770e0ffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "1b704c0f-39c7-46f4-8cc1-7f9720b48470" + "2f2b5d6f-8522-4df5-bd2e-e8a235f2bdfb" ], "x-ms-correlation-request-id": [ - "1b704c0f-39c7-46f4-8cc1-7f9720b48470" + "2f2b5d6f-8522-4df5-bd2e-e8a235f2bdfb" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011608Z:1b704c0f-39c7-46f4-8cc1-7f9720b48470" + "CENTRALUS:20151221T191738Z:2f2b5d6f-8522-4df5-bd2e-e8a235f2bdfb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:08 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "ce5e02d1-4f19-4130-bdb7-c036a943af8e" + "1ba76d92-419e-4a9d-92ef-2c70ddf01fd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "3247b295-31f0-4e3e-bfd0-ac48cea5e85a" + "3a0c7994-3c0c-4255-aa4f-1ed321d9929f" ], "x-ms-correlation-request-id": [ - "3247b295-31f0-4e3e-bfd0-ac48cea5e85a" + "3a0c7994-3c0c-4255-aa4f-1ed321d9929f" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T011616Z:3247b295-31f0-4e3e-bfd0-ac48cea5e85a" + "CENTRALUS:20151221T191745Z:3a0c7994-3c0c-4255-aa4f-1ed321d9929f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:16:15 GMT" + "Mon, 21 Dec 2015 19:17:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteNodeByFileComputeNodeByPipeline\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "120" ], "client-request-id": [ - "5c8e7915-c44c-4e03-bb8d-611e5db4d354" + "6f3a89be-7dc2-4262-b2d8-2c0d7f24b586" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:08 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:09 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5fc41ac8-218c-4a9f-875e-217bcbfdfb43" + "99eea080-5e17-41e0-9993-d9e15cf47ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5c8e7915-c44c-4e03-bb8d-611e5db4d354" + "6f3a89be-7dc2-4262-b2d8-2c0d7f24b586" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "ETag": [ - "0x8D2EEECAD2CD68E" + "0x8D30A3B63C2A72A" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "102" ], "client-request-id": [ - "fe615ff0-04d0-4e3f-9db0-adf14b7c97e6" + "0c9ac378-b3a7-43a9-8ed9-ecdade558b98" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:09 GMT" + "Mon, 21 Dec 2015 19:17:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "759280eb-f592-45e5-b399-19f460b93fca" + "9a9aef32-afde-4a58-9f1f-c13dafc981a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fe615ff0-04d0-4e3f-9db0-adf14b7c97e6" + "0c9ac378-b3a7-43a9-8ed9-ecdade558b98" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1" ], "Date": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "ETag": [ - "0x8D2EEECADC2A0F1" + "0x8D30A3B63F28764" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcy90YXNrMT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcy90YXNrMT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d7b4fa84-a072-4df1-ab1e-6cdf417d8cd5" + "3c46be96-35af-4fda-98fa-4650174c1792" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:09 GMT" + "Mon, 21 Dec 2015 19:17:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1\",\r\n \"eTag\": \"0x8D2EEECADC2A0F1\",\r\n \"creationTime\": \"2015-11-17T01:16:10.7567345Z\",\r\n \"lastModified\": \"2015-11-17T01:16:10.7567345Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-17T01:16:10.7567345Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1\",\r\n \"eTag\": \"0x8D30A3B63F28764\",\r\n \"creationTime\": \"2015-12-21T19:17:38.5558884Z\",\r\n \"lastModified\": \"2015-12-21T19:17:38.5558884Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:17:38.5558884Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a526a2f4-30c0-4978-8ae0-dba6203450dd" + "f5b2daa8-4078-4274-89e5-89d76e16e5c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d7b4fa84-a072-4df1-ab1e-6cdf417d8cd5" + "3c46be96-35af-4fda-98fa-4650174c1792" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "ETag": [ - "0x8D2EEECADC2A0F1" + "0x8D30A3B63F28764" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcy90YXNrMT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcy90YXNrMT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01d85999-d0a8-4bee-8593-bfb788b725d7" + "d8245bd6-01c5-49ff-bf0b-00aae51dc79e" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:11 GMT" + "Mon, 21 Dec 2015 19:17:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1\",\r\n \"eTag\": \"0x8D2EEECADC2A0F1\",\r\n \"creationTime\": \"2015-11-17T01:16:10.7567345Z\",\r\n \"lastModified\": \"2015-11-17T01:16:10.7567345Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-17T01:16:10.9060533Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-17T01:16:10.7690507Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-17T01:16:10.7690507Z\",\r\n \"endTime\": \"2015-11-17T01:16:10.9060533Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_19-20151117t002133z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_19-20151117t002133z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_19-20151117t002133z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileComputeNodeByPipeline/tasks/task1\",\r\n \"eTag\": \"0x8D30A3B63F28764\",\r\n \"creationTime\": \"2015-12-21T19:17:38.5558884Z\",\r\n \"lastModified\": \"2015-12-21T19:17:38.5558884Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:17:41.3292186Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:17:41.1982179Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:17:41.1982179Z\",\r\n \"endTime\": \"2015-12-21T19:17:41.3292186Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "eb2838ab-1d87-414b-a56c-44ba177ec636" + "46c2ca81-3b7b-4d06-835e-a1211cbd121a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "01d85999-d0a8-4bee-8593-bfb788b725d7" + "d8245bd6-01c5-49ff-bf0b-00aae51dc79e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:13 GMT" + "Mon, 21 Dec 2015 19:17:41 GMT" ], "ETag": [ - "0x8D2EEECADC2A0F1" + "0x8D30A3B63F28764" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0YXNrMSUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0YXNrMSUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "29293b4c-e20c-470e-8d8d-cc61e3eb8f33" + "9b1a049d-0795-43e3-975d-71da20bc6a06" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:09 GMT" + "Mon, 21 Dec 2015 19:17:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "d40a6fe3-a79a-46ed-944a-8c622bfcc9dc" + "b06e7036-42f2-4d3e-86cd-a86659aeda9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "29293b4c-e20c-470e-8d8d-cc61e3eb8f33" + "9b1a049d-0795-43e3-975d-71da20bc6a06" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0YXNrMSUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0YXNrMSUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0bcc55c1-7a1d-4043-bc6c-15e04861803a" + "f8607829-f8b1-4ceb-aabf-ea57df00943f" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:11 GMT" + "Mon, 21 Dec 2015 19:17:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -652,19 +652,19 @@ "chunked" ], "request-id": [ - "b1747416-c139-4994-abe8-ebc88b52fece" + "b341f0aa-75ce-4728-aab6-0764c06168a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0bcc55c1-7a1d-4043-bc6c-15e04861803a" + "f8607829-f8b1-4ceb-aabf-ea57df00943f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:13 GMT" + "Mon, 21 Dec 2015 19:17:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,22 +673,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_19-20151117t002133z/files/workitems%5CdeleteNodeByFileComputeNodeByPipeline%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE5LTIwMTUxMTE3dDAwMjEzM3ovZmlsZXMvd29ya2l0ZW1zJTVDZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZSU1Q2pvYi0xJTVDdGFzazElNUN3ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems%5CdeleteNodeByFileComputeNodeByPipeline%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvd29ya2l0ZW1zJTVDZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZSU1Q2pvYi0xJTVDdGFzazElNUN3ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d5444d22-8147-4a38-88c8-7b42ba9c1b5d" + "9b447076-16a0-4fe1-8645-e5d2ae9511f8" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:16 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -701,31 +701,31 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:41 GMT" ], "request-id": [ - "31fa8c34-83f6-46f5-bbb1-db30d7d0a593" + "4a5fcab7-0dbc-48ef-968f-b9c54cf7d9d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d5444d22-8147-4a38-88c8-7b42ba9c1b5d" + "9b447076-16a0-4fe1-8645-e5d2ae9511f8" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Nov 2015 01:16:10 GMT" + "Mon, 21 Dec 2015 19:17:41 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_19-20151117t002133z%2Ffiles%2Fworkitems%2FdeleteNodeByFileComputeNodeByPipeline%2Fjob-1%2Ftask1%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fworkitems%2FdeleteNodeByFileComputeNodeByPipeline%2Fjob-1%2Ftask1%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Nov 2015 01:16:17 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -734,22 +734,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_19-20151117t002133z/files/workitems%5CdeleteNodeByFileComputeNodeByPipeline%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE5LTIwMTUxMTE3dDAwMjEzM3ovZmlsZXMvd29ya2l0ZW1zJTVDZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZSU1Q2pvYi0xJTVDdGFzazElNUN3ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems%5CdeleteNodeByFileComputeNodeByPipeline%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvd29ya2l0ZW1zJTVDZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZSU1Q2pvYi0xJTVDdGFzazElNUN3ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5c361d5b-8235-40be-88aa-d9ece4fa5c10" + "4ee0530b-27aa-480e-95d6-6a445f22127a" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:16 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -759,19 +759,19 @@ "chunked" ], "request-id": [ - "705cfa4d-9fb6-4fe7-87ca-d12acd5067a4" + "41121a55-88fc-4122-b281-09762de10e2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5c361d5b-8235-40be-88aa-d9ece4fa5c10" + "4ee0530b-27aa-480e-95d6-6a445f22127a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:18 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,22 +780,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_19-20151117t002133z/files?$filter=startswith(name%2C'workitems%5CdeleteNodeByFileComputeNodeByPipeline%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzE5LTIwMTUxMTE3dDAwMjEzM3ovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVCeUZpbGVDb21wdXRlTm9kZUJ5UGlwZWxpbmUlNUNqb2ItMSU1Q3Rhc2sxJTVDd2QlNUN0ZXN0RmlsZS50eHQlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?$filter=startswith(name%2C'workitems%5CdeleteNodeByFileComputeNodeByPipeline%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVCeUZpbGVDb21wdXRlTm9kZUJ5UGlwZWxpbmUlNUNqb2ItMSU1Q3Rhc2sxJTVDd2QlNUN0ZXN0RmlsZS50eHQlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "84f1dc7f-609f-4c83-bfbb-f5fae0037570" + "f3751c18-b1d3-446c-b57e-437b46530713" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:16 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -808,19 +808,19 @@ "chunked" ], "request-id": [ - "2a7d01a8-6d96-4a62-9706-e30c368b5919" + "e16d1329-abc7-47da-afe8-00c79abb1219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "84f1dc7f-609f-4c83-bfbb-f5fae0037570" + "f3751c18-b1d3-446c-b57e-437b46530713" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:18 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -829,22 +829,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileComputeNodeByPipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZUNvbXB1dGVOb2RlQnlQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "efcc396c-047f-4e96-b369-01bf9180b578" + "9ae3001c-1032-4ea9-816a-383fd6afc510" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:16:17 GMT" + "Mon, 21 Dec 2015 19:17:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -854,19 +854,19 @@ "chunked" ], "request-id": [ - "85c04531-6e86-4cf2-816c-e4eac7e6dc3e" + "67a16979-2539-4eb0-85ab-1d4caf8b33fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "efcc396c-047f-4e96-b369-01bf9180b578" + "9ae3001c-1032-4ea9-816a-383fd6afc510" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:16:18 GMT" + "Mon, 21 Dec 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByName.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByName.json index 94851b1a5180..ef7a6e8ecd54 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByName.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-request-id": [ - "d6eb97ec-6d18-4997-9a95-aaf3553d05ea" + "6d9bd81f-26c4-46f0-a501-9563cf840a61" ], "x-ms-correlation-request-id": [ - "d6eb97ec-6d18-4997-9a95-aaf3553d05ea" + "6d9bd81f-26c4-46f0-a501-9563cf840a61" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T005702Z:d6eb97ec-6d18-4997-9a95-aaf3553d05ea" + "WESTUS:20151221T192313Z:6d9bd81f-26c4-46f0-a501-9563cf840a61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:57:02 GMT" + "Mon, 21 Dec 2015 19:23:13 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14989" ], "x-ms-request-id": [ - "43300ee7-b534-4bb1-baca-88bba44c44e7" + "b5ac6704-1e5b-4918-86bd-203ca54e2d0f" ], "x-ms-correlation-request-id": [ - "43300ee7-b534-4bb1-baca-88bba44c44e7" + "b5ac6704-1e5b-4918-86bd-203ca54e2d0f" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T005711Z:43300ee7-b534-4bb1-baca-88bba44c44e7" + "WESTUS:20151221T192320Z:b5ac6704-1e5b-4918-86bd-203ca54e2d0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:57:10 GMT" + "Mon, 21 Dec 2015 19:23:20 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:23:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d91d08d0-91b6-44c8-a8f6-01b8d817f661" + "0c6a3782-3a4e-412f-a395-27351fb0775c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "cc15eaa7-fb61-4d50-aa12-bf21def60432" + "4d611586-05cf-4816-9ad3-47c5496a241a" ], "x-ms-correlation-request-id": [ - "cc15eaa7-fb61-4d50-aa12-bf21def60432" + "4d611586-05cf-4816-9ad3-47c5496a241a" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T005703Z:cc15eaa7-fb61-4d50-aa12-bf21def60432" + "WESTUS:20151221T192315Z:4d611586-05cf-4816-9ad3-47c5496a241a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:57:02 GMT" + "Mon, 21 Dec 2015 19:23:15 GMT" ], "ETag": [ - "0x8D2EEEA0265BA3C" + "0x8D30A3C2BDE4DF6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:57:11 GMT" + "Mon, 21 Dec 2015 19:23:19 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "240ab0bc-8144-4fe8-8785-814dff7ef620" + "e74a982b-1154-460a-b91f-bec79c9a8443" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "83ba56ef-38ca-4bd8-9a6f-34ffc7df5655" + "0d40595d-b60a-4feb-b029-233a945f8c04" ], "x-ms-correlation-request-id": [ - "83ba56ef-38ca-4bd8-9a6f-34ffc7df5655" + "0d40595d-b60a-4feb-b029-233a945f8c04" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T005711Z:83ba56ef-38ca-4bd8-9a6f-34ffc7df5655" + "WESTUS:20151221T192321Z:0d40595d-b60a-4feb-b029-233a945f8c04" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:57:10 GMT" + "Mon, 21 Dec 2015 19:23:20 GMT" ], "ETag": [ - "0x8D2EEEA06F4D671" + "0x8D30A3C2F690F5E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "2ade2911-9e80-48e4-a507-e77b5981badc" + "b33cf85b-9ecf-4907-bf3c-6dce31e62a6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "1db8e3b1-72c1-47ce-b529-9dd859ffe0d6" + "5a499164-ef96-47bd-8b63-c8cf0dbf5b58" ], "x-ms-correlation-request-id": [ - "1db8e3b1-72c1-47ce-b529-9dd859ffe0d6" + "5a499164-ef96-47bd-8b63-c8cf0dbf5b58" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T005703Z:1db8e3b1-72c1-47ce-b529-9dd859ffe0d6" + "WESTUS:20151221T192315Z:5a499164-ef96-47bd-8b63-c8cf0dbf5b58" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:57:03 GMT" + "Mon, 21 Dec 2015 19:23:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "59dbd098-7151-44a2-a374-0613af3f1dad" + "df8e3dba-bb8a-4b60-ac29-3f2b969c4777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "27abd233-6bce-43a2-9572-205a406d155e" + "c8169bd3-3c7f-4cba-9431-a8c3cea480b1" ], "x-ms-correlation-request-id": [ - "27abd233-6bce-43a2-9572-205a406d155e" + "c8169bd3-3c7f-4cba-9431-a8c3cea480b1" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T005711Z:27abd233-6bce-43a2-9572-205a406d155e" + "WESTUS:20151221T192321Z:c8169bd3-3c7f-4cba-9431-a8c3cea480b1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 00:57:10 GMT" + "Mon, 21 Dec 2015 19:23:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteNodeByFileTaskByName\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "109" ], "client-request-id": [ - "09e3b624-bea6-4447-a4a0-1a8cc19de772" + "3dbbaf65-50fb-4ab9-af2c-83bc0843c46b" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:03 GMT" + "Mon, 21 Dec 2015 19:23:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ecf4f456-e974-45c1-a45f-67ccf7cf4952" + "a9c91458-6641-4816-95f1-86afce7d268a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "09e3b624-bea6-4447-a4a0-1a8cc19de772" + "3dbbaf65-50fb-4ab9-af2c-83bc0843c46b" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 17 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "ETag": [ - "0x8D2EEEA02C33F9D" + "0x8D30A3C2C3680E9" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "102" ], "client-request-id": [ - "960f4472-d047-4afb-a3f4-5365d1ee2011" + "238f2475-1215-43d0-a76f-0b79f75773a9" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:23:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b68ca0a8-262c-458c-a457-953acb82a5ff" + "a20c7c97-a4d1-4a24-b994-af11a756522e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "960f4472-d047-4afb-a3f4-5365d1ee2011" + "238f2475-1215-43d0-a76f-0b79f75773a9" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByName/tasks/task1" ], "Date": [ - "Tue, 17 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "ETag": [ - "0x8D2EEEA030E65E6" + "0x8D30A3C2C1D834E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByName/tasks/task1" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks/task1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks/task1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4f5a68aa-a209-432a-a6af-49c3f793c6cc" + "dc552987-c4dd-4cf2-9df7-5b9b00984957" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:23:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByName/tasks/task1\",\r\n \"eTag\": \"0x8D2EEEA030E65E6\",\r\n \"creationTime\": \"2015-11-17T00:57:05.3694438Z\",\r\n \"lastModified\": \"2015-11-17T00:57:05.3694438Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-17T00:57:05.3694438Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByName/tasks/task1\",\r\n \"eTag\": \"0x8D30A3C2C1D834E\",\r\n \"creationTime\": \"2015-12-21T19:23:14.3819086Z\",\r\n \"lastModified\": \"2015-12-21T19:23:14.3819086Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:23:14.3819086Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f38fdbd0-0db9-4616-8991-75427017a7b6" + "7e727138-fa29-4afc-9288-090c67c9b1a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4f5a68aa-a209-432a-a6af-49c3f793c6cc" + "dc552987-c4dd-4cf2-9df7-5b9b00984957" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "ETag": [ - "0x8D2EEEA030E65E6" + "0x8D30A3C2C1D834E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "62f5c4c6-f263-4194-98c1-1bdd50f3625e" + "4d5a254f-e49b-4ee7-91d8-5cfec1ed44a6" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:23:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "1d8f8201-9700-4bdf-adc2-447273cb82ab" + "17cf96df-0474-4adf-ad74-470235d863de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "62f5c4c6-f263-4194-98c1-1bdd50f3625e" + "4d5a254f-e49b-4ee7-91d8-5cfec1ed44a6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:23:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3b5a053b-6b07-4074-8ce1-76407ab04b92" + "7f96f7c6-ad05-4404-aa15-a286b9ad48ce" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:06 GMT" + "Mon, 21 Dec 2015 19:23:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "d5513360-84c4-48c2-bcf5-e7e12f0047f3" + "feb9484e-0db4-4c03-a83e-d09c2d80aee8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3b5a053b-6b07-4074-8ce1-76407ab04b92" + "7f96f7c6-ad05-4404-aa15-a286b9ad48ce" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:57:07 GMT" + "Mon, 21 Dec 2015 19:23:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks/task1/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3MvdGFzazEvZmlsZXMvd2QlNUN0ZXN0RmlsZS50eHQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks/task1/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3MvdGFzazEvZmlsZXMvd2QlNUN0ZXN0RmlsZS50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "355d162f-7e7b-49f1-8219-0ceeffab6e04" + "10b65076-9712-4c53-b21d-eb918a2e3709" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:11 GMT" + "Mon, 21 Dec 2015 19:23:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -643,19 +643,19 @@ "chunked" ], "request-id": [ - "2944f18b-1432-474b-8a1a-2d70d9cfb3cd" + "0c240bef-2ec1-4de0-bfd4-386aabc0aad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "355d162f-7e7b-49f1-8219-0ceeffab6e04" + "10b65076-9712-4c53-b21d-eb918a2e3709" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:57:12 GMT" + "Mon, 21 Dec 2015 19:23:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -664,22 +664,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks/task1/files?$filter=startswith(name%2C'wd%5CtestFile.txt')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3MvdGFzazEvZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3dkJTVDdGVzdEZpbGUudHh0JTI3JTI5JnJlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileTaskByName/tasks/task1/files?$filter=startswith(name%2C'wd%5CtestFile.txt')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWUvdGFza3MvdGFzazEvZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3dkJTVDdGVzdEZpbGUudHh0JTI3JTI5JnJlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cbc1a5c1-338a-417a-b58c-9ce7db172efb" + "63fe4076-3642-4203-af21-85186b6ba744" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:11 GMT" + "Mon, 21 Dec 2015 19:23:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -692,19 +692,19 @@ "chunked" ], "request-id": [ - "3c048ccd-a9ee-4739-bec6-d23808fbc7fb" + "eae0e525-31ff-4e61-a0b9-bbc97aafcf5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cbc1a5c1-338a-417a-b58c-9ce7db172efb" + "63fe4076-3642-4203-af21-85186b6ba744" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:57:12 GMT" + "Mon, 21 Dec 2015 19:23:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -713,22 +713,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByName?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileTaskByName?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeU5hbWU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "375681b4-72a8-4d1c-8c09-367d3d90d396" + "5a023b12-3c77-42e3-b966-692e234d4507" ], "ocp-date": [ - "Tue, 17 Nov 2015 00:57:12 GMT" + "Mon, 21 Dec 2015 19:23:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -738,19 +738,19 @@ "chunked" ], "request-id": [ - "4f2e2408-d023-4291-867e-017b683a51e9" + "28916cdc-79a7-40bb-8a78-9af716ba5efa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "375681b4-72a8-4d1c-8c09-367d3d90d396" + "5a023b12-3c77-42e3-b966-692e234d4507" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 00:57:13 GMT" + "Mon, 21 Dec 2015 19:23:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByPipeline.json index 90c62f51f5cb..827f44d6232a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTaskByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "ac0b3872-cec2-4dae-b70f-c2a40670bb37" + "5929f16a-df28-4eb5-b973-afcfe9b7b222" ], "x-ms-correlation-request-id": [ - "ac0b3872-cec2-4dae-b70f-c2a40670bb37" + "5929f16a-df28-4eb5-b973-afcfe9b7b222" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T010726Z:ac0b3872-cec2-4dae-b70f-c2a40670bb37" + "WESTUS:20151221T192901Z:5929f16a-df28-4eb5-b973-afcfe9b7b222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:07:25 GMT" + "Mon, 21 Dec 2015 19:29:00 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "09157d91-3dde-47d5-8180-4d203eaf7e65" + "737ca504-6dc9-4f61-9ffb-9c845bfd2ed0" ], "x-ms-correlation-request-id": [ - "09157d91-3dde-47d5-8180-4d203eaf7e65" + "737ca504-6dc9-4f61-9ffb-9c845bfd2ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T010733Z:09157d91-3dde-47d5-8180-4d203eaf7e65" + "WESTUS:20151221T192908Z:737ca504-6dc9-4f61-9ffb-9c845bfd2ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:07:32 GMT" + "Mon, 21 Dec 2015 19:29:07 GMT" ] }, "StatusCode": 200 @@ -121,13 +121,13 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:07:27 GMT" + "Mon, 21 Dec 2015 19:29:02 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a5e3181f-e529-4124-860c-276e318c98cc" + "40a5896d-4d84-4048-af07-d57af7825aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,22 +136,22 @@ "14999" ], "x-ms-request-id": [ - "2a13fe97-669a-4162-acc5-58020c84f674" + "58ec798c-e14b-48b0-b095-036e7fe23495" ], "x-ms-correlation-request-id": [ - "2a13fe97-669a-4162-acc5-58020c84f674" + "58ec798c-e14b-48b0-b095-036e7fe23495" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T010727Z:2a13fe97-669a-4162-acc5-58020c84f674" + "WESTUS:20151221T192902Z:58ec798c-e14b-48b0-b095-036e7fe23495" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:07:26 GMT" + "Mon, 21 Dec 2015 19:29:01 GMT" ], "ETag": [ - "0x8D2EEEB761808A4" + "0x8D30A3CFB56D2C0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:07:33 GMT" + "Mon, 21 Dec 2015 19:29:07 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0759c23e-825a-4797-b1fe-72b773070335" + "05b34b1e-a4f7-460a-80ae-a5e807266d5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14998" ], "x-ms-request-id": [ - "751a1aa4-da9a-4b2d-93e9-85b6d533700a" + "7bdeadf5-e3c8-43ad-86f2-4cfd1e5eb402" ], "x-ms-correlation-request-id": [ - "751a1aa4-da9a-4b2d-93e9-85b6d533700a" + "7bdeadf5-e3c8-43ad-86f2-4cfd1e5eb402" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T010733Z:751a1aa4-da9a-4b2d-93e9-85b6d533700a" + "WESTUS:20151221T192908Z:7bdeadf5-e3c8-43ad-86f2-4cfd1e5eb402" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:07:33 GMT" + "Mon, 21 Dec 2015 19:29:08 GMT" ], "ETag": [ - "0x8D2EEEB79B3C923" + "0x8D30A3CFEC19EAC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "49aeb589-2f3d-4add-ba21-8da4961da0e6" + "41504273-6d81-43a8-a6a9-cbb14a470b0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "d6896965-02bf-468a-842b-6c19a46109a5" + "7e4a4167-0c58-45cc-a62e-e6239a4f847c" ], "x-ms-correlation-request-id": [ - "d6896965-02bf-468a-842b-6c19a46109a5" + "7e4a4167-0c58-45cc-a62e-e6239a4f847c" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T010727Z:d6896965-02bf-468a-842b-6c19a46109a5" + "WESTUS:20151221T192902Z:7e4a4167-0c58-45cc-a62e-e6239a4f847c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:07:26 GMT" + "Mon, 21 Dec 2015 19:29:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "99614c06-24d2-4230-94d0-288f88c24551" + "2e243d5b-a9ad-4a25-8c5a-8f364cff36e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1198" ], "x-ms-request-id": [ - "154547db-3afb-44d3-8cb8-c12de6717c81" + "7f84d424-6094-4af5-86d3-d4ef6098100a" ], "x-ms-correlation-request-id": [ - "154547db-3afb-44d3-8cb8-c12de6717c81" + "7f84d424-6094-4af5-86d3-d4ef6098100a" ], "x-ms-routing-request-id": [ - "WESTUS:20151117T010733Z:154547db-3afb-44d3-8cb8-c12de6717c81" + "WESTUS:20151221T192908Z:7f84d424-6094-4af5-86d3-d4ef6098100a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Nov 2015 01:07:33 GMT" + "Mon, 21 Dec 2015 19:29:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteNodeByFileTaskByPipeline\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "113" ], "client-request-id": [ - "0961d66d-0f1e-4833-a308-caba3594b213" + "93c26c4a-3ef5-4ba9-a878-e66df4a1b55f" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:27 GMT" + "Mon, 21 Dec 2015 19:29:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 01:07:28 GMT" + "Mon, 21 Dec 2015 19:29:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab5cd887-ecab-4e29-8e8b-555829dbc61f" + "e78baa42-24b1-416f-b266-9e99891c3dfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0961d66d-0f1e-4833-a308-caba3594b213" + "93c26c4a-3ef5-4ba9-a878-e66df4a1b55f" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 17 Nov 2015 01:07:29 GMT" + "Mon, 21 Dec 2015 19:29:04 GMT" ], "ETag": [ - "0x8D2EEEB76501935" + "0x8D30A3CFB109D07" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "102" ], "client-request-id": [ - "b4c2c200-5d53-4f8b-b006-836e256c789e" + "c8b4c65c-cb9e-4ced-808e-bf63c3d2ceb9" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:27 GMT" + "Mon, 21 Dec 2015 19:29:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Nov 2015 01:07:29 GMT" + "Mon, 21 Dec 2015 19:29:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fde0cfa4-47d5-46fb-ad38-4f8a0008f49e" + "44c4851a-44c4-40c5-81b2-820449eb9b6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b4c2c200-5d53-4f8b-b006-836e256c789e" + "c8b4c65c-cb9e-4ced-808e-bf63c3d2ceb9" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByPipeline/tasks/task1" ], "Date": [ - "Tue, 17 Nov 2015 01:07:29 GMT" + "Mon, 21 Dec 2015 19:29:04 GMT" ], "ETag": [ - "0x8D2EEEB77048B30" + "0x8D30A3CFD55055A" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByPipeline/tasks/task1" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f9092686-d06b-46df-9db0-a7412e4b2f63" + "6d6d8429-96bc-455a-b902-a59d5ecc47e5" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:27 GMT" + "Mon, 21 Dec 2015 19:29:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByPipeline/tasks/task1\",\r\n \"eTag\": \"0x8D2EEEB77048B30\",\r\n \"creationTime\": \"2015-11-17T01:07:29.4172976Z\",\r\n \"lastModified\": \"2015-11-17T01:07:29.4172976Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-17T01:07:29.4172976Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteNodeByFileTaskByPipeline/tasks/task1\",\r\n \"eTag\": \"0x8D30A3CFD55055A\",\r\n \"creationTime\": \"2015-12-21T19:29:05.3895002Z\",\r\n \"lastModified\": \"2015-12-21T19:29:05.3895002Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:29:05.3895002Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:07:29 GMT" + "Mon, 21 Dec 2015 19:29:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1904f14e-65f1-48a7-aba8-f8f47b2021dd" + "a0a730dd-0e60-4153-8c58-9adf605918e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f9092686-d06b-46df-9db0-a7412e4b2f63" + "6d6d8429-96bc-455a-b902-a59d5ecc47e5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:07:29 GMT" + "Mon, 21 Dec 2015 19:29:04 GMT" ], "ETag": [ - "0x8D2EEEB77048B30" + "0x8D30A3CFD55055A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bbe70b44-4de1-416b-bc66-0f56a42db6d7" + "4776cc14-276d-4375-8dfa-b7a3530598c4" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:27 GMT" + "Mon, 21 Dec 2015 19:29:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "459f50ff-f6df-4d59-a3b6-ec9139ae42ff" + "3e042d4d-9f99-4fe7-997a-bfaa93214f5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bbe70b44-4de1-416b-bc66-0f56a42db6d7" + "4776cc14-276d-4375-8dfa-b7a3530598c4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:07:29 GMT" + "Mon, 21 Dec 2015 19:29:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks?$filter=id%20eq%20'task1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c68e7901-9d90-465a-b5ac-1a5cd7cc8311" + "c64d3e0b-78da-40c9-9f3c-dc69fe3bbf70" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:30 GMT" + "Mon, 21 Dec 2015 19:29:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "5f602265-f610-4351-9bc2-1ea2672113e7" + "ae538efe-cea8-4772-b736-fba2350efb15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c68e7901-9d90-465a-b5ac-1a5cd7cc8311" + "c64d3e0b-78da-40c9-9f3c-dc69fe3bbf70" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:07:31 GMT" + "Mon, 21 Dec 2015 19:29:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "85a9d09e-2cf8-49d0-a1b0-fa82fec71277" + "6583d7f1-783a-4493-877a-392fe3ed9410" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:33 GMT" + "Mon, 21 Dec 2015 19:29:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -646,22 +646,22 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Nov 2015 01:07:28 GMT" + "Mon, 21 Dec 2015 19:29:05 GMT" ], "request-id": [ - "7a2bbe6d-397c-4313-a56b-159620f32ad7" + "3680e6a5-08e8-477a-aa72-f15f5cce7a2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "85a9d09e-2cf8-49d0-a1b0-fa82fec71277" + "6583d7f1-783a-4493-877a-392fe3ed9410" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Nov 2015 01:07:28 GMT" + "Mon, 21 Dec 2015 19:29:05 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -670,7 +670,7 @@ "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fjobs%2FdeleteNodeByFileTaskByPipeline%2Ftasks%2Ftask1%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Nov 2015 01:07:34 GMT" + "Mon, 21 Dec 2015 19:29:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,22 +679,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a97f0e55-e7e0-497b-b5e3-a7b66c3397e9" + "c63bb2ce-0722-4e2c-ae57-4142c2922b17" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:33 GMT" + "Mon, 21 Dec 2015 19:29:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -704,19 +704,19 @@ "chunked" ], "request-id": [ - "01f8fa76-ecf6-4e79-867e-10ef9004b5d7" + "b2ebcec7-639f-4ff4-b617-8aec5fd0fe4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a97f0e55-e7e0-497b-b5e3-a7b66c3397e9" + "c63bb2ce-0722-4e2c-ae57-4142c2922b17" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:07:34 GMT" + "Mon, 21 Dec 2015 19:29:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -725,22 +725,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1/files?$filter=startswith(name%2C'wd%5CtestFile.txt')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCU1Q3Rlc3RGaWxlLnR4dCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline/tasks/task1/files?$filter=startswith(name%2C'wd%5CtestFile.txt')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lL3Rhc2tzL3Rhc2sxL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCU1Q3Rlc3RGaWxlLnR4dCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0122d7bd-a1fd-41f4-b540-715ff29b4805" + "a00a0dd9-5fb0-440a-a710-cf53a52b4e67" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:34 GMT" + "Mon, 21 Dec 2015 19:29:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -753,19 +753,19 @@ "chunked" ], "request-id": [ - "155f8fd4-a979-4b9c-95d1-cf34bf848193" + "454ad506-b6af-4aac-8b54-f5e6697d0142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0122d7bd-a1fd-41f4-b540-715ff29b4805" + "a00a0dd9-5fb0-440a-a710-cf53a52b4e67" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:07:34 GMT" + "Mon, 21 Dec 2015 19:29:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -774,22 +774,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/deleteNodeByFileTaskByPipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUJ5RmlsZVRhc2tCeVBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "91876845-831e-49a9-959a-860d4ceeccec" + "d903e6e7-84ce-4a7b-8528-91ba8aa2bfdb" ], "ocp-date": [ - "Tue, 17 Nov 2015 01:07:34 GMT" + "Mon, 21 Dec 2015 19:29:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -799,19 +799,19 @@ "chunked" ], "request-id": [ - "43691ec1-aad4-414d-aa44-f7aac97f3864" + "40150f69-9dd4-433c-b61c-f19e1f68bdff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "91876845-831e-49a9-959a-860d4ceeccec" + "d903e6e7-84ce-4a7b-8528-91ba8aa2bfdb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 17 Nov 2015 01:07:35 GMT" + "Mon, 21 Dec 2015 19:29:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByComputeNodeByName.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByComputeNodeByName.json index 53ff667a74ff..90ba88128b91 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByComputeNodeByName.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByComputeNodeByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14984" ], "x-ms-request-id": [ - "6fadd280-120f-4a41-ac8f-59e6b4ed86b2" + "d107464a-e756-4aba-a7bb-5c705689ed48" ], "x-ms-correlation-request-id": [ - "6fadd280-120f-4a41-ac8f-59e6b4ed86b2" + "d107464a-e756-4aba-a7bb-5c705689ed48" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003956Z:6fadd280-120f-4a41-ac8f-59e6b4ed86b2" + "CENTRALUS:20151221T191657Z:d107464a-e756-4aba-a7bb-5c705689ed48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:56 GMT" + "Mon, 21 Dec 2015 19:16:56 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,13 +76,13 @@ "14983" ], "x-ms-request-id": [ - "5843d111-e310-43f5-aa8c-a950bdc20674" + "986c2e76-4f14-483b-a947-e5b116b4130f" ], "x-ms-correlation-request-id": [ - "5843d111-e310-43f5-aa8c-a950bdc20674" + "986c2e76-4f14-483b-a947-e5b116b4130f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004001Z:5843d111-e310-43f5-aa8c-a950bdc20674" + "CENTRALUS:20151221T191701Z:986c2e76-4f14-483b-a947-e5b116b4130f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:00 GMT" + "Mon, 21 Dec 2015 19:17:00 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:39:58 GMT" + "Mon, 21 Dec 2015 19:16:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "30a9beec-69da-4d38-9c0b-bf8baa242ef7" + "bf2587da-cd59-4b37-95e1-d9468d51e5f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14985" ], "x-ms-request-id": [ - "d1f22de2-ab5f-4252-b86a-dc01333a8660" + "c97eccc0-aa53-48ca-af01-ab04bffec5f3" ], "x-ms-correlation-request-id": [ - "d1f22de2-ab5f-4252-b86a-dc01333a8660" + "c97eccc0-aa53-48ca-af01-ab04bffec5f3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003958Z:d1f22de2-ab5f-4252-b86a-dc01333a8660" + "CENTRALUS:20151221T191658Z:c97eccc0-aa53-48ca-af01-ab04bffec5f3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:57 GMT" + "Mon, 21 Dec 2015 19:16:57 GMT" ], "ETag": [ - "0x8D2EA30A07D28A7" + "0x8D30A3B4B25E922" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:40:01 GMT" + "Mon, 21 Dec 2015 19:17:00 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f0e64639-156b-4f1b-9490-b5c17333c8af" + "f3bbcb34-6233-47e0-aa07-f6eabb45ca94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14984" ], "x-ms-request-id": [ - "36ab73d4-d899-4ab4-b9e9-76ab48a6a6d9" + "bb2aa812-e126-412e-aafb-fe1d070d9fc2" ], "x-ms-correlation-request-id": [ - "36ab73d4-d899-4ab4-b9e9-76ab48a6a6d9" + "bb2aa812-e126-412e-aafb-fe1d070d9fc2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004001Z:36ab73d4-d899-4ab4-b9e9-76ab48a6a6d9" + "CENTRALUS:20151221T191701Z:bb2aa812-e126-412e-aafb-fe1d070d9fc2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:00 GMT" + "Mon, 21 Dec 2015 19:17:00 GMT" ], "ETag": [ - "0x8D2EA30A27F2C6B" + "0x8D30A3B4D0791BC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "bd7263d2-3314-4383-8ea4-c85251f0b632" + "3e55ac7d-9556-4614-95fc-9b0a11f67685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-request-id": [ - "9fd8979a-f7aa-4384-bb4a-8fcf57f34760" + "a0a4a142-1153-4ffe-920f-99a17b2991c2" ], "x-ms-correlation-request-id": [ - "9fd8979a-f7aa-4384-bb4a-8fcf57f34760" + "a0a4a142-1153-4ffe-920f-99a17b2991c2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003958Z:9fd8979a-f7aa-4384-bb4a-8fcf57f34760" + "CENTRALUS:20151221T191658Z:a0a4a142-1153-4ffe-920f-99a17b2991c2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:57 GMT" + "Mon, 21 Dec 2015 19:16:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "b047cf6d-66b1-4d6e-91c5-d3f6b85827b7" + "080e2886-92e2-442f-a0b8-646637ffb031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-request-id": [ - "4b0f7e87-9f82-4e58-a26a-0ea3ec14f780" + "929f11a7-2be4-431b-98d9-210f74844328" ], "x-ms-correlation-request-id": [ - "4b0f7e87-9f82-4e58-a26a-0ea3ec14f780" + "929f11a7-2be4-431b-98d9-210f74844328" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004001Z:4b0f7e87-9f82-4e58-a26a-0ea3ec14f780" + "CENTRALUS:20151221T191701Z:929f11a7-2be4-431b-98d9-210f74844328" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:00 GMT" + "Mon, 21 Dec 2015 19:17:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1db4d600-fde7-478c-a87e-1c952c978a44" + "0ff60944-e1f8-4ec2-8a4b-3cb111101681" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:58 GMT" + "Mon, 21 Dec 2015 19:16:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 11,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "3d45068d-13fe-4e95-9da0-ad5d5f911b41" + "a4b5162a-26f5-4f58-b8c2-fbe86e5d2f95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1db4d600-fde7-478c-a87e-1c952c978a44" + "0ff60944-e1f8-4ec2-8a4b-3cb111101681" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:59 GMT" + "Mon, 21 Dec 2015 19:16:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6611fea3-cf2d-4b82-9075-1c2d0c396bc8" + "7a4bee33-ce5c-4a66-b862-c4a7e540e5cb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:40:01 GMT" + "Mon, 21 Dec 2015 19:17:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,31 +414,31 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "request-id": [ - "7093313d-670d-4a35-b0c9-51b6e9f17cd5" + "8c903e96-ce2f-4b47-84d5-89392ad1cc4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6611fea3-cf2d-4b82-9075-1c2d0c396bc8" + "7a4bee33-ce5c-4a66-b862-c4a7e540e5cb" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:40:02 GMT" + "Mon, 21 Dec 2015 19:17:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,22 +447,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d9ceabef-4683-4a68-a1ba-b932d255d770" + "4b7f3176-0542-40fe-afb6-f4c575d02e45" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:40:02 GMT" + "Mon, 21 Dec 2015 19:17:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -475,31 +475,31 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "request-id": [ - "7d367ddc-365b-4bd1-9c94-3cf0c09a4c83" + "430dcdf8-9a80-4917-a79d-6bf8dd39ac6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d9ceabef-4683-4a68-a1ba-b932d255d770" + "4b7f3176-0542-40fe-afb6-f4c575d02e45" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:40:02 GMT" + "Mon, 21 Dec 2015 19:17:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByTaskByName.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByTaskByName.json index a0374dafe777..d9f0b02c7910 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByTaskByName.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileByTaskByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14998" ], "x-ms-request-id": [ - "30614d38-0052-4747-aa86-831a82111555" + "f9e1a4bf-cc77-4a42-91c1-4d9fc7def402" ], "x-ms-correlation-request-id": [ - "30614d38-0052-4747-aa86-831a82111555" + "f9e1a4bf-cc77-4a42-91c1-4d9fc7def402" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004825Z:30614d38-0052-4747-aa86-831a82111555" + "CENTRALUS:20151221T193025Z:f9e1a4bf-cc77-4a42-91c1-4d9fc7def402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:48:24 GMT" + "Mon, 21 Dec 2015 19:30:25 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14997" ], "x-ms-request-id": [ - "c7810e35-f473-483b-a8d3-1902f151693d" + "e2966904-2288-45e0-99fa-b05d5327a0e8" ], "x-ms-correlation-request-id": [ - "c7810e35-f473-483b-a8d3-1902f151693d" + "e2966904-2288-45e0-99fa-b05d5327a0e8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004833Z:c7810e35-f473-483b-a8d3-1902f151693d" + "CENTRALUS:20151221T193033Z:e2966904-2288-45e0-99fa-b05d5327a0e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:48:33 GMT" + "Mon, 21 Dec 2015 19:30:32 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:25 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "df223acd-02ac-466d-90d3-d4425c6dad4e" + "9e1b6685-8104-4484-bddc-aab75a3959a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14987" ], "x-ms-request-id": [ - "d7e3f183-685d-4339-9155-5e2b0921bce4" + "1a584fea-d428-4c70-acb6-a3a9e2085237" ], "x-ms-correlation-request-id": [ - "d7e3f183-685d-4339-9155-5e2b0921bce4" + "1a584fea-d428-4c70-acb6-a3a9e2085237" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004827Z:d7e3f183-685d-4339-9155-5e2b0921bce4" + "CENTRALUS:20151221T193026Z:1a584fea-d428-4c70-acb6-a3a9e2085237" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:48:27 GMT" + "Mon, 21 Dec 2015 19:30:26 GMT" ], "ETag": [ - "0x8D2EA31D0476058" + "0x8D30A3D2D0492AF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:48:34 GMT" + "Mon, 21 Dec 2015 19:30:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4be286c3-2451-4cea-92e2-ead612574b4d" + "94a1e810-c720-431b-b773-3e178600617e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14986" ], "x-ms-request-id": [ - "d1a58c6a-9c79-4a9e-bb5f-fbd665b4c6b3" + "a23f7523-ce22-4baf-b26b-c3724addd564" ], "x-ms-correlation-request-id": [ - "d1a58c6a-9c79-4a9e-bb5f-fbd665b4c6b3" + "a23f7523-ce22-4baf-b26b-c3724addd564" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004833Z:d1a58c6a-9c79-4a9e-bb5f-fbd665b4c6b3" + "CENTRALUS:20151221T193033Z:a23f7523-ce22-4baf-b26b-c3724addd564" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:48:33 GMT" + "Mon, 21 Dec 2015 19:30:32 GMT" ], "ETag": [ - "0x8D2EA31D3FFF947" + "0x8D30A3D31374994" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "f44adc64-9237-4ce2-b992-57c04e01be28" + "45d5a0e1-f800-480d-b529-ebb399e97226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1190" ], "x-ms-request-id": [ - "1326fcc4-e081-44d4-9750-6eb4f1687ef4" + "db52b74b-25ff-42c1-a1e8-95b59b92374f" ], "x-ms-correlation-request-id": [ - "1326fcc4-e081-44d4-9750-6eb4f1687ef4" + "db52b74b-25ff-42c1-a1e8-95b59b92374f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004827Z:1326fcc4-e081-44d4-9750-6eb4f1687ef4" + "CENTRALUS:20151221T193026Z:db52b74b-25ff-42c1-a1e8-95b59b92374f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:48:27 GMT" + "Mon, 21 Dec 2015 19:30:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "6184450e-b5a8-4e41-bc82-1e3f088a44e9" + "7c7393ff-a451-4ad6-9989-ec0e4df92d74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1189" ], "x-ms-request-id": [ - "4d3b48f0-4366-4526-9376-ab9c2ee7df04" + "a786b501-05a2-4e75-b95e-42a5d650f462" ], "x-ms-correlation-request-id": [ - "4d3b48f0-4366-4526-9376-ab9c2ee7df04" + "a786b501-05a2-4e75-b95e-42a5d650f462" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004834Z:4d3b48f0-4366-4526-9376-ab9c2ee7df04" + "CENTRALUS:20151221T193033Z:a786b501-05a2-4e75-b95e-42a5d650f462" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:48:33 GMT" + "Mon, 21 Dec 2015 19:30:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testGetNodeFileByTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "107" ], "client-request-id": [ - "fbe6e4e8-7677-4a5a-bf39-de3d592faae0" + "1510aaf3-8c8b-4b94-bb81-60b78c40f692" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:27 GMT" + "Mon, 21 Dec 2015 19:30:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a9d9f25d-ac28-4cf4-8a9f-1cc3d7aaef01" + "7ca5cbc6-c955-48b4-894b-a3206e4dac14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fbe6e4e8-7677-4a5a-bf39-de3d592faae0" + "1510aaf3-8c8b-4b94-bb81-60b78c40f692" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:27 GMT" ], "ETag": [ - "0x8D2EA31D0560E1C" + "0x8D30A3D2D826BDC" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "c5d032ba-3c14-48b3-9c9c-ee70c0eb1087" + "fe391573-c903-4f2e-9d98-c8c6d85c36b5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d996be80-61e3-4d26-b5ec-c46997ab9b03" + "93bccb6b-9291-4c2f-9f7a-4bfbebc914a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c5d032ba-3c14-48b3-9c9c-ee70c0eb1087" + "fe391573-c903-4f2e-9d98-c8c6d85c36b5" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testGetNodeFileByTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "ETag": [ - "0x8D2EA31D0B03891" + "0x8D30A3D2ECA2538" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/testGetNodeFileByTaskJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "21cce301-ea29-476e-9453-3b7dd3da53dc" + "005e82cd-e82f-40fb-8dec-ae65e384093e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testGetNodeFileByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA31D0B03891\",\r\n \"creationTime\": \"2015-11-11T00:48:28.8168081Z\",\r\n \"lastModified\": \"2015-11-11T00:48:28.8168081Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:48:28.8168081Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testGetNodeFileByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3D2ECA2538\",\r\n \"creationTime\": \"2015-12-21T19:30:28.3654456Z\",\r\n \"lastModified\": \"2015-12-21T19:30:28.3654456Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:30:28.3654456Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cd6945f2-ba84-4ff7-925e-e832ee428eb9" + "e46c46ba-6d04-4d13-a45a-78a2740ee14b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "21cce301-ea29-476e-9453-3b7dd3da53dc" + "005e82cd-e82f-40fb-8dec-ae65e384093e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "ETag": [ - "0x8D2EA31D0B03891" + "0x8D30A3D2ECA2538" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ce18599e-6b39-4df0-ad04-ebcc84c1ce69" + "be8281ae-7dc0-40c3-86ff-1c638d3c129b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "b6299576-3dbf-4692-8758-7beeed613756" + "3c935e2d-09e0-433e-9e91-e2ff2e7b16b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ce18599e-6b39-4df0-ad04-ebcc84c1ce69" + "be8281ae-7dc0-40c3-86ff-1c638d3c129b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:48:28 GMT" + "Mon, 21 Dec 2015 19:30:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bf2f8323-0166-4a8a-94e9-e143342d2dc2" + "f2f07bbd-0e39-4754-ab1f-51aceec3294f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:30 GMT" + "Mon, 21 Dec 2015 19:30:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "f1e06224-679e-4802-8a90-00f111ffac5a" + "4b96e3ab-7d1b-4dca-9a33-faea11898b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bf2f8323-0166-4a8a-94e9-e143342d2dc2" + "f2f07bbd-0e39-4754-ab1f-51aceec3294f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:48:31 GMT" + "Mon, 21 Dec 2015 19:30:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks/testTask/files/stdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testGetNodeFileByTaskJob/tasks/testTask/files/stdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "00e1b39e-3426-4959-8c68-5725ee47ed4c" + "9f52085a-d38e-4aa2-9fb5-6c20a86e7db1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:33 GMT" + "Mon, 21 Dec 2015 19:30:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -646,22 +646,22 @@ "application/octet-stream" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:48:29 GMT" + "Mon, 21 Dec 2015 19:30:29 GMT" ], "request-id": [ - "fdffdc25-a0b1-44cb-ae65-0261d0748cac" + "0506f0be-add1-417a-9a36-be34b66d861e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "00e1b39e-3426-4959-8c68-5725ee47ed4c" + "9f52085a-d38e-4aa2-9fb5-6c20a86e7db1" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Wed, 11 Nov 2015 00:48:29 GMT" + "Mon, 21 Dec 2015 19:30:29 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -670,7 +670,7 @@ "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fjobs%2FtestGetNodeFileByTaskJob%2Ftasks%2FtestTask%2Ffiles%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:48:35 GMT" + "Mon, 21 Dec 2015 19:30:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,22 +679,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testGetNodeFileByTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testGetNodeFileByTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEdldE5vZGVGaWxlQnlUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de29f198-7761-41ba-acfc-f97f00c838db" + "e571a4a3-4d29-4035-b0ed-7b2959b2b7c8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:48:34 GMT" + "Mon, 21 Dec 2015 19:30:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -704,19 +704,19 @@ "chunked" ], "request-id": [ - "327b5f3b-031e-4486-bdcd-e895d3d491f5" + "a66a70ad-885c-403e-a4c2-24a935e20e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de29f198-7761-41ba-acfc-f97f00c838db" + "e571a4a3-4d29-4035-b0ed-7b2959b2b7c8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:48:35 GMT" + "Mon, 21 Dec 2015 19:30:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByName.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByName.json index f6078ae3f55f..0f802f9da1be 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByName.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-request-id": [ - "4f229d8b-d974-4529-85f0-76b7c91bfd49" + "56b370d4-d189-4d0d-9ae1-aa0436b71921" ], "x-ms-correlation-request-id": [ - "4f229d8b-d974-4529-85f0-76b7c91bfd49" + "56b370d4-d189-4d0d-9ae1-aa0436b71921" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004159Z:4f229d8b-d974-4529-85f0-76b7c91bfd49" + "CENTRALUS:20151221T192150Z:56b370d4-d189-4d0d-9ae1-aa0436b71921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:58 GMT" + "Mon, 21 Dec 2015 19:21:50 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14990" ], "x-ms-request-id": [ - "741ad14a-14d4-4682-a4c7-c71eea9d3c20" + "3208c456-8d1e-48d9-9c09-c789eef96406" ], "x-ms-correlation-request-id": [ - "741ad14a-14d4-4682-a4c7-c71eea9d3c20" + "3208c456-8d1e-48d9-9c09-c789eef96406" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004203Z:741ad14a-14d4-4682-a4c7-c71eea9d3c20" + "CENTRALUS:20151221T192155Z:3208c456-8d1e-48d9-9c09-c789eef96406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:03 GMT" + "Mon, 21 Dec 2015 19:21:54 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:00 GMT" + "Mon, 21 Dec 2015 19:21:51 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "15493cc3-f142-4311-8be7-f9e5b29a5401" + "cdc009b4-e6d0-4408-9312-6ebaa0855a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14995" ], "x-ms-request-id": [ - "8d33e192-7f2f-4a76-bee0-371483e43463" + "ca94171d-ae14-4333-aaa6-e34d0269ee2f" ], "x-ms-correlation-request-id": [ - "8d33e192-7f2f-4a76-bee0-371483e43463" + "ca94171d-ae14-4333-aaa6-e34d0269ee2f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004200Z:8d33e192-7f2f-4a76-bee0-371483e43463" + "CENTRALUS:20151221T192152Z:ca94171d-ae14-4333-aaa6-e34d0269ee2f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:59 GMT" + "Mon, 21 Dec 2015 19:21:51 GMT" ], "ETag": [ - "0x8D2EA30E941F4DB" + "0x8D30A3BFAD1FFD1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "37c97988-3d92-4529-95b8-23abfe11676c" + "852238bf-9272-4ed0-be79-09d6cd41e2e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14994" ], "x-ms-request-id": [ - "7ccbf844-e548-4611-8137-c1ee51a1da73" + "4672a6c5-73e1-43e2-8b5d-2dd22a003145" ], "x-ms-correlation-request-id": [ - "7ccbf844-e548-4611-8137-c1ee51a1da73" + "4672a6c5-73e1-43e2-8b5d-2dd22a003145" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004203Z:7ccbf844-e548-4611-8137-c1ee51a1da73" + "CENTRALUS:20151221T192155Z:4672a6c5-73e1-43e2-8b5d-2dd22a003145" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:03 GMT" + "Mon, 21 Dec 2015 19:21:54 GMT" ], "ETag": [ - "0x8D2EA30EB69D28E" + "0x8D30A3BFCB54867" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "297007b7-f7f6-4ca7-89f9-d37a16a9237b" + "95f0f986-04c4-4db8-92d4-a187b814872a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "0044f92e-b16c-4ecb-b5c0-ac2b5069c02f" + "9fced1ce-fac2-437a-acf8-9ae1418672ca" ], "x-ms-correlation-request-id": [ - "0044f92e-b16c-4ecb-b5c0-ac2b5069c02f" + "9fced1ce-fac2-437a-acf8-9ae1418672ca" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004200Z:0044f92e-b16c-4ecb-b5c0-ac2b5069c02f" + "CENTRALUS:20151221T192152Z:9fced1ce-fac2-437a-acf8-9ae1418672ca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:00 GMT" + "Mon, 21 Dec 2015 19:21:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "d17baa71-f092-49ea-aba7-57d66de38329" + "8f6b7fda-1f59-44b7-b68e-e8e6d38cdcd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "06a7a244-9612-4f84-b240-2f7965612f32" + "5c754024-9401-4297-8326-3a727f9f659d" ], "x-ms-correlation-request-id": [ - "06a7a244-9612-4f84-b240-2f7965612f32" + "5c754024-9401-4297-8326-3a727f9f659d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004203Z:06a7a244-9612-4f84-b240-2f7965612f32" + "CENTRALUS:20151221T192155Z:5c754024-9401-4297-8326-3a727f9f659d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:03 GMT" + "Mon, 21 Dec 2015 19:21:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1e65a045-7bac-4790-a7b6-b7b65d150690" + "f68de764-cd22-45da-bd61-cad0d8f6cde5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:00 GMT" + "Mon, 21 Dec 2015 19:21:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 12,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 4,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "1a4fd821-7468-4c0a-8624-c7345b1e8e96" + "915ec8d8-2baa-4a6a-9e91-d86365ed7765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1e65a045-7bac-4790-a7b6-b7b65d150690" + "f68de764-cd22-45da-bd61-cad0d8f6cde5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:01 GMT" + "Mon, 21 Dec 2015 19:21:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c677fc9-837c-4ad8-9916-0c497e132d5f" + "f74153fc-0139-42bb-9e5b-11cd80c270d1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:03 GMT" + "Mon, 21 Dec 2015 19:21:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,31 +414,31 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "request-id": [ - "be431b08-3203-4d2a-88f3-4845a1210e00" + "0aded49e-d449-4a05-b556-a9ff46e86809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c677fc9-837c-4ad8-9916-0c497e132d5f" + "f74153fc-0139-42bb-9e5b-11cd80c270d1" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,22 +447,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a83e8edc-d23d-4585-9036-2e94b8c80e8b" + "2600f805-4e6e-451f-8c3e-6846be282b18" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -475,31 +475,31 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "request-id": [ - "a7ae51b7-c3bf-425b-b94f-d7b2a2fcd93d" + "4acc616e-6604-45a8-bebf-94dee27bacdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a83e8edc-d23d-4585-9036-2e94b8c80e8b" + "2600f805-4e6e-451f-8c3e-6846be282b18" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -508,22 +508,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "553f484d-24a1-4e9b-96a8-a1c6adfceb99" + "4c7f86f8-ee4d-41a9-9687-bea78974d593" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -533,34 +533,34 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c1e984a1-fe80-4e8b-ae32-4102eccd60e2" + "2ffd1248-880e-481e-becf-19681ed9bf7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "553f484d-24a1-4e9b-96a8-a1c6adfceb99" + "4c7f86f8-ee4d-41a9-9687-bea78974d593" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5bd9d1e9-50a5-4715-8172-18f0b39ba668" + "7d75c162-cc47-47cf-a0ec-cbb0a46b9caf" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -594,34 +594,34 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c6bdafd2-b745-47ac-9d12-3a7c5852d7ae" + "dbee159f-2778-4d02-a8f7-4da21d97c871" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5bd9d1e9-50a5-4715-8172-18f0b39ba668" + "7d75c162-cc47-47cf-a0ec-cbb0a46b9caf" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:42:04 GMT" + "Mon, 21 Dec 2015 19:21:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByPipeline.json index 8ea8d43a0274..d9cef775b7c4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNodeByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14995" ], "x-ms-request-id": [ - "323e4ec2-7146-4939-b47d-7477c91d24a0" + "1f9a8789-3b56-4772-8b8f-6812dd7b529f" ], "x-ms-correlation-request-id": [ - "323e4ec2-7146-4939-b47d-7477c91d24a0" + "1f9a8789-3b56-4772-8b8f-6812dd7b529f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003751Z:323e4ec2-7146-4939-b47d-7477c91d24a0" + "CENTRALUS:20151221T192232Z:1f9a8789-3b56-4772-8b8f-6812dd7b529f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:50 GMT" + "Mon, 21 Dec 2015 19:22:31 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14994" ], "x-ms-request-id": [ - "f38c0c3a-b7bf-42b6-89d3-d1c779e87a37" + "cd4c5612-446a-4bc8-b058-76e04809389b" ], "x-ms-correlation-request-id": [ - "f38c0c3a-b7bf-42b6-89d3-d1c779e87a37" + "cd4c5612-446a-4bc8-b058-76e04809389b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003755Z:f38c0c3a-b7bf-42b6-89d3-d1c779e87a37" + "CENTRALUS:20151221T192236Z:cd4c5612-446a-4bc8-b058-76e04809389b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:55 GMT" + "Mon, 21 Dec 2015 19:22:35 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:37:53 GMT" + "Mon, 21 Dec 2015 19:22:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a5c78b35-7fa0-4f34-8e68-9cda16837e7d" + "8d7272ec-76af-4d62-b0e3-efcd5c682084" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14997" ], "x-ms-request-id": [ - "1ade7d0b-621d-4e26-a4dd-914b21d2c170" + "6f2484fb-0774-414b-90dd-4b2917b0d4b7" ], "x-ms-correlation-request-id": [ - "1ade7d0b-621d-4e26-a4dd-914b21d2c170" + "6f2484fb-0774-414b-90dd-4b2917b0d4b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003752Z:1ade7d0b-621d-4e26-a4dd-914b21d2c170" + "CENTRALUS:20151221T192233Z:6f2484fb-0774-414b-90dd-4b2917b0d4b7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:51 GMT" + "Mon, 21 Dec 2015 19:22:32 GMT" ], "ETag": [ - "0x8D2EA3055D2A4E4" + "0x8D30A3C12CD6634" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:37:56 GMT" + "Mon, 21 Dec 2015 19:22:35 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f715b1b4-1a44-4505-894c-a6e599774550" + "6158b297-5b5c-4d32-9fb3-b02648dbec80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14996" ], "x-ms-request-id": [ - "1f069fff-0698-4c11-b30b-5091bcc72073" + "f81f8320-b6f9-4b4c-949c-1533677ef5cc" ], "x-ms-correlation-request-id": [ - "1f069fff-0698-4c11-b30b-5091bcc72073" + "f81f8320-b6f9-4b4c-949c-1533677ef5cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003755Z:1f069fff-0698-4c11-b30b-5091bcc72073" + "CENTRALUS:20151221T192236Z:f81f8320-b6f9-4b4c-949c-1533677ef5cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:54 GMT" + "Mon, 21 Dec 2015 19:22:35 GMT" ], "ETag": [ - "0x8D2EA3057E3C242" + "0x8D30A3C14B2968A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "4301e4c0-a2de-47b4-b646-2042d66ebfdc" + "1008b143-6253-442a-9669-2b89d4f3799f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "311f073d-5027-4ee6-af75-6a88e3640f63" + "027d99ff-b757-47fa-a68c-3f70d6ee64cd" ], "x-ms-correlation-request-id": [ - "311f073d-5027-4ee6-af75-6a88e3640f63" + "027d99ff-b757-47fa-a68c-3f70d6ee64cd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003752Z:311f073d-5027-4ee6-af75-6a88e3640f63" + "CENTRALUS:20151221T192233Z:027d99ff-b757-47fa-a68c-3f70d6ee64cd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:51 GMT" + "Mon, 21 Dec 2015 19:22:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "6f3acb04-83c0-454a-afda-711c0b4b4258" + "69ab50b5-eb9f-433b-8838-af77c5bc7e0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "7bd69e8d-cdc3-4d28-92df-d71d60eda15c" + "ba4b7086-6255-4d3b-a763-cba2b86bbcdb" ], "x-ms-correlation-request-id": [ - "7bd69e8d-cdc3-4d28-92df-d71d60eda15c" + "ba4b7086-6255-4d3b-a763-cba2b86bbcdb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003755Z:7bd69e8d-cdc3-4d28-92df-d71d60eda15c" + "CENTRALUS:20151221T192236Z:ba4b7086-6255-4d3b-a763-cba2b86bbcdb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:55 GMT" + "Mon, 21 Dec 2015 19:22:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4646164b-c44e-406e-b69e-37d35d4557fe" + "52f3a410-d699-4624-82fd-3bda4a194e34" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:52 GMT" + "Mon, 21 Dec 2015 19:22:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 9,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 4,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "a9514002-17ed-437a-ac67-13f6bcf952f5" + "23e009f0-c889-42c7-b5a2-a15366474dba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4646164b-c44e-406e-b69e-37d35d4557fe" + "52f3a410-d699-4624-82fd-3bda4a194e34" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:37:53 GMT" + "Mon, 21 Dec 2015 19:22:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,22 +386,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6e8c1d2e-88f5-476f-b137-db6d02ba162c" + "31c740c0-04bf-45d9-8e33-758f91ab17f0" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:55 GMT" + "Mon, 21 Dec 2015 19:22:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -414,31 +414,31 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "request-id": [ - "3008c3f7-5f65-419a-88e9-3ab4a2891d86" + "a03d435f-9b1a-4e13-bfdf-c02e3b01d84a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6e8c1d2e-88f5-476f-b137-db6d02ba162c" + "31c740c0-04bf-45d9-8e33-758f91ab17f0" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:37:55 GMT" + "Mon, 21 Dec 2015 19:22:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,22 +447,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup%5Cstdout.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcy9zdGFydHVwJTVDc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup%5Cstdout.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXMvc3RhcnR1cCU1Q3N0ZG91dC50eHQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d1ecb573-d9c4-4411-9d02-ca4072273672" + "55500f1b-4abd-46b4-b8c6-bcbe8f326fd5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:56 GMT" + "Mon, 21 Dec 2015 19:22:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -472,34 +472,34 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bbf4881e-9972-42ee-9d2b-2ea03a4dc83e" + "f1d066ba-41b7-4456-a5de-f4718565f8d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d1ecb573-d9c4-4411-9d02-ca4072273672" + "55500f1b-4abd-46b4-b8c6-bcbe8f326fd5" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Tue, 10 Nov 2015 23:39:55 GMT" + "Mon, 21 Dec 2015 18:25:31 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_2-20151110t233600z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-1783593343_34-20151117t222514z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:37:55 GMT" + "Mon, 21 Dec 2015 19:22:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskByName.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskByName.json index 69bd2a649db9..7e1be4360a91 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskByName.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14988" ], "x-ms-request-id": [ - "aaaa5ac7-2f42-44a9-807c-6ccb49a2b8f4" + "b191fcea-2c91-40c5-b10f-3a91acfde537" ], "x-ms-correlation-request-id": [ - "aaaa5ac7-2f42-44a9-807c-6ccb49a2b8f4" + "b191fcea-2c91-40c5-b10f-3a91acfde537" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004700Z:aaaa5ac7-2f42-44a9-807c-6ccb49a2b8f4" + "WESTUS:20151221T192359Z:b191fcea-2c91-40c5-b10f-3a91acfde537" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:00 GMT" + "Mon, 21 Dec 2015 19:23:58 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14987" ], "x-ms-request-id": [ - "72bf3a0e-edcd-4768-9a99-f52d226b45e3" + "64677df1-d6ab-40f9-9340-d23bbc66e633" ], "x-ms-correlation-request-id": [ - "72bf3a0e-edcd-4768-9a99-f52d226b45e3" + "64677df1-d6ab-40f9-9340-d23bbc66e633" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004708Z:72bf3a0e-edcd-4768-9a99-f52d226b45e3" + "WESTUS:20151221T192405Z:64677df1-d6ab-40f9-9340-d23bbc66e633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:07 GMT" + "Mon, 21 Dec 2015 19:24:04 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:23:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "064599a5-2004-470d-bcf1-7b77dd6324ed" + "6cfc3590-c0b2-4759-acaa-90e58afbd271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14995" ], "x-ms-request-id": [ - "87ea4274-ff03-406e-8d69-85aa75dc3467" + "46391049-15a1-4e3c-8d08-779be872facf" ], "x-ms-correlation-request-id": [ - "87ea4274-ff03-406e-8d69-85aa75dc3467" + "46391049-15a1-4e3c-8d08-779be872facf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004701Z:87ea4274-ff03-406e-8d69-85aa75dc3467" + "WESTUS:20151221T192359Z:46391049-15a1-4e3c-8d08-779be872facf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:01 GMT" + "Mon, 21 Dec 2015 19:23:59 GMT" ], "ETag": [ - "0x8D2EA319D2A9167" + "0x8D30A3C468273B4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:08 GMT" + "Mon, 21 Dec 2015 19:24:04 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3f73b812-716b-4cef-a380-7dddc53bc7ed" + "dd250f61-df2d-474f-acad-eccc2895fe8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14994" ], "x-ms-request-id": [ - "31a99f43-b9df-492c-a794-da2b75cddaa7" + "408c575e-1ec1-43f5-9658-fbedcc50196f" ], "x-ms-correlation-request-id": [ - "31a99f43-b9df-492c-a794-da2b75cddaa7" + "408c575e-1ec1-43f5-9658-fbedcc50196f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004708Z:31a99f43-b9df-492c-a794-da2b75cddaa7" + "WESTUS:20151221T192405Z:408c575e-1ec1-43f5-9658-fbedcc50196f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:07 GMT" + "Mon, 21 Dec 2015 19:24:05 GMT" ], "ETag": [ - "0x8D2EA31A0D4CA3C" + "0x8D30A3C4A12A8E6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d96bb55e-e3cf-476d-acd7-81be5c6b3728" + "636572a6-3ca2-4db8-b174-7b489f20ab48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "aaef9c8e-ff52-48e3-bd99-6ae30554e632" + "1195134e-716b-4814-aa85-ca0316ab3323" ], "x-ms-correlation-request-id": [ - "aaef9c8e-ff52-48e3-bd99-6ae30554e632" + "1195134e-716b-4814-aa85-ca0316ab3323" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004702Z:aaef9c8e-ff52-48e3-bd99-6ae30554e632" + "WESTUS:20151221T192400Z:1195134e-716b-4814-aa85-ca0316ab3323" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:01 GMT" + "Mon, 21 Dec 2015 19:23:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "f7845d10-b7e4-4afa-8035-fba41d417117" + "a6e993d6-5d89-4e00-9114-80228452bdf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "657c4c18-a4c4-49b5-8765-86e3c3e1dc6d" + "d2581bc7-70b7-4abd-8a47-e11340238d33" ], "x-ms-correlation-request-id": [ - "657c4c18-a4c4-49b5-8765-86e3c3e1dc6d" + "d2581bc7-70b7-4abd-8a47-e11340238d33" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004708Z:657c4c18-a4c4-49b5-8765-86e3c3e1dc6d" + "WESTUS:20151221T192406Z:d2581bc7-70b7-4abd-8a47-e11340238d33" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:07 GMT" + "Mon, 21 Dec 2015 19:24:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"nodeFileContentByTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "107" ], "client-request-id": [ - "efb51ad1-ee22-4966-9160-121b80bc0abd" + "d927ebfb-44ed-4e3f-b780-244555972e91" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:01 GMT" + "Mon, 21 Dec 2015 19:24:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:23:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "56d2308a-a9d4-4a85-94b9-51a300bb54a1" + "da1f7969-34e6-44b8-abd9-5f2122099a99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "efb51ad1-ee22-4966-9160-121b80bc0abd" + "d927ebfb-44ed-4e3f-b780-244555972e91" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:47:03 GMT" + "Mon, 21 Dec 2015 19:24:02 GMT" ], "ETag": [ - "0x8D2EA319D3AB528" + "0x8D30A3C46E56CAF" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "115" ], "client-request-id": [ - "81429640-7ba2-4638-986c-875157919f14" + "610a5180-4db9-4c4c-9c1c-95bf979ce5e6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:03 GMT" + "Mon, 21 Dec 2015 19:24:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "997d56f3-611a-4d45-bff7-eb90dbdef0d7" + "a9b719ba-4e64-4037-94f4-a78c929d0be8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "81429640-7ba2-4638-986c-875157919f14" + "610a5180-4db9-4c4c-9c1c-95bf979ce5e6" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:47:03 GMT" + "Mon, 21 Dec 2015 19:24:02 GMT" ], "ETag": [ - "0x8D2EA319E1F8EA5" + "0x8D30A3C48C14449" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93bc79c3-0b33-4ace-9ca8-82d618125970" + "8affbe9a-5884-4d8a-b717-1222fe22ba52" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA319E1F8EA5\",\r\n \"creationTime\": \"2015-11-11T00:47:03.9826597Z\",\r\n \"lastModified\": \"2015-11-11T00:47:03.9826597Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:47:03.9826597Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3C48C14449\",\r\n \"creationTime\": \"2015-12-21T19:24:02.4312905Z\",\r\n \"lastModified\": \"2015-12-21T19:24:02.4312905Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:24:02.4312905Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:03 GMT" + "Mon, 21 Dec 2015 19:24:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "50c325d4-deb7-4c93-b6a1-412b3b37c9f0" + "8fbab87e-579a-4a8f-bbbe-096c132e4cf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93bc79c3-0b33-4ace-9ca8-82d618125970" + "8affbe9a-5884-4d8a-b717-1222fe22ba52" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:03 GMT" + "Mon, 21 Dec 2015 19:24:02 GMT" ], "ETag": [ - "0x8D2EA319E1F8EA5" + "0x8D30A3C48C14449" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "94f89497-0911-4482-9a3e-94171aefe2c9" + "3574d9b6-5cef-433b-add5-7deb0a36fed3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "73699839-8e8d-42d5-84d7-7983ace6d760" + "b78b7ea6-1118-490f-821c-105a13166399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "94f89497-0911-4482-9a3e-94171aefe2c9" + "3574d9b6-5cef-433b-add5-7deb0a36fed3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:03 GMT" + "Mon, 21 Dec 2015 19:24:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8bebd87f-4965-4778-b74e-df1a13073527" + "c05b400f-43ca-4ba1-930d-3a7bc1103583" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:04 GMT" + "Mon, 21 Dec 2015 19:24:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "f5e6863e-da5e-40ef-b8b5-02bc628dc8e3" + "d4b5af83-a087-40e1-9201-2b689297d5fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8bebd87f-4965-4778-b74e-df1a13073527" + "c05b400f-43ca-4ba1-930d-3a7bc1103583" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:06 GMT" + "Mon, 21 Dec 2015 19:24:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d683fe41-7d2f-4e59-9404-c5d781b5a387" + "9b31f529-b8d9-4cfd-b18e-cb8f5a9f5c6e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:08 GMT" + "Mon, 21 Dec 2015 19:24:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -646,22 +646,22 @@ "application/octet-stream" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:01 GMT" ], "request-id": [ - "e6e8d93b-9ec0-43b3-aeab-3dbc9cc236f3" + "bf8148bd-89ed-45ae-a72b-b8471e5d8197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d683fe41-7d2f-4e59-9404-c5d781b5a387" + "9b31f529-b8d9-4cfd-b18e-cb8f5a9f5c6e" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:01 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -670,7 +670,7 @@ "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fjobs%2FnodeFileContentByTaskJob%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:47:09 GMT" + "Mon, 21 Dec 2015 19:24:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,22 +679,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileContentByTaskJob/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01ba90f3-f676-498e-9aca-bec60d2c8034" + "18eb3474-4680-43ab-ad06-5a085ea3e59f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:08 GMT" + "Mon, 21 Dec 2015 19:24:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -704,25 +704,25 @@ "application/octet-stream" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dc5e497b-323a-48eb-b33b-aa4e28e7fe17" + "e9f3e14c-8a40-4346-bf5c-a9cc41396668" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "01ba90f3-f676-498e-9aca-bec60d2c8034" + "18eb3474-4680-43ab-ad06-5a085ea3e59f" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Wed, 11 Nov 2015 00:47:02 GMT" + "Mon, 21 Dec 2015 19:24:01 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -731,7 +731,7 @@ "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fjobs%2FnodeFileContentByTaskJob%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:47:09 GMT" + "Mon, 21 Dec 2015 19:24:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -740,22 +740,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileContentByTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "229786f7-5425-4577-b5ae-5ef2b76b1674" + "677c1088-d031-486b-997c-fa2fb9134388" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:09 GMT" + "Mon, 21 Dec 2015 19:24:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -765,19 +765,19 @@ "chunked" ], "request-id": [ - "6c7a135f-797a-4312-8ba9-c0fbe66fc917" + "bd52eb11-b935-4a10-8710-8dbc843c4a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "229786f7-5425-4577-b5ae-5ef2b76b1674" + "677c1088-d031-486b-997c-fa2fb9134388" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:09 GMT" + "Mon, 21 Dec 2015 19:24:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskPipeline.json index 415f91083357..101cd11392fd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTaskPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14993" ], "x-ms-request-id": [ - "a38df96a-589a-4f41-afb3-75ff6438ddf3" + "7cea8e1a-dc5d-47fa-90b0-033656acbb2d" ], "x-ms-correlation-request-id": [ - "a38df96a-589a-4f41-afb3-75ff6438ddf3" + "7cea8e1a-dc5d-47fa-90b0-033656acbb2d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004742Z:a38df96a-589a-4f41-afb3-75ff6438ddf3" + "CENTRALUS:20151221T192943Z:7cea8e1a-dc5d-47fa-90b0-033656acbb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:42 GMT" + "Mon, 21 Dec 2015 19:29:43 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14992" ], "x-ms-request-id": [ - "5347dbe1-262f-4ca3-9355-a9cc2cb67945" + "7aee2d5d-60ed-4028-82df-1b0e4627962d" ], "x-ms-correlation-request-id": [ - "5347dbe1-262f-4ca3-9355-a9cc2cb67945" + "7aee2d5d-60ed-4028-82df-1b0e4627962d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004750Z:5347dbe1-262f-4ca3-9355-a9cc2cb67945" + "CENTRALUS:20151221T192950Z:7aee2d5d-60ed-4028-82df-1b0e4627962d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:49 GMT" + "Mon, 21 Dec 2015 19:29:49 GMT" ] }, "StatusCode": 200 @@ -121,13 +121,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:43 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4ad8a2a1-17c6-490c-be2a-e75ad1518322" + "069f5e07-6760-4699-8184-8519049d444d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,22 +136,22 @@ "14993" ], "x-ms-request-id": [ - "2edeea22-3b98-49c6-8a01-6c66f9d12eca" + "66b914ba-98bb-4a2d-9da5-18fd36539b91" ], "x-ms-correlation-request-id": [ - "2edeea22-3b98-49c6-8a01-6c66f9d12eca" + "66b914ba-98bb-4a2d-9da5-18fd36539b91" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004744Z:2edeea22-3b98-49c6-8a01-6c66f9d12eca" + "CENTRALUS:20151221T192944Z:66b914ba-98bb-4a2d-9da5-18fd36539b91" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:43 GMT" + "Mon, 21 Dec 2015 19:29:43 GMT" ], "ETag": [ - "0x8D2EA31B650F354" + "0x8D30A3D143FF0DB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:50 GMT" + "Mon, 21 Dec 2015 19:29:49 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "98e4b968-9df2-4dff-b8f1-62b205bf8397" + "469f7795-95d0-431a-9d0f-32acf55ddd8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14992" ], "x-ms-request-id": [ - "954c6b24-c3d2-4e79-8dfb-9230a0d702d3" + "b5bf071b-db4b-4271-b9bc-0e4a76a3b0f4" ], "x-ms-correlation-request-id": [ - "954c6b24-c3d2-4e79-8dfb-9230a0d702d3" + "b5bf071b-db4b-4271-b9bc-0e4a76a3b0f4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004750Z:954c6b24-c3d2-4e79-8dfb-9230a0d702d3" + "CENTRALUS:20151221T192950Z:b5bf071b-db4b-4271-b9bc-0e4a76a3b0f4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:49 GMT" + "Mon, 21 Dec 2015 19:29:50 GMT" ], "ETag": [ - "0x8D2EA31B9EC3018" + "0x8D30A3D17C27AB6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "a4ee9d39-e7c6-45fd-a2e8-a8e3fcd0b175" + "e43492da-1a01-4107-b969-ba1a5721d1fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1195" ], "x-ms-request-id": [ - "a6fd2cb6-5d79-440e-a72f-12499109c872" + "b447adf6-0f8c-4d09-b960-8706dbfddae8" ], "x-ms-correlation-request-id": [ - "a6fd2cb6-5d79-440e-a72f-12499109c872" + "b447adf6-0f8c-4d09-b960-8706dbfddae8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004744Z:a6fd2cb6-5d79-440e-a72f-12499109c872" + "CENTRALUS:20151221T192945Z:b447adf6-0f8c-4d09-b960-8706dbfddae8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "d4b23b3e-ceac-4d0b-8cdf-7866c6c8afab" + "fd4634b6-0237-4ca5-a632-16faa7bd7397" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1194" ], "x-ms-request-id": [ - "90b464e1-59fb-4ba4-b151-f694f2bb7fb0" + "47a52766-7930-4b6e-8aba-1a064cddcfc9" ], "x-ms-correlation-request-id": [ - "90b464e1-59fb-4ba4-b151-f694f2bb7fb0" + "47a52766-7930-4b6e-8aba-1a064cddcfc9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004750Z:90b464e1-59fb-4ba4-b151-f694f2bb7fb0" + "CENTRALUS:20151221T192950Z:47a52766-7930-4b6e-8aba-1a064cddcfc9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:47:49 GMT" + "Mon, 21 Dec 2015 19:29:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"nodeFileContentByTaskPipe\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "108" ], "client-request-id": [ - "ea93a5e5-90a7-4da8-93cd-f8a2d85a7376" + "15cc9dc0-b737-4543-a4f5-8b0eec0b84fc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:44 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "03a81276-5d62-41cd-93ce-74c76a861b9e" + "35fed95f-a176-472b-b8da-b26bd0f15f07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ea93a5e5-90a7-4da8-93cd-f8a2d85a7376" + "15cc9dc0-b737-4543-a4f5-8b0eec0b84fc" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:44 GMT" ], "ETag": [ - "0x8D2EA31B65FF2AF" + "0x8D30A3D145FA2F0" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "115" ], "client-request-id": [ - "ff7de2fe-29a4-4592-9638-3ca8afa7d35b" + "7e537ee6-bbc9-4dc2-a9e6-9064a4e0d8f3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:45 GMT" + "Mon, 21 Dec 2015 19:29:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a0703d9f-942b-4699-b6d8-6f88accc97d3" + "5297b2a7-6e87-463b-b4ab-964be04220c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ff7de2fe-29a4-4592-9638-3ca8afa7d35b" + "7e537ee6-bbc9-4dc2-a9e6-9064a4e0d8f3" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskPipe/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:44 GMT" ], "ETag": [ - "0x8D2EA31B69ABDB8" + "0x8D30A3D150A8780" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskPipe/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "21d3c601-044e-4be2-9593-aade244b7188" + "02935e16-5848-484c-98e9-b18161d56b00" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA31B69ABDB8\",\r\n \"creationTime\": \"2015-11-11T00:47:45.055276Z\",\r\n \"lastModified\": \"2015-11-11T00:47:45.055276Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:47:45.055276Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileContentByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3D150A8780\",\r\n \"creationTime\": \"2015-12-21T19:29:45.1666304Z\",\r\n \"lastModified\": \"2015-12-21T19:29:45.1666304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:29:45.1666304Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:45 GMT" + "Mon, 21 Dec 2015 19:29:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "771fbf2c-6dda-4158-af6c-d641adf4b314" + "f8cbead2-5324-4e89-98d4-12c8e400d248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "21d3c601-044e-4be2-9593-aade244b7188" + "02935e16-5848-484c-98e9-b18161d56b00" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:44 GMT" ], "ETag": [ - "0x8D2EA31B69ABDB8" + "0x8D30A3D150A8780" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "779a7d5e-0718-4275-9c05-b8a00d2819a1" + "46329499-f7fb-42d7-86ad-5c25f5aa090d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:45 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "609b3baa-17f5-498f-8f92-fc17dd5e062b" + "64157a49-c15f-4057-b71a-810790e1af9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "779a7d5e-0718-4275-9c05-b8a00d2819a1" + "46329499-f7fb-42d7-86ad-5c25f5aa090d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:44 GMT" + "Mon, 21 Dec 2015 19:29:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cfd9c657-c8bb-4308-a2b7-74bd739d3f24" + "dd0df45d-11b7-4580-88ac-1e245bc48753" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:47 GMT" + "Mon, 21 Dec 2015 19:29:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "9ce32dc5-650c-4465-bf9a-0a6abf00707d" + "dbeb4459-e306-492a-a2a8-4fa7b73ab0b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cfd9c657-c8bb-4308-a2b7-74bd739d3f24" + "dd0df45d-11b7-4580-88ac-1e245bc48753" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:46 GMT" + "Mon, 21 Dec 2015 19:29:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcy90ZXN0VGFzay9maWxlcy93ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcy90ZXN0VGFzay9maWxlcy93ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "309dba2c-18b4-40b2-ad3c-09dab26e341e" + "4ea4d1cb-7fd3-4c3c-af82-2530db0d58b5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:50 GMT" + "Mon, 21 Dec 2015 19:29:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -646,22 +646,22 @@ "application/octet-stream" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:46 GMT" + "Mon, 21 Dec 2015 19:29:47 GMT" ], "request-id": [ - "fff1e4dd-0add-4385-9bdb-b3b7319d2a13" + "722c39ff-cfcd-4f2e-a78d-9d67e5ad5e68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "309dba2c-18b4-40b2-ad3c-09dab26e341e" + "4ea4d1cb-7fd3-4c3c-af82-2530db0d58b5" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Wed, 11 Nov 2015 00:47:46 GMT" + "Mon, 21 Dec 2015 19:29:47 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -670,7 +670,7 @@ "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fjobs%2FnodeFileContentByTaskPipe%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:47:52 GMT" + "Mon, 21 Dec 2015 19:29:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,22 +679,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcy90ZXN0VGFzay9maWxlcy93ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskPipe/tasks/testTask/files/wd%5CtestFile.txt?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZS90YXNrcy90ZXN0VGFzay9maWxlcy93ZCU1Q3Rlc3RGaWxlLnR4dD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8af0faa8-cd6c-4ef9-8804-75a81d5508df" + "9e6851a4-521d-425b-b7af-7cb2de7f88c6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:50 GMT" + "Mon, 21 Dec 2015 19:29:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -704,25 +704,25 @@ "application/octet-stream" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:47:46 GMT" + "Mon, 21 Dec 2015 19:29:47 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "46523675-c79d-45c4-bd9f-8102a66c99db" + "60ffe1c2-afac-4ed9-a4a4-c7a68ef4834b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8af0faa8-cd6c-4ef9-8804-75a81d5508df" + "9e6851a4-521d-425b-b7af-7cb2de7f88c6" ], "DataServiceVersion": [ "3.0" ], "ocp-creation-time": [ - "Wed, 11 Nov 2015 00:47:46 GMT" + "Mon, 21 Dec 2015 19:29:47 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -731,7 +731,7 @@ "https%3A%2F%2Fpstestaccount.eastus.batch.azure.com%2Fjobs%2FnodeFileContentByTaskPipe%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Wed, 11 Nov 2015 00:47:52 GMT" + "Mon, 21 Dec 2015 19:29:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -740,22 +740,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTaskPipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileContentByTaskPipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrUGlwZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3363a89d-67b2-42b9-ac39-721ece61ea63" + "0b09ec62-c7f4-42f4-a96e-310ab05de4b7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:47:50 GMT" + "Mon, 21 Dec 2015 19:29:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -765,19 +765,19 @@ "chunked" ], "request-id": [ - "008818d3-0854-4044-b229-2b7fcd2f4847" + "dbdccb3a-cadd-489c-8670-b38a22a713a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3363a89d-67b2-42b9-ac39-721ece61ea63" + "0b09ec62-c7f4-42f4-a96e-310ab05de4b7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:47:51 GMT" + "Mon, 21 Dec 2015 19:29:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFileById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFileById.json index 442e5f9b11f7..36bfc07a7da5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFileById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFileById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14887" ], "x-ms-request-id": [ - "9e20fccd-39fc-47ba-8bf8-02be855f395d" + "41d7fa46-5810-4690-a856-292e28e05d6f" ], "x-ms-correlation-request-id": [ - "9e20fccd-39fc-47ba-8bf8-02be855f395d" + "41d7fa46-5810-4690-a856-292e28e05d6f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004526Z:9e20fccd-39fc-47ba-8bf8-02be855f395d" + "CENTRALUS:20151221T192528Z:41d7fa46-5810-4690-a856-292e28e05d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:45:25 GMT" + "Mon, 21 Dec 2015 19:25:28 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14886" ], "x-ms-request-id": [ - "b4b1150f-ec69-4644-b0ca-76461e6d92e6" + "15ee7b9b-6d16-4c09-838b-edd42ba635e1" ], "x-ms-correlation-request-id": [ - "b4b1150f-ec69-4644-b0ca-76461e6d92e6" + "15ee7b9b-6d16-4c09-838b-edd42ba635e1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004530Z:b4b1150f-ec69-4644-b0ca-76461e6d92e6" + "CENTRALUS:20151221T192532Z:15ee7b9b-6d16-4c09-838b-edd42ba635e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:45:29 GMT" + "Mon, 21 Dec 2015 19:25:32 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:45:26 GMT" + "Mon, 21 Dec 2015 19:25:28 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ef61d521-f885-4e40-b6b1-5ea11a754f0c" + "2fa97337-857f-463d-ab9b-0be141b4540c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14977" ], "x-ms-request-id": [ - "38944808-2ba6-40b3-beca-0ba7be9b2ff2" + "5d2cdff4-fb72-4e62-badb-a6e59ef4cf26" ], "x-ms-correlation-request-id": [ - "38944808-2ba6-40b3-beca-0ba7be9b2ff2" + "5d2cdff4-fb72-4e62-badb-a6e59ef4cf26" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004527Z:38944808-2ba6-40b3-beca-0ba7be9b2ff2" + "CENTRALUS:20151221T192529Z:5d2cdff4-fb72-4e62-badb-a6e59ef4cf26" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:45:26 GMT" + "Mon, 21 Dec 2015 19:25:29 GMT" ], "ETag": [ - "0x8D2EA3164492AC1" + "0x8D30A3C7BD75A4C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:45:30 GMT" + "Mon, 21 Dec 2015 19:25:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7f851fc7-aded-4fed-8e4a-1aa7da0fe0f3" + "df4becae-c6e9-4914-ae27-fa66834504c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14976" ], "x-ms-request-id": [ - "0b791361-d12d-4bfd-8ca2-f14948960280" + "1857748d-29ba-40bb-8e2a-07aaff69b3af" ], "x-ms-correlation-request-id": [ - "0b791361-d12d-4bfd-8ca2-f14948960280" + "1857748d-29ba-40bb-8e2a-07aaff69b3af" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004530Z:0b791361-d12d-4bfd-8ca2-f14948960280" + "CENTRALUS:20151221T192532Z:1857748d-29ba-40bb-8e2a-07aaff69b3af" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:45:30 GMT" + "Mon, 21 Dec 2015 19:25:32 GMT" ], "ETag": [ - "0x8D2EA31664F6788" + "0x8D30A3C7DBEF56C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "af63542f-b2b0-44de-9782-df90f8da05c9" + "2c0eb868-3635-4545-a131-50df4e4b0d7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1186" ], "x-ms-request-id": [ - "85fd9ec0-882e-4293-b9b8-2f6a4a1654e5" + "49660f01-b109-42b9-a412-0ad340e196d0" ], "x-ms-correlation-request-id": [ - "85fd9ec0-882e-4293-b9b8-2f6a4a1654e5" + "49660f01-b109-42b9-a412-0ad340e196d0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004527Z:85fd9ec0-882e-4293-b9b8-2f6a4a1654e5" + "CENTRALUS:20151221T192529Z:49660f01-b109-42b9-a412-0ad340e196d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:45:26 GMT" + "Mon, 21 Dec 2015 19:25:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "92c08f07-8ff1-4532-a4b0-8178bed949b8" + "a325300c-cfa1-498a-b3ee-e6902a43fa93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1185" ], "x-ms-request-id": [ - "9e5a59a1-8b93-4e84-8374-62af89e1d1ef" + "2b9d3854-b093-418c-b470-cee9efb6870a" ], "x-ms-correlation-request-id": [ - "9e5a59a1-8b93-4e84-8374-62af89e1d1ef" + "2b9d3854-b093-418c-b470-cee9efb6870a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004530Z:9e5a59a1-8b93-4e84-8374-62af89e1d1ef" + "CENTRALUS:20151221T192533Z:2b9d3854-b093-418c-b470-cee9efb6870a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:45:30 GMT" + "Mon, 21 Dec 2015 19:25:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "922ad844-df5c-4bf8-b913-cf5be15f6b93" + "f7a1b282-263b-4187-bf39-a375c24c4128" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:45:27 GMT" + "Mon, 21 Dec 2015 19:25:29 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 13,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 7,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "1299ee44-7e84-4905-8bb8-837c0dcb51dc" + "ec1c7715-d671-43eb-b26e-6b0490851a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "922ad844-df5c-4bf8-b913-cf5be15f6b93" + "f7a1b282-263b-4187-bf39-a375c24c4128" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:45:28 GMT" + "Mon, 21 Dec 2015 19:25:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/rdp?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9yZHA/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/rdp?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovcmRwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "11cdac65-76cd-4075-aa14-7a239a752cba" + "b4726038-3521-4691-8213-3e20106d3052" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:45:30 GMT" + "Mon, 21 Dec 2015 19:25:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "full address:s:40.117.237.180\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_2", + "ResponseBody": "full address:s:40.117.237.180\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_6", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "d3991bac-1540-4b7c-8621-994f51685f00" + "fe50f121-cf1b-4ae1-876c-2dd0642d0eaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "11cdac65-76cd-4075-aa14-7a239a752cba" + "b4726038-3521-4691-8213-3e20106d3052" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:45:31 GMT" + "Mon, 21 Dec 2015 19:25:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/rdp?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9yZHA/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/rdp?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovcmRwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "583f95e0-26bb-454e-8e7c-a0ad49218f89" + "e70e6d3e-0aef-411e-a73a-45e83a85901e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:45:30 GMT" + "Mon, 21 Dec 2015 19:25:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "full address:s:40.117.237.180\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_2", + "ResponseBody": "full address:s:40.117.237.180\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_6", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "a6e083e9-a6dd-4a2b-be6c-5679a8e08de7" + "08fbafe7-b53e-4551-b604-86c410fad000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "583f95e0-26bb-454e-8e7c-a0ad49218f89" + "e70e6d3e-0aef-411e-a73a-45e83a85901e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:45:31 GMT" + "Mon, 21 Dec 2015 19:25:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFilePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFilePipeline.json index f1f29b9ec2ad..d2e7898d0407 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFilePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFilePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14998" ], "x-ms-request-id": [ - "f3d6137d-517e-4202-81ca-f0a7166e1b87" + "86761d1e-0f4c-4d3c-8a59-ccea39a45543" ], "x-ms-correlation-request-id": [ - "f3d6137d-517e-4202-81ca-f0a7166e1b87" + "86761d1e-0f4c-4d3c-8a59-ccea39a45543" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004036Z:f3d6137d-517e-4202-81ca-f0a7166e1b87" + "WESTUS:20151221T192733Z:86761d1e-0f4c-4d3c-8a59-ccea39a45543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:35 GMT" + "Mon, 21 Dec 2015 19:27:33 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14997" ], "x-ms-request-id": [ - "56639f83-97c3-4a39-a47b-8997a63a3bf2" + "03a19f0b-ecd6-4621-bdf4-57800ee22aed" ], "x-ms-correlation-request-id": [ - "56639f83-97c3-4a39-a47b-8997a63a3bf2" + "03a19f0b-ecd6-4621-bdf4-57800ee22aed" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004041Z:56639f83-97c3-4a39-a47b-8997a63a3bf2" + "WESTUS:20151221T192737Z:03a19f0b-ecd6-4621-bdf4-57800ee22aed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:40 GMT" + "Mon, 21 Dec 2015 19:27:37 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:40:38 GMT" + "Mon, 21 Dec 2015 19:27:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "36a26221-7fdf-418d-8b1f-5e1dd48dab62" + "a67e9121-dc38-4470-9898-b6f526746aba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-request-id": [ - "ba065e51-0429-4817-a7c7-6653fb82ce2a" + "345cfe29-e297-413f-a150-4b564677b3f9" ], "x-ms-correlation-request-id": [ - "ba065e51-0429-4817-a7c7-6653fb82ce2a" + "345cfe29-e297-413f-a150-4b564677b3f9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004037Z:ba065e51-0429-4817-a7c7-6653fb82ce2a" + "WESTUS:20151221T192734Z:345cfe29-e297-413f-a150-4b564677b3f9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:37 GMT" + "Mon, 21 Dec 2015 19:27:34 GMT" ], "ETag": [ - "0x8D2EA30B82BD5E9" + "0x8D30A3CC683FA0D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:40:41 GMT" + "Mon, 21 Dec 2015 19:27:36 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "046f5458-555a-4804-a5a1-18aa966fa247" + "359eb20f-a68a-459a-91ae-182a55b1f1df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-request-id": [ - "7948f8ca-368b-424a-958a-f1b2efaa4078" + "a973d1b8-26f5-4176-b2a0-11be2424ac0e" ], "x-ms-correlation-request-id": [ - "7948f8ca-368b-424a-958a-f1b2efaa4078" + "a973d1b8-26f5-4176-b2a0-11be2424ac0e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004041Z:7948f8ca-368b-424a-958a-f1b2efaa4078" + "WESTUS:20151221T192737Z:a973d1b8-26f5-4176-b2a0-11be2424ac0e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:40 GMT" + "Mon, 21 Dec 2015 19:27:37 GMT" ], "ETag": [ - "0x8D2EA30BA351E4E" + "0x8D30A3CC859B063" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d9bff7e1-8cf1-4dbb-b526-5b22735f6b21" + "f1498de6-e804-4c7e-8685-3be9896bbdd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-request-id": [ - "33625873-7117-4ff8-afcd-11412f406221" + "5ab3c42f-9649-45dd-a5c2-4a184396e74f" ], "x-ms-correlation-request-id": [ - "33625873-7117-4ff8-afcd-11412f406221" + "5ab3c42f-9649-45dd-a5c2-4a184396e74f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004037Z:33625873-7117-4ff8-afcd-11412f406221" + "WESTUS:20151221T192734Z:5ab3c42f-9649-45dd-a5c2-4a184396e74f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:37 GMT" + "Mon, 21 Dec 2015 19:27:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "144d9dd2-4b7c-41e4-b6b5-5df85c26874d" + "f1c40fab-9976-4d09-9d21-1f189872ff8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-request-id": [ - "4c6d5c0e-c1cb-4161-b84e-e375f18cffc8" + "bbbbe259-2ea6-41ed-a750-fc2b5c229268" ], "x-ms-correlation-request-id": [ - "4c6d5c0e-c1cb-4161-b84e-e375f18cffc8" + "bbbbe259-2ea6-41ed-a750-fc2b5c229268" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004041Z:4c6d5c0e-c1cb-4161-b84e-e375f18cffc8" + "WESTUS:20151221T192737Z:bbbbe259-2ea6-41ed-a750-fc2b5c229268" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:40:40 GMT" + "Mon, 21 Dec 2015 19:27:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7ae7d62d-1cdd-490a-b538-2dfb5ee9df83" + "3eb0666a-faf2-47ee-a347-297672728300" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:40:37 GMT" + "Mon, 21 Dec 2015 19:27:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 11,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "2c753ad2-fe85-4df5-9032-5e726c5050ad" + "d5677415-13c3-4fbd-92f5-4e510e348752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7ae7d62d-1cdd-490a-b538-2dfb5ee9df83" + "3eb0666a-faf2-47ee-a347-297672728300" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:40:39 GMT" + "Mon, 21 Dec 2015 19:27:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "70fb966a-dc89-4c54-88d9-add681ea94a3" + "439dbc0d-6d20-4df8-ae98-2c1fc9b54e72" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:40:41 GMT" + "Mon, 21 Dec 2015 19:27:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "453f7fab-ad98-4413-bd02-b8f3e29b0922" + "12ca8901-e07e-45d3-8372-e14d2f6c0702" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "70fb966a-dc89-4c54-88d9-add681ea94a3" + "439dbc0d-6d20-4df8-ae98-2c1fc9b54e72" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:40:42 GMT" + "Mon, 21 Dec 2015 19:27:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/rdp?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9yZHA/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/rdp?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovcmRwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "665d99a5-00cb-4d76-950f-6215815d1e74" + "d89565a8-4f6d-4796-970c-5437b9b93d6d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:40:41 GMT" + "Mon, 21 Dec 2015 19:27:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "full address:s:40.117.237.180\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_2", + "ResponseBody": "full address:s:40.117.237.180\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_6", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "7d16ec0e-66a1-4886-a512-af23a11bfcb1" + "d1f6dac7-a9fc-4a53-9b41-3ccf3172329d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "665d99a5-00cb-4d76-950f-6215815d1e74" + "d89565a8-4f6d-4796-970c-5437b9b93d6d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:40:42 GMT" + "Mon, 21 Dec 2015 19:27:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByComputeNode.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByComputeNode.json index 78de970c7ceb..d62e03e4170b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByComputeNode.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByComputeNode.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14999" ], "x-ms-request-id": [ - "f84292e7-f2cd-46ce-b5c8-96613a16ea67" + "96010a9f-5837-4cb0-a922-f26073079724" ], "x-ms-correlation-request-id": [ - "f84292e7-f2cd-46ce-b5c8-96613a16ea67" + "96010a9f-5837-4cb0-a922-f26073079724" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004912Z:f84292e7-f2cd-46ce-b5c8-96613a16ea67" + "WESTUS:20151221T191616Z:96010a9f-5837-4cb0-a922-f26073079724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:49:12 GMT" + "Mon, 21 Dec 2015 19:16:15 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14998" ], "x-ms-request-id": [ - "6af5e015-d318-42ad-9edc-bd221cedf385" + "15316578-b3ca-444c-b92a-dca473f9df88" ], "x-ms-correlation-request-id": [ - "6af5e015-d318-42ad-9edc-bd221cedf385" + "15316578-b3ca-444c-b92a-dca473f9df88" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004931Z:6af5e015-d318-42ad-9edc-bd221cedf385" + "WESTUS:20151221T191621Z:15316578-b3ca-444c-b92a-dca473f9df88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:49:31 GMT" + "Mon, 21 Dec 2015 19:16:21 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:49:29 GMT" + "Mon, 21 Dec 2015 19:16:16 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b639c237-236c-46f3-8b33-f6b88d5e6ce6" + "a487441e-cc74-4ee7-b4e3-6ec720169003" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14992" ], "x-ms-request-id": [ - "f2c47d23-1457-4447-bcae-ae54667c9ff1" + "1b976f17-45d6-477a-8485-94b70511d855" ], "x-ms-correlation-request-id": [ - "f2c47d23-1457-4447-bcae-ae54667c9ff1" + "1b976f17-45d6-477a-8485-94b70511d855" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004928Z:f2c47d23-1457-4447-bcae-ae54667c9ff1" + "WESTUS:20151221T191618Z:1b976f17-45d6-477a-8485-94b70511d855" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:49:28 GMT" + "Mon, 21 Dec 2015 19:16:18 GMT" ], "ETag": [ - "0x8D2EA31F4AE9814" + "0x8D30A3B3337D74B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:49:32 GMT" + "Mon, 21 Dec 2015 19:16:20 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "aa252549-42cd-4ec9-8e5d-4597aa75f027" + "00426b5e-8f64-436e-b264-e59330ec555e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14991" ], "x-ms-request-id": [ - "940f694a-6359-4c3f-8c5c-a6d707135296" + "dea65628-6175-4b34-9ceb-25cbc86ee8da" ], "x-ms-correlation-request-id": [ - "940f694a-6359-4c3f-8c5c-a6d707135296" + "dea65628-6175-4b34-9ceb-25cbc86ee8da" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004931Z:940f694a-6359-4c3f-8c5c-a6d707135296" + "WESTUS:20151221T191621Z:dea65628-6175-4b34-9ceb-25cbc86ee8da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:49:31 GMT" + "Mon, 21 Dec 2015 19:16:21 GMT" ], "ETag": [ - "0x8D2EA31F6BE575C" + "0x8D30A3B352B19BB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "793c43a7-ac0c-49d7-b624-db4d51abf587" + "2f27f831-8593-431d-b3e8-eb8dce3e78ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "976d44f1-ce3d-4b12-a12f-c60afb5e5d42" + "43880488-94f1-4f8e-8181-24568ca50653" ], "x-ms-correlation-request-id": [ - "976d44f1-ce3d-4b12-a12f-c60afb5e5d42" + "43880488-94f1-4f8e-8181-24568ca50653" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004928Z:976d44f1-ce3d-4b12-a12f-c60afb5e5d42" + "WESTUS:20151221T191618Z:43880488-94f1-4f8e-8181-24568ca50653" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:49:28 GMT" + "Mon, 21 Dec 2015 19:16:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "059f7eb2-1da3-449a-aadf-fc0bfd11adef" + "9e4f64a1-28fb-45f6-8d98-88a82adad009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "9b2fdd6b-b0b3-43bc-8d21-e0ea341c62e9" + "7fc654da-ac76-49c3-96c3-2623e4e51f3d" ], "x-ms-correlation-request-id": [ - "9b2fdd6b-b0b3-43bc-8d21-e0ea341c62e9" + "7fc654da-ac76-49c3-96c3-2623e4e51f3d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004931Z:9b2fdd6b-b0b3-43bc-8d21-e0ea341c62e9" + "WESTUS:20151221T191621Z:7fc654da-ac76-49c3-96c3-2623e4e51f3d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:49:31 GMT" + "Mon, 21 Dec 2015 19:16:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "887b2f6c-c99d-40a9-8a7f-4b700d127b29" + "ccdc5a31-9853-437a-ae44-0b787f977097" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:49:28 GMT" + "Mon, 21 Dec 2015 19:16:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "380e616f-c6a7-4bc8-9988-175ba04002a1" + "a5155487-1ea9-429c-bd08-46857e168d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "887b2f6c-c99d-40a9-8a7f-4b700d127b29" + "ccdc5a31-9853-437a-ae44-0b787f977097" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:49:29 GMT" + "Mon, 21 Dec 2015 19:16:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fdab42f9-4ee5-482c-a1f1-2dd959ae690b" + "a7895b13-0a89-408e-96b7-bbb31a990ef3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:49:31 GMT" + "Mon, 21 Dec 2015 19:16:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "0e244700-57e2-47a4-a512-0a198ad581d4" + "30b22147-52af-4fd1-8f78-11cf582a8fe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fdab42f9-4ee5-482c-a1f1-2dd959ae690b" + "a7895b13-0a89-408e-96b7-bbb31a990ef3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:49:32 GMT" + "Mon, 21 Dec 2015 19:16:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1b616d0-5b76-415d-8322-af8b973fc095" + "1b72a253-99be-4214-b5ca-cb0859352b92" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:49:32 GMT" + "Mon, 21 Dec 2015 19:16:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "f5a12f1f-672b-47e9-a977-e79cc938965a" + "6336c9f5-bff9-4592-a76e-4e5f90888068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e1b616d0-5b76-415d-8322-af8b973fc095" + "1b72a253-99be-4214-b5ca-cb0859352b92" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:49:32 GMT" + "Mon, 21 Dec 2015 19:16:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,26 +484,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2ef2a73f-f69c-44a0-9a89-129da18e1727" + "66d921b6-c8b9-4605-bbf3-0a0a39bd3288" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:49:32 GMT" + "Mon, 21 Dec 2015 19:16:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "3d8b6709-896b-4d94-a59a-584120f7d300" + "cb23d4ba-6e98-4466-b9a8-b51444d4e3a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2ef2a73f-f69c-44a0-9a89-129da18e1727" + "66d921b6-c8b9-4605-bbf3-0a0a39bd3288" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:49:32 GMT" + "Mon, 21 Dec 2015 19:16:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByTask.json index e1ba6c4ec127..b98d49935127 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllNodeFilesByTask.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-request-id": [ - "8105ff14-1dbf-4b48-ab92-81e65c1855f0" + "bc085612-af4d-4836-b38b-45421eff0065" ], "x-ms-correlation-request-id": [ - "8105ff14-1dbf-4b48-ab92-81e65c1855f0" + "bc085612-af4d-4836-b38b-45421eff0065" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004618Z:8105ff14-1dbf-4b48-ab92-81e65c1855f0" + "CENTRALUS:20151221T192107Z:bc085612-af4d-4836-b38b-45421eff0065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:46:17 GMT" + "Mon, 21 Dec 2015 19:21:06 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-request-id": [ - "f7cfaa94-ac65-4c53-8e16-53de42e82721" + "f6d17438-b5b5-4c7d-8ed5-0fe5906d35ac" ], "x-ms-correlation-request-id": [ - "f7cfaa94-ac65-4c53-8e16-53de42e82721" + "f6d17438-b5b5-4c7d-8ed5-0fe5906d35ac" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004625Z:f7cfaa94-ac65-4c53-8e16-53de42e82721" + "CENTRALUS:20151221T192114Z:f6d17438-b5b5-4c7d-8ed5-0fe5906d35ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:46:24 GMT" + "Mon, 21 Dec 2015 19:21:13 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:46:19 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "00526c90-4a9f-4342-9dd4-e0bff18e8356" + "9335de76-0d9c-4080-88b2-00d7fbf4435a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14888" ], "x-ms-request-id": [ - "81bcf442-eb26-4518-bbfc-5b17ddb93a50" + "16b172a9-e649-4cbb-8999-18c5fea4e2a1" ], "x-ms-correlation-request-id": [ - "81bcf442-eb26-4518-bbfc-5b17ddb93a50" + "16b172a9-e649-4cbb-8999-18c5fea4e2a1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004619Z:81bcf442-eb26-4518-bbfc-5b17ddb93a50" + "CENTRALUS:20151221T192108Z:16b172a9-e649-4cbb-8999-18c5fea4e2a1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:46:19 GMT" + "Mon, 21 Dec 2015 19:21:08 GMT" ], "ETag": [ - "0x8D2EA31836E3E69" + "0x8D30A3BE045E084" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:46:25 GMT" + "Mon, 21 Dec 2015 19:21:12 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d845e554-f639-4174-88dd-bcbe4fb27c6e" + "74501670-bb2a-4866-be5f-0221cdf9008a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14887" ], "x-ms-request-id": [ - "55a8a098-fea4-445c-b80a-12b7b92e3eb4" + "7dfaaaae-30a2-48fe-a75c-dbcd80338cde" ], "x-ms-correlation-request-id": [ - "55a8a098-fea4-445c-b80a-12b7b92e3eb4" + "7dfaaaae-30a2-48fe-a75c-dbcd80338cde" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004625Z:55a8a098-fea4-445c-b80a-12b7b92e3eb4" + "CENTRALUS:20151221T192114Z:7dfaaaae-30a2-48fe-a75c-dbcd80338cde" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:46:25 GMT" + "Mon, 21 Dec 2015 19:21:13 GMT" ], "ETag": [ - "0x8D2EA3187242EA5" + "0x8D30A3BE3C0A478" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "6894e22f-caff-4dcb-8368-cb603f569067" + "8da27bf4-2c1f-413f-b6b4-a65347b45de3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1191" ], "x-ms-request-id": [ - "9c465f2b-dd57-4b77-9ed9-cc84b7eed31f" + "cba35c35-8c08-4e12-86e5-cfa57f0865cc" ], "x-ms-correlation-request-id": [ - "9c465f2b-dd57-4b77-9ed9-cc84b7eed31f" + "cba35c35-8c08-4e12-86e5-cfa57f0865cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004619Z:9c465f2b-dd57-4b77-9ed9-cc84b7eed31f" + "CENTRALUS:20151221T192108Z:cba35c35-8c08-4e12-86e5-cfa57f0865cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:46:19 GMT" + "Mon, 21 Dec 2015 19:21:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "ba458cf0-6196-4151-89bb-ba2985ee0f87" + "32b9bf9d-7c60-436a-b1d3-40e820ac0975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1190" ], "x-ms-request-id": [ - "8019ea18-1719-4581-a39d-af6ea4b8f005" + "c9f66d35-7811-407a-94a7-478711937f2b" ], "x-ms-correlation-request-id": [ - "8019ea18-1719-4581-a39d-af6ea4b8f005" + "c9f66d35-7811-407a-94a7-478711937f2b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004625Z:8019ea18-1719-4581-a39d-af6ea4b8f005" + "CENTRALUS:20151221T192114Z:c9f66d35-7811-407a-94a7-478711937f2b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:46:25 GMT" + "Mon, 21 Dec 2015 19:21:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listNodeFilesByTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "105" ], "client-request-id": [ - "f9842a6a-7d3a-42a5-87a5-422b9ea06002" + "7de3c471-7f65-40f6-bf4d-d6de32f48a3c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:19 GMT" + "Mon, 21 Dec 2015 19:21:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:46:19 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fcf0d42d-14fa-45b4-8fbb-5f11a6c2aed8" + "2c587a4b-eac6-48e6-8e8f-4d422dcdafa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f9842a6a-7d3a-42a5-87a5-422b9ea06002" + "7de3c471-7f65-40f6-bf4d-d6de32f48a3c" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:46:20 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "ETag": [ - "0x8D2EA3183D8F327" + "0x8D30A3BE0A8A089" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "ddd104eb-1d89-4ee2-bb85-774f229b0e48" + "0c5c18da-1cab-4837-a575-f6ac4a2a8044" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:19 GMT" + "Mon, 21 Dec 2015 19:21:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:46:21 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "41a3cb52-4023-4480-816f-8a3f7ae0114a" + "99be4abf-53ea-4bcd-88c2-3f9fe9646c33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ddd104eb-1d89-4ee2-bb85-774f229b0e48" + "0c5c18da-1cab-4837-a575-f6ac4a2a8044" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:46:20 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "ETag": [ - "0x8D2EA3184AEADC3" + "0x8D30A3BE08B3B1E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8ecfa402-3903-4698-888f-80b5a376f0c1" + "bdc026bf-4064-4797-967b-a547cf22facc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:20 GMT" + "Mon, 21 Dec 2015 19:21:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA3184AEADC3\",\r\n \"creationTime\": \"2015-11-11T00:46:21.2998595Z\",\r\n \"lastModified\": \"2015-11-11T00:46:21.2998595Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:46:21.2998595Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3BE08B3B1E\",\r\n \"creationTime\": \"2015-12-21T19:21:07.594115Z\",\r\n \"lastModified\": \"2015-12-21T19:21:07.594115Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:21:07.594115Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:46:21 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8b816167-6c52-4bb5-8f1c-4bfa58ba531f" + "df40ff02-8f58-4e95-883a-a6d6aa0ab55e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8ecfa402-3903-4698-888f-80b5a376f0c1" + "bdc026bf-4064-4797-967b-a547cf22facc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:20 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "ETag": [ - "0x8D2EA3184AEADC3" + "0x8D30A3BE08B3B1E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "754daa09-5de2-45fd-a6d8-b2be45d90e4d" + "c52c740f-8804-4e0d-ae5d-f8b42657bcb2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:26 GMT" + "Mon, 21 Dec 2015 19:21:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA3184AEADC3\",\r\n \"creationTime\": \"2015-11-11T00:46:21.2998595Z\",\r\n \"lastModified\": \"2015-11-11T00:46:21.2998595Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:46:20.9013964Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:46:20.7873931Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:46:20.7873931Z\",\r\n \"endTime\": \"2015-11-11T00:46:20.9013964Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3BE08B3B1E\",\r\n \"creationTime\": \"2015-12-21T19:21:07.594115Z\",\r\n \"lastModified\": \"2015-12-21T19:21:07.594115Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:21:10.5217933Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:21:10.3606632Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:21:10.3606632Z\",\r\n \"endTime\": \"2015-12-21T19:21:10.5217933Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:46:21 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2f59d54-6f0a-4934-a454-557666c17eeb" + "d1db218a-a9da-43b8-8a78-bb3e96f62219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "754daa09-5de2-45fd-a6d8-b2be45d90e4d" + "c52c740f-8804-4e0d-ae5d-f8b42657bcb2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:26 GMT" + "Mon, 21 Dec 2015 19:21:14 GMT" ], "ETag": [ - "0x8D2EA3184AEADC3" + "0x8D30A3BE08B3B1E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "abc90e35-6120-42d5-82df-2d8ab3975bab" + "967d1ac9-2684-46ff-ba26-5c69348dcfe7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:20 GMT" + "Mon, 21 Dec 2015 19:21:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "cc4b4067-e83b-4285-a323-4d1a12619c91" + "35137dc4-cab0-4508-850f-0ffbba6b2026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "abc90e35-6120-42d5-82df-2d8ab3975bab" + "967d1ac9-2684-46ff-ba26-5c69348dcfe7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:21 GMT" + "Mon, 21 Dec 2015 19:21:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0VGFzayUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2d15a7a6-bf58-4068-9ff3-5b3e5cd6fa86" + "c9a4709e-2413-4abe-9b7d-d8c55d05e807" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:22 GMT" + "Mon, 21 Dec 2015 19:21:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -652,19 +652,19 @@ "chunked" ], "request-id": [ - "d8b5f72b-7c07-4054-a523-9690fe60cbc0" + "5e58cebc-00f6-4d63-8df9-7f291bc19aff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2d15a7a6-bf58-4068-9ff3-5b3e5cd6fa86" + "c9a4709e-2413-4abe-9b7d-d8c55d05e807" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:23 GMT" + "Mon, 21 Dec 2015 19:21:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,26 +673,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzay9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzay9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "df9111fc-c861-4810-8a7c-07144ba3e0f3" + "d96a0205-29e6-4b92-8e5f-69bf34266b4e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:25 GMT" + "Mon, 21 Dec 2015 19:21:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:46:20.8793953Z\",\r\n \"lastModified\": \"2015-11-11T00:46:20.8793953Z\",\r\n \"contentLength\": \"2448\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:46:20.7953932Z\",\r\n \"lastModified\": \"2015-11-11T00:46:20.7953932Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:46:20.7953932Z\",\r\n \"lastModified\": \"2015-11-11T00:46:20.8893948Z\",\r\n \"contentLength\": \"414\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:21:10.460646Z\",\r\n \"lastModified\": \"2015-12-21T19:21:10.460646Z\",\r\n \"contentLength\": \"2446\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:21:10.3746438Z\",\r\n \"lastModified\": \"2015-12-21T19:21:10.3746438Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:21:10.3746438Z\",\r\n \"lastModified\": \"2015-12-21T19:21:10.4716466Z\",\r\n \"contentLength\": \"414\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -701,19 +701,19 @@ "chunked" ], "request-id": [ - "c98692f8-35cb-4ac9-9f14-b6ff841f3aed" + "6932550a-65df-4899-8b21-21e913646188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "df9111fc-c861-4810-8a7c-07144ba3e0f3" + "d96a0205-29e6-4b92-8e5f-69bf34266b4e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:26 GMT" + "Mon, 21 Dec 2015 19:21:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,26 +722,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzay9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listNodeFilesByTaskJob/tasks/testTask/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYi90YXNrcy90ZXN0VGFzay9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "11b3f008-8c66-4ce2-a37f-c9fec337fe65" + "caa050d9-8c02-4af3-bb4a-8734adf6ed8e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:26 GMT" + "Mon, 21 Dec 2015 19:21:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:46:20.8793953Z\",\r\n \"lastModified\": \"2015-11-11T00:46:20.8793953Z\",\r\n \"contentLength\": \"2448\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:46:20.7953932Z\",\r\n \"lastModified\": \"2015-11-11T00:46:20.7953932Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:46:20.7953932Z\",\r\n \"lastModified\": \"2015-11-11T00:46:20.8893948Z\",\r\n \"contentLength\": \"414\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:21:10.460646Z\",\r\n \"lastModified\": \"2015-12-21T19:21:10.460646Z\",\r\n \"contentLength\": \"2446\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:21:10.3746438Z\",\r\n \"lastModified\": \"2015-12-21T19:21:10.3746438Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:21:10.3746438Z\",\r\n \"lastModified\": \"2015-12-21T19:21:10.4716466Z\",\r\n \"contentLength\": \"414\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFilesByTaskJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -750,19 +750,19 @@ "chunked" ], "request-id": [ - "7aa3007e-18bf-4a2b-ae3f-eeba2a9bce01" + "c0c0b685-4f4b-4c3b-9843-3e09939c2ddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "11b3f008-8c66-4ce2-a37f-c9fec337fe65" + "caa050d9-8c02-4af3-bb4a-8734adf6ed8e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:26 GMT" + "Mon, 21 Dec 2015 19:21:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -771,22 +771,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFilesByTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFilesByTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlc0J5VGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4b85d18a-6763-4420-bca9-daf0a2f3dd39" + "6bd315d6-d907-446e-80d4-75b0a80eb8a4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:46:26 GMT" + "Mon, 21 Dec 2015 19:21:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -796,19 +796,19 @@ "chunked" ], "request-id": [ - "292cefc8-56c6-4703-9079-b9251e48a4fc" + "58b291f5-42fa-4c92-9725-d36df212b6f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4b85d18a-6763-4420-bca9-daf0a2f3dd39" + "6bd315d6-d907-446e-80d4-75b0a80eb8a4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:46:27 GMT" + "Mon, 21 Dec 2015 19:21:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByComputeNodePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByComputeNodePipeline.json index aaa67d43ad61..9cebfe03ed36 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByComputeNodePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByComputeNodePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14887" ], "x-ms-request-id": [ - "18d279c5-502f-4be0-812f-d8801e7e3cf7" + "753f3c1e-d340-41be-addc-439fd0204ff8" ], "x-ms-correlation-request-id": [ - "18d279c5-502f-4be0-812f-d8801e7e3cf7" + "753f3c1e-d340-41be-addc-439fd0204ff8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004444Z:18d279c5-502f-4be0-812f-d8801e7e3cf7" + "CENTRALUS:20151221T193110Z:753f3c1e-d340-41be-addc-439fd0204ff8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:43 GMT" + "Mon, 21 Dec 2015 19:31:09 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14886" ], "x-ms-request-id": [ - "9286a438-7423-4809-96ed-cb49d4d1d27f" + "f851b2ca-465d-4965-90ac-3f5f0f862d97" ], "x-ms-correlation-request-id": [ - "9286a438-7423-4809-96ed-cb49d4d1d27f" + "f851b2ca-465d-4965-90ac-3f5f0f862d97" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004448Z:9286a438-7423-4809-96ed-cb49d4d1d27f" + "CENTRALUS:20151221T193114Z:f851b2ca-465d-4965-90ac-3f5f0f862d97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:47 GMT" + "Mon, 21 Dec 2015 19:31:13 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:44:46 GMT" + "Mon, 21 Dec 2015 19:31:10 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "25b8b15c-90ac-4115-80ce-ee605527c104" + "72824628-f3fe-490b-8826-efdcc0d5a43d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14976" ], "x-ms-request-id": [ - "e39722d4-c64f-44d3-9ead-3595381a8095" + "692db13a-cf43-4caa-8420-59e216cc1c0b" ], "x-ms-correlation-request-id": [ - "e39722d4-c64f-44d3-9ead-3595381a8095" + "692db13a-cf43-4caa-8420-59e216cc1c0b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004445Z:e39722d4-c64f-44d3-9ead-3595381a8095" + "CENTRALUS:20151221T193111Z:692db13a-cf43-4caa-8420-59e216cc1c0b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:45 GMT" + "Mon, 21 Dec 2015 19:31:10 GMT" ], "ETag": [ - "0x8D2EA314C0CE5E7" + "0x8D30A3D47C83B91" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:44:49 GMT" + "Mon, 21 Dec 2015 19:31:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8f15ef48-76d8-4863-8d91-7bf6856f6217" + "d00b8a0b-8372-4546-88a8-cd062cf8d94c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14975" ], "x-ms-request-id": [ - "e03e9411-9172-484b-ae6d-e24ae135070f" + "44c42883-b128-478a-9b84-32cbadfc7df2" ], "x-ms-correlation-request-id": [ - "e03e9411-9172-484b-ae6d-e24ae135070f" + "44c42883-b128-478a-9b84-32cbadfc7df2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004448Z:e03e9411-9172-484b-ae6d-e24ae135070f" + "CENTRALUS:20151221T193114Z:44c42883-b128-478a-9b84-32cbadfc7df2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:48 GMT" + "Mon, 21 Dec 2015 19:31:14 GMT" ], "ETag": [ - "0x8D2EA314E351E44" + "0x8D30A3D49A4B9EC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "b46aa707-9dee-4264-9bbb-fb79b95056a0" + "f1603916-9fd7-4a8d-b890-dfeebc8dc92e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1185" ], "x-ms-request-id": [ - "fff050bc-8516-4555-af58-fcd83c382780" + "652472ea-da5a-4bf3-bf27-2e49092543dd" ], "x-ms-correlation-request-id": [ - "fff050bc-8516-4555-af58-fcd83c382780" + "652472ea-da5a-4bf3-bf27-2e49092543dd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004445Z:fff050bc-8516-4555-af58-fcd83c382780" + "CENTRALUS:20151221T193111Z:652472ea-da5a-4bf3-bf27-2e49092543dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:45 GMT" + "Mon, 21 Dec 2015 19:31:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "33f800aa-af72-4870-bf6b-86d02d2d259b" + "bfcb71e0-e5ea-4ea2-ba68-dc402e9ffde4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1184" ], "x-ms-request-id": [ - "5ef67d26-9d52-4f46-aea6-2a44c9adfdc7" + "d78e0766-08c1-47c9-b7ff-6d5473f303eb" ], "x-ms-correlation-request-id": [ - "5ef67d26-9d52-4f46-aea6-2a44c9adfdc7" + "d78e0766-08c1-47c9-b7ff-6d5473f303eb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004449Z:5ef67d26-9d52-4f46-aea6-2a44c9adfdc7" + "CENTRALUS:20151221T193116Z:d78e0766-08c1-47c9-b7ff-6d5473f303eb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:48 GMT" + "Mon, 21 Dec 2015 19:31:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5cb2ddcc-8dd4-4b29-966d-160016eba5ac" + "60e42f8f-280f-40de-adf0-daba3d0d711d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:45 GMT" + "Mon, 21 Dec 2015 19:31:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 13,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 12,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "4edfa015-a688-4191-b39a-b915f3c62753" + "42a643f6-6c52-4582-99e4-7f5ec05511fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5cb2ddcc-8dd4-4b29-966d-160016eba5ac" + "60e42f8f-280f-40de-adf0-daba3d0d711d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:46 GMT" + "Mon, 21 Dec 2015 19:31:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fdac3674-b5c9-4d91-a0c5-a2167e9120ed" + "3b7b647b-ab7f-480b-b324-2db941ddd7c6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:48 GMT" + "Mon, 21 Dec 2015 19:31:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 12,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "58144975-f597-4489-b765-b262e48b1081" + "7dced928-bba3-48b5-8b41-5449dd962011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fdac3674-b5c9-4d91-a0c5-a2167e9120ed" + "3b7b647b-ab7f-480b-b324-2db941ddd7c6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:50 GMT" + "Mon, 21 Dec 2015 19:31:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "be443598-abec-47eb-a813-dc5f43b8df44" + "ce9be43c-ec8c-4b0c-a27e-e3809a7e64cf" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:49 GMT" + "Mon, 21 Dec 2015 19:31:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "4d89443b-9c49-4cbe-b5e9-44613cd72da8" + "128eb0cf-bdeb-4023-b418-22e06a5fb621" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "be443598-abec-47eb-a813-dc5f43b8df44" + "ce9be43c-ec8c-4b0c-a27e-e3809a7e64cf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:50 GMT" + "Mon, 21 Dec 2015 19:31:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByTaskPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByTaskPipeline.json index b9adf1fd0f76..40e0b2002f5d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByTaskPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFileByTaskPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14997" ], "x-ms-request-id": [ - "09e543a9-d244-434e-8b5e-f42251b9a0cf" + "bf271af5-8263-40f5-b7be-814cd644bdbf" ], "x-ms-correlation-request-id": [ - "09e543a9-d244-434e-8b5e-f42251b9a0cf" + "bf271af5-8263-40f5-b7be-814cd644bdbf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004240Z:09e543a9-d244-434e-8b5e-f42251b9a0cf" + "CENTRALUS:20151221T192647Z:bf271af5-8263-40f5-b7be-814cd644bdbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:39 GMT" + "Mon, 21 Dec 2015 19:26:47 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14996" ], "x-ms-request-id": [ - "a3fc06ff-466d-4258-902b-6369ceeb0526" + "70542ee1-0afc-48c6-94aa-ab6d82c9eb8d" ], "x-ms-correlation-request-id": [ - "a3fc06ff-466d-4258-902b-6369ceeb0526" + "70542ee1-0afc-48c6-94aa-ab6d82c9eb8d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004249Z:a3fc06ff-466d-4258-902b-6369ceeb0526" + "CENTRALUS:20151221T192655Z:70542ee1-0afc-48c6-94aa-ab6d82c9eb8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:49 GMT" + "Mon, 21 Dec 2015 19:26:54 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:40 GMT" + "Mon, 21 Dec 2015 19:26:47 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "37c4d834-f92e-4867-a616-798e3c0b931e" + "8575bf8d-40b2-481f-a7e5-04c5de06a83a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14979" ], "x-ms-request-id": [ - "49e10638-76b9-4d8f-a857-50b5aa462e28" + "82e38402-f79f-4cdb-8a0d-4875c5d29034" ], "x-ms-correlation-request-id": [ - "49e10638-76b9-4d8f-a857-50b5aa462e28" + "82e38402-f79f-4cdb-8a0d-4875c5d29034" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004241Z:49e10638-76b9-4d8f-a857-50b5aa462e28" + "CENTRALUS:20151221T192648Z:82e38402-f79f-4cdb-8a0d-4875c5d29034" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:40 GMT" + "Mon, 21 Dec 2015 19:26:47 GMT" ], "ETag": [ - "0x8D2EA31015B8CC1" + "0x8D30A3CAAFE1489" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:49 GMT" + "Mon, 21 Dec 2015 19:26:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "85de0b86-5230-4426-b218-85bac4d2749f" + "bc7863be-5662-412e-9432-5169f5de72e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14978" ], "x-ms-request-id": [ - "c25346f3-d45c-41ac-914c-397f352a5dfd" + "7fc67be9-b56d-4251-8c35-b4404c935ee9" ], "x-ms-correlation-request-id": [ - "c25346f3-d45c-41ac-914c-397f352a5dfd" + "7fc67be9-b56d-4251-8c35-b4404c935ee9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004249Z:c25346f3-d45c-41ac-914c-397f352a5dfd" + "CENTRALUS:20151221T192655Z:7fc67be9-b56d-4251-8c35-b4404c935ee9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:48 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "ETag": [ - "0x8D2EA31065092DF" + "0x8D30A3CAF1F11F3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "ad74453d-836d-4971-89c5-c2f656d87396" + "2a9802ed-f152-4e02-bc61-66cce9037bc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-request-id": [ - "552fc168-2877-4720-8273-597d832f67fc" + "a8b83515-8d27-42bd-8370-ce989fc37e97" ], "x-ms-correlation-request-id": [ - "552fc168-2877-4720-8273-597d832f67fc" + "a8b83515-8d27-42bd-8370-ce989fc37e97" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004241Z:552fc168-2877-4720-8273-597d832f67fc" + "CENTRALUS:20151221T192648Z:a8b83515-8d27-42bd-8370-ce989fc37e97" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:40 GMT" + "Mon, 21 Dec 2015 19:26:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "37250c14-4449-47f2-9aab-79cd9e0273b5" + "62c4b3e6-4c69-4739-8cb2-d31388b04c01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1193" ], "x-ms-request-id": [ - "269b9ea7-2294-480a-8efc-7f255114b59b" + "0faf3a30-0ae4-40c9-9978-c89122220ebf" ], "x-ms-correlation-request-id": [ - "269b9ea7-2294-480a-8efc-7f255114b59b" + "0faf3a30-0ae4-40c9-9978-c89122220ebf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004249Z:269b9ea7-2294-480a-8efc-7f255114b59b" + "CENTRALUS:20151221T192655Z:0faf3a30-0ae4-40c9-9978-c89122220ebf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:42:48 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"nodeFileByTaskPipe\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "101" ], "client-request-id": [ - "0b60a71e-5a99-4312-8ae6-5ea27b8a9f64" + "a9254c08-fef6-4fae-b081-33c1aa961dcf" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:41 GMT" + "Mon, 21 Dec 2015 19:26:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:41 GMT" + "Mon, 21 Dec 2015 19:26:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4e805528-df84-4754-a8cb-1433cb88bf44" + "ca015236-ae23-4524-868a-fc9794af29dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0b60a71e-5a99-4312-8ae6-5ea27b8a9f64" + "a9254c08-fef6-4fae-b081-33c1aa961dcf" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "ETag": [ - "0x8D2EA3101BC39BC" + "0x8D30A3CABF156CC" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "88fb1734-f55e-4f4d-8611-3d4862a5a946" + "3e60fe9b-b363-481d-9762-907602a68033" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:41 GMT" + "Mon, 21 Dec 2015 19:26:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cb2693a1-bba9-43d8-a5fa-b041bb9aec40" + "a9f4cd4d-68db-4922-8d50-ad5193813873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "88fb1734-f55e-4f4d-8611-3d4862a5a946" + "3e60fe9b-b363-481d-9762-907602a68033" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "ETag": [ - "0x8D2EA31031C9648" + "0x8D30A3CAC45CC2E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d20934e4-9d2a-49d9-ae8d-9daccbffb0d7" + "40ab5505-33f9-41cb-a1f3-c61a2547493c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:41 GMT" + "Mon, 21 Dec 2015 19:26:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA31031C9648\",\r\n \"creationTime\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3CAC45CC2E\",\r\n \"creationTime\": \"2015-12-21T19:26:49.394283Z\",\r\n \"lastModified\": \"2015-12-21T19:26:49.394283Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:26:49.394283Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4b68b1ec-9c8b-40a3-8c59-b1bf3530b073" + "f72b8757-bf2b-4bb5-94aa-70b459346a59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d20934e4-9d2a-49d9-ae8d-9daccbffb0d7" + "40ab5505-33f9-41cb-a1f3-c61a2547493c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "ETag": [ - "0x8D2EA31031C9648" + "0x8D30A3CAC45CC2E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "754bb449-e90b-48d1-8933-496e6159c4d6" + "9ea8f086-8572-4692-ba8b-7557b5efaaf1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:49 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA31031C9648\",\r\n \"creationTime\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:42:43.8914231Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:42:43.7304215Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:42:43.7304215Z\",\r\n \"endTime\": \"2015-11-11T00:42:43.8914231Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3CAC45CC2E\",\r\n \"creationTime\": \"2015-12-21T19:26:49.394283Z\",\r\n \"lastModified\": \"2015-12-21T19:26:49.394283Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:26:51.8685379Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:26:51.7265359Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:26:51.7265359Z\",\r\n \"endTime\": \"2015-12-21T19:26:51.8685379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e017c199-21a4-46ff-a26d-b5fe47597705" + "c7a45f0f-3fd1-4b1f-8c7a-5856f5b87d62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "754bb449-e90b-48d1-8933-496e6159c4d6" + "9ea8f086-8572-4692-ba8b-7557b5efaaf1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:54 GMT" ], "ETag": [ - "0x8D2EA31031C9648" + "0x8D30A3CAC45CC2E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "974f1027-70c5-4846-ba3a-0e4c03fc863f" + "d5137531-ed26-4a2b-a6ce-ab84c60a48eb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:41 GMT" + "Mon, 21 Dec 2015 19:26:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "507132b3-9f3f-4f68-ab28-3084ecc0b80c" + "155a29fd-42ad-45d8-a995-119e733c414a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "974f1027-70c5-4846-ba3a-0e4c03fc863f" + "d5137531-ed26-4a2b-a6ce-ab84c60a48eb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,71 +624,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "95de2145-22ba-4ecf-8224-5b3e129ceae9" + "09ac0ed2-ead8-4a04-943e-6d4de9826aa7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:43 GMT" + "Mon, 21 Dec 2015 19:26:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "436c7146-5e7b-415b-973c-ea13b8614ba5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "95de2145-22ba-4ecf-8224-5b3e129ceae9" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:42:45 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "740d7ce7-620c-45c2-b540-529320ff697a" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:42:46 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -701,19 +652,19 @@ "chunked" ], "request-id": [ - "1bc2c0f5-082b-47ab-8eef-008d653037ad" + "d450e4e9-add9-4457-94f7-8c76ad1549ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "740d7ce7-620c-45c2-b540-529320ff697a" + "09ac0ed2-ead8-4a04-943e-6d4de9826aa7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:48 GMT" + "Mon, 21 Dec 2015 19:26:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,26 +673,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzP3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzP3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0a606ed0-988b-4038-b9a1-a15f85610c4f" + "8a0ea75b-e5bf-400b-865b-9436ea5c56d2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:49 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:42:43.8284223Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.8284223Z\",\r\n \"contentLength\": \"2424\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:42:43.7384257Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.7384257Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:42:43.7384257Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.8784222Z\",\r\n \"contentLength\": \"410\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:26:51.8375367Z\",\r\n \"lastModified\": \"2015-12-21T19:26:51.8375367Z\",\r\n \"contentLength\": \"2422\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:26:51.7545357Z\",\r\n \"lastModified\": \"2015-12-21T19:26:51.7545357Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:26:51.7545357Z\",\r\n \"lastModified\": \"2015-12-21T19:26:51.8495377Z\",\r\n \"contentLength\": \"410\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -750,19 +701,19 @@ "chunked" ], "request-id": [ - "b26b619b-03f4-4f06-8589-c80d6379df8f" + "cb4f6ac2-fd3f-49eb-b186-648cdc4cb00a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0a606ed0-988b-4038-b9a1-a15f85610c4f" + "8a0ea75b-e5bf-400b-865b-9436ea5c56d2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -771,26 +722,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzP3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks/testTask/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzP3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ce64a1cd-b75c-486b-900a-da9a46c9aedd" + "069ac091-561b-436a-aaf9-4b4c81dbede9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:42:43.8284223Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.8284223Z\",\r\n \"contentLength\": \"2424\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:42:43.7384257Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.7384257Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:42:43.7384257Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.8784222Z\",\r\n \"contentLength\": \"410\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:26:51.8375367Z\",\r\n \"lastModified\": \"2015-12-21T19:26:51.8375367Z\",\r\n \"contentLength\": \"2422\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:26:51.7545357Z\",\r\n \"lastModified\": \"2015-12-21T19:26:51.7545357Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:26:51.7545357Z\",\r\n \"lastModified\": \"2015-12-21T19:26:51.8495377Z\",\r\n \"contentLength\": \"410\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -799,19 +750,19 @@ "chunked" ], "request-id": [ - "6fff78ad-90ad-4bbd-9b4d-ea632deb24f6" + "6e698283-d6b6-4714-beed-3e6318eea488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ce64a1cd-b75c-486b-900a-da9a46c9aedd" + "069ac091-561b-436a-aaf9-4b4c81dbede9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -820,53 +771,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskPipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9f7045e2-54d4-4c9d-901e-e86996751cd5" + "0e500dcf-c6ec-4b22-a67d-dfdddcf9b5a7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:49 GMT" + "Mon, 21 Dec 2015 19:26:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"nodeFileByTaskPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe\",\r\n \"eTag\": \"0x8D2EA3101BC39BC\",\r\n \"lastModified\": \"2015-11-11T00:42:41.60711Z\",\r\n \"creationTime\": \"2015-11-11T00:42:41.5890739Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:42:41.60711Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:42:41.60711Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"nodeFileByTaskPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe\",\r\n \"eTag\": \"0x8D30A3CABF156CC\",\r\n \"lastModified\": \"2015-12-21T19:26:48.8407756Z\",\r\n \"creationTime\": \"2015-12-21T19:26:48.7878021Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:26:48.8407756Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:26:48.8407756Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:42:41 GMT" + "Mon, 21 Dec 2015 19:26:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6d0a5b8b-5997-4534-9a9a-c7d56f01d2a5" + "d2ac711c-9f77-47fb-9aa0-c11658ff1237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9f7045e2-54d4-4c9d-901e-e86996751cd5" + "0e500dcf-c6ec-4b22-a67d-dfdddcf9b5a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:54 GMT" ], "ETag": [ - "0x8D2EA3101BC39BC" + "0x8D30A3CABF156CC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -875,26 +826,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskPipe/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d782edcc-3632-407e-86c2-8dc115136a54" + "411046a1-7eac-480b-925e-2ff00ab90c2e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA31031C9648\",\r\n \"creationTime\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"lastModified\": \"2015-11-11T00:42:43.9163464Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:42:43.8914231Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:42:43.7304215Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:42:43.7304215Z\",\r\n \"endTime\": \"2015-11-11T00:42:43.8914231Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskPipe/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3CAC45CC2E\",\r\n \"creationTime\": \"2015-12-21T19:26:49.394283Z\",\r\n \"lastModified\": \"2015-12-21T19:26:49.394283Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:26:51.8685379Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:26:51.7265359Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:26:51.7265359Z\",\r\n \"endTime\": \"2015-12-21T19:26:51.8685379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -903,19 +854,19 @@ "chunked" ], "request-id": [ - "9f4dd127-b5c6-4f21-8b1d-8d9a6d9ddfdd" + "0d97dfa5-5963-46f2-b8eb-eab1182e2b11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d782edcc-3632-407e-86c2-8dc115136a54" + "411046a1-7eac-480b-925e-2ff00ab90c2e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -924,22 +875,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskPipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskPipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "668e2ffc-bff7-46b0-8129-5611af231cc3" + "d5723ad5-934e-4f2f-9399-62b58f4d85ce" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:42:50 GMT" + "Mon, 21 Dec 2015 19:26:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -949,19 +900,19 @@ "chunked" ], "request-id": [ - "2ef1ae9d-3491-403a-9d1c-fbefb21297e0" + "76eb00ee-e832-4b68-93b6-954b8a8b1fcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "668e2ffc-bff7-46b0-8129-5611af231cc3" + "d5723ad5-934e-4f2f-9399-62b58f4d85ce" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:42:52 GMT" + "Mon, 21 Dec 2015 19:26:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeByFilter.json index e1d54be4f616..8ef0d19db81e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14890" ], "x-ms-request-id": [ - "0b8fc4cb-dc85-4587-ba5a-c429ecb321f4" + "1238c171-9fd7-452b-ab1b-f6386c111f83" ], "x-ms-correlation-request-id": [ - "0b8fc4cb-dc85-4587-ba5a-c429ecb321f4" + "1238c171-9fd7-452b-ab1b-f6386c111f83" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004404Z:0b8fc4cb-dc85-4587-ba5a-c429ecb321f4" + "CENTRALUS:20151221T191821Z:1238c171-9fd7-452b-ab1b-f6386c111f83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:03 GMT" + "Mon, 21 Dec 2015 19:18:21 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14889" ], "x-ms-request-id": [ - "5301b30f-f4f9-4f1d-bf7e-73f06c888e8c" + "00f0438f-9e6a-4454-ad6a-89435818d158" ], "x-ms-correlation-request-id": [ - "5301b30f-f4f9-4f1d-bf7e-73f06c888e8c" + "00f0438f-9e6a-4454-ad6a-89435818d158" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004408Z:5301b30f-f4f9-4f1d-bf7e-73f06c888e8c" + "CENTRALUS:20151221T191825Z:00f0438f-9e6a-4454-ad6a-89435818d158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:08 GMT" + "Mon, 21 Dec 2015 19:18:25 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:44:05 GMT" + "Mon, 21 Dec 2015 19:18:21 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "44e8892a-8b14-45c9-bd0f-9b502de220db" + "363d03a1-dd23-48ce-9040-4ab30ff6552a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14981" ], "x-ms-request-id": [ - "0a8fb506-76a5-4ee1-9135-d276eaa70082" + "87fbc899-be75-42c2-a0f2-fb984cb712f9" ], "x-ms-correlation-request-id": [ - "0a8fb506-76a5-4ee1-9135-d276eaa70082" + "87fbc899-be75-42c2-a0f2-fb984cb712f9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004405Z:0a8fb506-76a5-4ee1-9135-d276eaa70082" + "CENTRALUS:20151221T191822Z:87fbc899-be75-42c2-a0f2-fb984cb712f9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:05 GMT" + "Mon, 21 Dec 2015 19:18:22 GMT" ], "ETag": [ - "0x8D2EA3133EA6976" + "0x8D30A3B7D8E3FBD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:44:09 GMT" + "Mon, 21 Dec 2015 19:18:24 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0de2460f-e1e2-4055-b0fc-46e2c4982e6d" + "b76a313f-a67e-41ea-8c3b-cabe9de22d92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14980" ], "x-ms-request-id": [ - "a91b1b34-af9a-462e-a1ec-e84399b3698d" + "6c585666-bcd9-4b5e-ad6d-3ae7e2a23f92" ], "x-ms-correlation-request-id": [ - "a91b1b34-af9a-462e-a1ec-e84399b3698d" + "6c585666-bcd9-4b5e-ad6d-3ae7e2a23f92" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004409Z:a91b1b34-af9a-462e-a1ec-e84399b3698d" + "CENTRALUS:20151221T191825Z:6c585666-bcd9-4b5e-ad6d-3ae7e2a23f92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:08 GMT" + "Mon, 21 Dec 2015 19:18:25 GMT" ], "ETag": [ - "0x8D2EA313608B2E2" + "0x8D30A3B7F80CABF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "4d6f0ae2-8005-4438-930e-20bc4f7d5c11" + "fbbfce67-37a6-43d9-9bb4-61874895bd57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-request-id": [ - "5a743083-bb3c-412b-9807-c0c561283cdb" + "2da83208-a053-4834-9ac4-dbb37c8ff2ec" ], "x-ms-correlation-request-id": [ - "5a743083-bb3c-412b-9807-c0c561283cdb" + "2da83208-a053-4834-9ac4-dbb37c8ff2ec" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004405Z:5a743083-bb3c-412b-9807-c0c561283cdb" + "CENTRALUS:20151221T191822Z:2da83208-a053-4834-9ac4-dbb37c8ff2ec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:05 GMT" + "Mon, 21 Dec 2015 19:18:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "bfe3f2d3-be8e-4408-aee2-6674af0fd484" + "d1e9d717-9554-4e6a-95f7-6e80b862454f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-request-id": [ - "c0c8cd0a-bb82-4fc4-8977-1e02b3e1e6f2" + "b02b38a3-8b43-4423-a77e-68bc236ea8c5" ], "x-ms-correlation-request-id": [ - "c0c8cd0a-bb82-4fc4-8977-1e02b3e1e6f2" + "b02b38a3-8b43-4423-a77e-68bc236ea8c5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004409Z:c0c8cd0a-bb82-4fc4-8977-1e02b3e1e6f2" + "CENTRALUS:20151221T191826Z:b02b38a3-8b43-4423-a77e-68bc236ea8c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:44:09 GMT" + "Mon, 21 Dec 2015 19:18:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "59039fea-0780-47a9-8bad-0baf41338831" + "e6c2c75e-ba15-46b6-b8f4-7f5ed7b8d7b9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:05 GMT" + "Mon, 21 Dec 2015 19:18:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 13,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 1,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "dc3cf4bb-ce40-40ca-9b5f-bab6d0271a84" + "da1c9a1d-e0c1-4e4b-9dd4-de9348d1ef06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "59039fea-0780-47a9-8bad-0baf41338831" + "e6c2c75e-ba15-46b6-b8f4-7f5ed7b8d7b9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:05 GMT" + "Mon, 21 Dec 2015 19:18:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?$filter=startswith(name%2C's')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3cyUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?$filter=startswith(name%2C's')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3MlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "89bfb660-240a-474b-bc64-a6c2dafdf0eb" + "8331dc15-c0ba-4ca8-9e49-082ee71718e7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:08 GMT" + "Mon, 21 Dec 2015 19:18:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "77187924-d965-44e6-bb18-5dcfeaa95ffb" + "7fca978d-03aa-4ac6-8e77-2027f5d583df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "89bfb660-240a-474b-bc64-a6c2dafdf0eb" + "8331dc15-c0ba-4ca8-9e49-082ee71718e7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:10 GMT" + "Mon, 21 Dec 2015 19:18:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?$filter=startswith(name%2C's')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3cyUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?$filter=startswith(name%2C's')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3MlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4b2759ea-c660-463c-b2f6-b14ce04e6f90" + "9bc2c0b7-bb73-48f1-a061-47e9ffc4dab9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:09 GMT" + "Mon, 21 Dec 2015 19:18:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "31e194df-2dda-45dc-abcb-bdf3ff1c19cc" + "05a951de-d008-4978-9129-3ad30bec0909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4b2759ea-c660-463c-b2f6-b14ce04e6f90" + "9bc2c0b7-bb73-48f1-a061-47e9ffc4dab9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:10 GMT" + "Mon, 21 Dec 2015 19:18:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,26 +484,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6bc0e298-b745-44df-891e-04959cd2cc75" + "80b29998-588d-41d2-be5a-6caf140fa37c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:44:09 GMT" + "Mon, 21 Dec 2015 19:18:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 1,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "24b31a43-d831-47cb-9c5e-ad05e94323cf" + "dd1781ec-40e9-4a4a-ad4b-3a4545d8bf67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6bc0e298-b745-44df-891e-04959cd2cc75" + "80b29998-588d-41d2-be5a-6caf140fa37c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:44:10 GMT" + "Mon, 21 Dec 2015 19:18:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeRecursive.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeRecursive.json index 7b3939f0b295..b6f914013bb8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeRecursive.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeRecursive.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "55236e12-3fc9-4f90-a98e-29140f1f7e8f" + "26bc3e7d-0ac2-4996-a620-b4bde4504a70" ], "x-ms-correlation-request-id": [ - "55236e12-3fc9-4f90-a98e-29140f1f7e8f" + "26bc3e7d-0ac2-4996-a620-b4bde4504a70" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T030809Z:55236e12-3fc9-4f90-a98e-29140f1f7e8f" + "CENTRALUS:20151221T192608Z:26bc3e7d-0ac2-4996-a620-b4bde4504a70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 03:08:08 GMT" + "Mon, 21 Dec 2015 19:26:08 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "28b4efb0-5ca3-46c5-94d1-c07f893ed338" + "7250579c-a8c6-4bd9-be45-42ae6519c4d8" ], "x-ms-correlation-request-id": [ - "28b4efb0-5ca3-46c5-94d1-c07f893ed338" + "7250579c-a8c6-4bd9-be45-42ae6519c4d8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T030814Z:28b4efb0-5ca3-46c5-94d1-c07f893ed338" + "CENTRALUS:20151221T192612Z:7250579c-a8c6-4bd9-be45-42ae6519c4d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 03:08:14 GMT" + "Mon, 21 Dec 2015 19:26:12 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 03:08:11 GMT" + "Mon, 21 Dec 2015 19:26:08 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "dc12dac3-71aa-44fb-b121-c60dc380af0f" + "a9503aa4-42dc-4d8e-bd1c-2771cebfcec1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14981" ], "x-ms-request-id": [ - "0aec289f-bc62-4de8-9745-cd7670c1dde8" + "71cf2075-cfca-454c-b783-a7adbdd9b659" ], "x-ms-correlation-request-id": [ - "0aec289f-bc62-4de8-9745-cd7670c1dde8" + "71cf2075-cfca-454c-b783-a7adbdd9b659" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T030810Z:0aec289f-bc62-4de8-9745-cd7670c1dde8" + "CENTRALUS:20151221T192609Z:71cf2075-cfca-454c-b783-a7adbdd9b659" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 03:08:09 GMT" + "Mon, 21 Dec 2015 19:26:08 GMT" ], "ETag": [ - "0x8D2EA4554E14B6A" + "0x8D30A3C93AEE06A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 03:08:15 GMT" + "Mon, 21 Dec 2015 19:26:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0dd4b17b-bc0f-469e-b4b5-31558314d40c" + "412aaf02-fea4-49a9-8e0f-726b22e0b02f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-request-id": [ - "ccbdeca1-98d7-43c6-9914-74d36ad68a89" + "47784bc8-2df0-4f1b-9cd1-4b20381fd880" ], "x-ms-correlation-request-id": [ - "ccbdeca1-98d7-43c6-9914-74d36ad68a89" + "47784bc8-2df0-4f1b-9cd1-4b20381fd880" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T030814Z:ccbdeca1-98d7-43c6-9914-74d36ad68a89" + "CENTRALUS:20151221T192612Z:47784bc8-2df0-4f1b-9cd1-4b20381fd880" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 03:08:14 GMT" + "Mon, 21 Dec 2015 19:26:11 GMT" ], "ETag": [ - "0x8D2EA45574D2818" + "0x8D30A3C958FF7A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "dcb7967a-faa3-4c51-a683-2a1b11b703b9" + "0be37834-dab6-4fe1-b46e-ceebac131b6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-request-id": [ - "38139b8c-a684-443e-a598-9754299e1b74" + "8a2c419c-a76b-4b0a-9f27-96992ff8c083" ], "x-ms-correlation-request-id": [ - "38139b8c-a684-443e-a598-9754299e1b74" + "8a2c419c-a76b-4b0a-9f27-96992ff8c083" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T030810Z:38139b8c-a684-443e-a598-9754299e1b74" + "CENTRALUS:20151221T192609Z:8a2c419c-a76b-4b0a-9f27-96992ff8c083" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 03:08:09 GMT" + "Mon, 21 Dec 2015 19:26:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "963d9f9b-4056-42bd-b6f4-9e034a673077" + "7dacc154-f24c-4609-8498-218065d718ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-request-id": [ - "0dec13ac-8094-4d50-b6f5-cbb445a2afeb" + "fbc2e4cb-a952-4336-bec7-ed95952e2759" ], "x-ms-correlation-request-id": [ - "0dec13ac-8094-4d50-b6f5-cbb445a2afeb" + "fbc2e4cb-a952-4336-bec7-ed95952e2759" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T030814Z:0dec13ac-8094-4d50-b6f5-cbb445a2afeb" + "CENTRALUS:20151221T192612Z:fbc2e4cb-a952-4336-bec7-ed95952e2759" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 03:08:14 GMT" + "Mon, 21 Dec 2015 19:26:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "11c6a053-2c92-4f37-bb78-9b72769b4946" + "f3de32bc-6061-4947-b9fc-b4a83dcafd86" ], "ocp-date": [ - "Wed, 11 Nov 2015 03:08:10 GMT" + "Mon, 21 Dec 2015 19:26:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-11T02:42:34.5943134Z\",\r\n \"lastBootTime\": \"2015-11-11T02:42:34.4623255Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-11T02:42:34.6393096Z\",\r\n \"endTime\": \"2015-11-11T02:42:35.9556823Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 17,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 7,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "407e082f-f2bb-4908-a3c9-629cb5db93eb" + "ce4fa1de-ae7e-4caf-af03-779f6d347cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "11c6a053-2c92-4f37-bb78-9b72769b4946" + "f3de32bc-6061-4947-b9fc-b4a83dcafd86" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 03:08:12 GMT" + "Mon, 21 Dec 2015 19:26:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?$filter=startswith(name%2C'startup')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3c3RhcnR1cCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?$filter=startswith(name%2C'startup')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3N0YXJ0dXAlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4f26182f-4e65-429f-8e67-df25e9b6898b" + "19b661bf-bc07-4251-9181-09df7aaf8e14" ], "ocp-date": [ - "Wed, 11 Nov 2015 03:08:14 GMT" + "Mon, 21 Dec 2015 19:26:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "0a486539-5004-450e-a150-bd43b26da833" + "b139c16b-abce-4744-806b-8ab7fc72a05e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4f26182f-4e65-429f-8e67-df25e9b6898b" + "19b661bf-bc07-4251-9181-09df7aaf8e14" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 03:08:16 GMT" + "Mon, 21 Dec 2015 19:26:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?$filter=startswith(name%2C'startup')&recursive=true&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3c3RhcnR1cCUyNyUyOSZyZWN1cnNpdmU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?$filter=startswith(name%2C'startup')&recursive=true&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/JGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyN3N0YXJ0dXAlMjclMjkmcmVjdXJzaXZlPXRydWUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d26ee70d-bf69-460b-81fc-dd91ad51e233" + "83ae0186-f4f6-491e-9a73-614a55627bd1" ], "ocp-date": [ - "Wed, 11 Nov 2015 03:08:15 GMT" + "Mon, 21 Dec 2015 19:26:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\\\\ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\\\\ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T02:42:35.8882298Z\",\r\n \"lastModified\": \"2015-11-11T02:42:35.8882298Z\",\r\n \"contentLength\": \"2123\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\\\\stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T02:42:35.7322298Z\",\r\n \"lastModified\": \"2015-11-11T02:42:35.7322298Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\\\\stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T02:42:35.7322298Z\",\r\n \"lastModified\": \"2015-11-11T02:42:35.9312286Z\",\r\n \"contentLength\": \"7\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\\\\wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\\\\ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\\\\ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T18:25:31.8076238Z\",\r\n \"lastModified\": \"2015-12-21T18:25:31.8076238Z\",\r\n \"contentLength\": \"2125\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\\\\stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T18:25:31.5616219Z\",\r\n \"lastModified\": \"2015-12-21T18:25:31.5616219Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\\\\stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T18:25:31.5616219Z\",\r\n \"lastModified\": \"2015-12-21T18:25:31.820624Z\",\r\n \"contentLength\": \"7\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\\\\wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "242a90e3-0f6c-4c6d-bb37-adac6c65882e" + "0bdc3545-e893-4ff7-bffc-1607ad990d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d26ee70d-bf69-460b-81fc-dd91ad51e233" + "83ae0186-f4f6-491e-9a73-614a55627bd1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 03:08:16 GMT" + "Mon, 21 Dec 2015 19:26:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeWithMaxCount.json index be1c9dbdde08..41074e30dc14 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByComputeNodeWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14887" ], "x-ms-request-id": [ - "c8b6b8fb-824a-4295-9b86-3aa439181834" + "d60b6862-8bee-411a-b6f3-fc0e522e19ad" ], "x-ms-correlation-request-id": [ - "c8b6b8fb-824a-4295-9b86-3aa439181834" + "d60b6862-8bee-411a-b6f3-fc0e522e19ad" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003710Z:c8b6b8fb-824a-4295-9b86-3aa439181834" + "CENTRALUS:20151221T191900Z:d60b6862-8bee-411a-b6f3-fc0e522e19ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:09 GMT" + "Mon, 21 Dec 2015 19:19:00 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14886" ], "x-ms-request-id": [ - "39e1fbdb-b591-4b11-9aba-e45628a86fb6" + "2c26e649-f7f0-4cdd-bdd9-eb7170bfae04" ], "x-ms-correlation-request-id": [ - "39e1fbdb-b591-4b11-9aba-e45628a86fb6" + "2c26e649-f7f0-4cdd-bdd9-eb7170bfae04" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003715Z:39e1fbdb-b591-4b11-9aba-e45628a86fb6" + "CENTRALUS:20151221T191904Z:2c26e649-f7f0-4cdd-bdd9-eb7170bfae04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:14 GMT" + "Mon, 21 Dec 2015 19:19:03 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:37:12 GMT" + "Mon, 21 Dec 2015 19:19:00 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "405a36b1-d0e5-4c06-b171-52ea70673122" + "07acf3ee-caca-462b-85d0-aafaed9d039e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14979" ], "x-ms-request-id": [ - "4ff67f67-6591-4d53-87a2-c512716f6f1d" + "dac8e0ca-211f-4768-9b63-e992b680d9cd" ], "x-ms-correlation-request-id": [ - "4ff67f67-6591-4d53-87a2-c512716f6f1d" + "dac8e0ca-211f-4768-9b63-e992b680d9cd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003711Z:4ff67f67-6591-4d53-87a2-c512716f6f1d" + "CENTRALUS:20151221T191901Z:dac8e0ca-211f-4768-9b63-e992b680d9cd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:11 GMT" + "Mon, 21 Dec 2015 19:19:01 GMT" ], "ETag": [ - "0x8D2EA303D5F2FEC" + "0x8D30A3B94BFFE8A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:37:15 GMT" + "Mon, 21 Dec 2015 19:19:03 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8e9dc2ae-576a-4997-9b83-8e06dbac1e76" + "72b30d48-bd61-45a7-9fcb-e641619501ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14978" ], "x-ms-request-id": [ - "5a29a7a7-4153-48a9-9f48-9b1bc5c67140" + "2d9d66cc-225a-445d-b780-179a704c059d" ], "x-ms-correlation-request-id": [ - "5a29a7a7-4153-48a9-9f48-9b1bc5c67140" + "2d9d66cc-225a-445d-b780-179a704c059d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003715Z:5a29a7a7-4153-48a9-9f48-9b1bc5c67140" + "CENTRALUS:20151221T191904Z:2d9d66cc-225a-445d-b780-179a704c059d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:15 GMT" + "Mon, 21 Dec 2015 19:19:04 GMT" ], "ETag": [ - "0x8D2EA303F861543" + "0x8D30A3B9693DF5B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "180e3910-bd69-46d0-8590-c0bc2aa6c57e" + "9bd5e5ca-b03e-469a-9108-223f6b991077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-request-id": [ - "50e1bdc0-eeb7-4e45-b364-6f8d14ca5301" + "fe61e1c2-f41f-4fcb-9234-c97b94846b64" ], "x-ms-correlation-request-id": [ - "50e1bdc0-eeb7-4e45-b364-6f8d14ca5301" + "fe61e1c2-f41f-4fcb-9234-c97b94846b64" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003711Z:50e1bdc0-eeb7-4e45-b364-6f8d14ca5301" + "CENTRALUS:20151221T191901Z:fe61e1c2-f41f-4fcb-9234-c97b94846b64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:11 GMT" + "Mon, 21 Dec 2015 19:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "998b185d-c917-407e-b312-bb4eea0ec28c" + "590fe683-257c-4e92-8609-f7baeaff0198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-request-id": [ - "52b4d789-ed99-469f-a612-565b089325ca" + "6f037d43-9490-46f8-bd6e-d7b23b1836d9" ], "x-ms-correlation-request-id": [ - "52b4d789-ed99-469f-a612-565b089325ca" + "6f037d43-9490-46f8-bd6e-d7b23b1836d9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003715Z:52b4d789-ed99-469f-a612-565b089325ca" + "CENTRALUS:20151221T191904Z:6f037d43-9490-46f8-bd6e-d7b23b1836d9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:37:15 GMT" + "Mon, 21 Dec 2015 19:19:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool/nodes?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9cb06006-bc39-484b-b1d4-48777c4c614a" + "7cfb5068-b1f9-4758-b52d-99c1b9e3167d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:11 GMT" + "Mon, 21 Dec 2015 19:19:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"tvm-1783593343_3-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:47.9154898Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:47.7952355Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.200.100\",\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 9,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:47.9861789Z\",\r\n \"endTime\": \"2015-11-10T23:39:49.5535007Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 1,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "e2ccfbae-76c9-46eb-a551-1691dcf89837" + "23b15682-7d8e-4459-8977-9b8af2be5393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9cb06006-bc39-484b-b1d4-48777c4c614a" + "7cfb5068-b1f9-4758-b52d-99c1b9e3167d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:37:12 GMT" + "Mon, 21 Dec 2015 19:19:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01dd8c17-4cc7-4ff1-bd12-e49d0a2e593a" + "5df4f8cb-d935-4f97-a9c8-1c79ddb94b50" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:15 GMT" + "Mon, 21 Dec 2015 19:19:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "98c29e2f-7a2f-4e38-9a2d-f17d254450a6" + "6da708f1-4aaf-4563-b233-c2023a95d079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "01dd8c17-4cc7-4ff1-bd12-e49d0a2e593a" + "5df4f8cb-d935-4f97-a9c8-1c79ddb94b50" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:37:16 GMT" + "Mon, 21 Dec 2015 19:19:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,26 +435,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwei9maWxlcz9yZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHovZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "249822d6-ec96-4a0c-9fc2-291693806ead" + "fb47ef33-7955-4c11-a0b0-5061745faba3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:16 GMT" + "Mon, 21 Dec 2015 19:19:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -463,19 +463,19 @@ "chunked" ], "request-id": [ - "67caa509-22b2-490c-8c31-11112ca2574a" + "9b303c8d-c151-49c2-b6ef-018a8559221a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "249822d6-ec96-4a0c-9fc2-291693806ead" + "fb47ef33-7955-4c11-a0b0-5061745faba3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:37:17 GMT" + "Mon, 21 Dec 2015 19:19:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -484,26 +484,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzItMjAxNTExMTB0MjMzNjAwej9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0xNzgzNTkzMzQzXzM0LTIwMTUxMTE3dDIyMjUxNHo/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1ad1057e-2512-4a38-8fed-9fd962912367" + "f48d5bc1-b494-4231-b74e-08d696099065" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:37:16 GMT" + "Mon, 21 Dec 2015 19:19:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_2-20151110t233600z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-11-10T23:39:53.9064535Z\",\r\n \"lastBootTime\": \"2015-11-10T23:39:53.810453Z\",\r\n \"allocationTime\": \"2015-11-10T23:36:00.1112594Z\",\r\n \"ipAddress\": \"100.116.176.64\",\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 8,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-11-10T23:39:53.990453Z\",\r\n \"endTime\": \"2015-11-10T23:39:55.4308227Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-1783593343_34-20151117t222514z\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2015-12-21T18:25:29.6047946Z\",\r\n \"lastBootTime\": \"2015-12-21T18:25:29.4595426Z\",\r\n \"allocationTime\": \"2015-11-17T22:25:14.0494621Z\",\r\n \"ipAddress\": \"100.116.144.189\",\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 1,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-12-21T18:25:29.6337939Z\",\r\n \"endTime\": \"2015-12-21T18:25:31.8396235Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -512,19 +512,19 @@ "chunked" ], "request-id": [ - "aaf3e067-2b14-4dc8-9cc3-a0209a18b571" + "288ff3e0-c111-43c8-b83b-e3d0abcee5dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1ad1057e-2512-4a38-8fed-9fd962912367" + "f48d5bc1-b494-4231-b74e-08d696099065" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:37:16 GMT" + "Mon, 21 Dec 2015 19:19:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskByFilter.json index 3215ae49b11d..2206047a49f6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14990" ], "x-ms-request-id": [ - "5236f3a8-093e-4a13-8d25-2cc8cfd4c69e" + "5a269c1b-3675-48ae-b92f-081888af4412" ], "x-ms-correlation-request-id": [ - "5236f3a8-093e-4a13-8d25-2cc8cfd4c69e" + "5a269c1b-3675-48ae-b92f-081888af4412" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003828Z:5236f3a8-093e-4a13-8d25-2cc8cfd4c69e" + "WESTUS:20151221T192814Z:5a269c1b-3675-48ae-b92f-081888af4412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:38:28 GMT" + "Mon, 21 Dec 2015 19:28:14 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14989" ], "x-ms-request-id": [ - "77809109-fa00-4ae2-a81f-2a2eddbd94e1" + "abb5d939-d70a-49b1-bb78-eec06e94c699" ], "x-ms-correlation-request-id": [ - "77809109-fa00-4ae2-a81f-2a2eddbd94e1" + "abb5d939-d70a-49b1-bb78-eec06e94c699" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003835Z:77809109-fa00-4ae2-a81f-2a2eddbd94e1" + "WESTUS:20151221T192823Z:abb5d939-d70a-49b1-bb78-eec06e94c699" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:38:35 GMT" + "Mon, 21 Dec 2015 19:28:23 GMT" ] }, "StatusCode": 200 @@ -121,13 +121,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:38:29 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "05496ab7-e87e-429b-a601-652dcfeacff0" + "6bd20eab-15b8-45e1-a5ed-5aabd37436b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,22 +136,22 @@ "14986" ], "x-ms-request-id": [ - "1b71132f-0083-4521-96cc-a1fcabbbacb3" + "72567e87-9330-457a-a430-7fdd3531f2d6" ], "x-ms-correlation-request-id": [ - "1b71132f-0083-4521-96cc-a1fcabbbacb3" + "72567e87-9330-457a-a430-7fdd3531f2d6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003830Z:1b71132f-0083-4521-96cc-a1fcabbbacb3" + "WESTUS:20151221T192815Z:72567e87-9330-457a-a430-7fdd3531f2d6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:38:29 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "ETag": [ - "0x8D2EA306BBCF4C4" + "0x8D30A3CDF8D2A48" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:38:35 GMT" + "Mon, 21 Dec 2015 19:28:23 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "35bc8d11-b827-4a39-b98a-5a6ea121b74c" + "cf302c10-b98e-4824-85fd-bb93986df58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14985" ], "x-ms-request-id": [ - "41054069-176f-4732-8075-22fd1ec48ea5" + "8b444e19-565e-41f3-90d5-bd306900720e" ], "x-ms-correlation-request-id": [ - "41054069-176f-4732-8075-22fd1ec48ea5" + "8b444e19-565e-41f3-90d5-bd306900720e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003836Z:41054069-176f-4732-8075-22fd1ec48ea5" + "WESTUS:20151221T192823Z:8b444e19-565e-41f3-90d5-bd306900720e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:38:35 GMT" + "Mon, 21 Dec 2015 19:28:23 GMT" ], "ETag": [ - "0x8D2EA306F4DA0B1" + "0x8D30A3CE45AD9FA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "aca33018-1af1-4858-a22b-08a9affab15f" + "e2f7ee21-a64c-42f1-8163-58df1499601f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "1c345810-db7c-4642-b127-ed5e226df1c6" + "b285b7c4-9641-47c9-a6b7-0f06336906c7" ], "x-ms-correlation-request-id": [ - "1c345810-db7c-4642-b127-ed5e226df1c6" + "b285b7c4-9641-47c9-a6b7-0f06336906c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003830Z:1c345810-db7c-4642-b127-ed5e226df1c6" + "WESTUS:20151221T192815Z:b285b7c4-9641-47c9-a6b7-0f06336906c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:38:29 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "07d1e2a5-2210-4586-9eb9-4ef4c4e7f358" + "dfaf1cda-b283-4d1b-a7e8-8228261ee69a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "b90bbc9b-29a8-4a1e-9fa5-b304c94e8165" + "e17e296f-60a7-4864-a9c1-36b45e7f971b" ], "x-ms-correlation-request-id": [ - "b90bbc9b-29a8-4a1e-9fa5-b304c94e8165" + "e17e296f-60a7-4864-a9c1-36b45e7f971b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003836Z:b90bbc9b-29a8-4a1e-9fa5-b304c94e8165" + "WESTUS:20151221T192823Z:e17e296f-60a7-4864-a9c1-36b45e7f971b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:38:35 GMT" + "Mon, 21 Dec 2015 19:28:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listNodeFileByTaskFilterJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "110" ], "client-request-id": [ - "bd499afa-9038-41d2-9e58-c0f720e4d7a5" + "ffe7e8a3-3909-47cf-a7c1-220e9d2fd7b5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:30 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:38:30 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b99a69c3-ed39-49dc-878c-4e826fc400c5" + "c173a11b-7d7a-4e08-86ea-992e9fee0a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bd499afa-9038-41d2-9e58-c0f720e4d7a5" + "ffe7e8a3-3909-47cf-a7c1-220e9d2fd7b5" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:38:31 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "ETag": [ - "0x8D2EA306C1B3635" + "0x8D30A3CDF6ACFF5" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "3d9dfee6-65f2-4af8-b068-d8512b2e2c4b" + "c22e6885-44d1-4bfa-ad86-599bf4f4abe7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:30 GMT" + "Mon, 21 Dec 2015 19:28:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:38:32 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "833b1c4e-c639-4629-a65e-b24713988f6b" + "a9d64242-74b7-4984-9ab4-394450455378" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3d9dfee6-65f2-4af8-b068-d8512b2e2c4b" + "c22e6885-44d1-4bfa-ad86-599bf4f4abe7" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:38:31 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "ETag": [ - "0x8D2EA306CFD9B0E" + "0x8D30A3CDFDE6A0B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "845d2318-9517-43ef-9f9d-42ab267fc871" + "96d4aed2-2a49-47d7-bf14-caaa0a6465e2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:30 GMT" + "Mon, 21 Dec 2015 19:28:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA306CFD9B0E\",\r\n \"creationTime\": \"2015-11-11T00:38:32.055067Z\",\r\n \"lastModified\": \"2015-11-11T00:38:32.055067Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:38:32.055067Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3CDFDE6A0B\",\r\n \"creationTime\": \"2015-12-21T19:28:15.9582731Z\",\r\n \"lastModified\": \"2015-12-21T19:28:15.9582731Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:28:15.9582731Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:38:32 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "db6db054-e92b-4b63-88db-27e3b5d3cdff" + "7ef48c33-209a-4edc-94d3-ba50fb20fb50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "845d2318-9517-43ef-9f9d-42ab267fc871" + "96d4aed2-2a49-47d7-bf14-caaa0a6465e2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:31 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "ETag": [ - "0x8D2EA306CFD9B0E" + "0x8D30A3CDFDE6A0B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dd27014b-0c0c-494a-9c15-7828d52ca526" + "ba69ab08-dd83-4de4-aa83-4c42782b48d6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA306CFD9B0E\",\r\n \"creationTime\": \"2015-11-11T00:38:32.055067Z\",\r\n \"lastModified\": \"2015-11-11T00:38:32.055067Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:38:31.8182427Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:38:31.6942403Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:38:31.6942403Z\",\r\n \"endTime\": \"2015-11-11T00:38:31.8182427Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3CDFDE6A0B\",\r\n \"creationTime\": \"2015-12-21T19:28:15.9582731Z\",\r\n \"lastModified\": \"2015-12-21T19:28:15.9582731Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:28:19.3160808Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:28:19.1870778Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:28:19.1870778Z\",\r\n \"endTime\": \"2015-12-21T19:28:19.3160808Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:38:32 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "19e106b2-80e7-4f80-b60f-39f5e705d772" + "a8a70d8d-02c5-4ad8-ad80-388242be01d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dd27014b-0c0c-494a-9c15-7828d52ca526" + "ba69ab08-dd83-4de4-aa83-4c42782b48d6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:22 GMT" ], "ETag": [ - "0x8D2EA306CFD9B0E" + "0x8D30A3CDFDE6A0B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c1d77346-4bed-40ee-9ba0-a7616177ec13" + "766eadac-b7b0-4adb-bd2e-14b05ada02af" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:30 GMT" + "Mon, 21 Dec 2015 19:28:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "4e84830d-8de4-4fe5-ba67-ed78641bb35b" + "226803c4-2cdc-494f-a189-218af5fadf93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c1d77346-4bed-40ee-9ba0-a7616177ec13" + "766eadac-b7b0-4adb-bd2e-14b05ada02af" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:31 GMT" + "Mon, 21 Dec 2015 19:28:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,71 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d1145af8-caf0-4211-af63-e65c5ccb562a" + "ff37de24-4eb3-49e6-a741-bb8f1873d863" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:32 GMT" + "Mon, 21 Dec 2015 19:28:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0ecc4150-274e-4af4-a10c-4aa7b88c8dfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ff37de24-4eb3-49e6-a741-bb8f1873d863" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 19:28:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a1818904-1a0c-4585-bb60-4aeb81772c24" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 19:28:21 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -652,19 +701,19 @@ "chunked" ], "request-id": [ - "d12bfa57-a25e-468b-9d3c-b24df6cbe60e" + "e646c0e6-0476-457f-bc87-f3a2dc0999d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d1145af8-caf0-4211-af63-e65c5ccb562a" + "a1818904-1a0c-4585-bb60-4aeb81772c24" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:34 GMT" + "Mon, 21 Dec 2015 19:28:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,26 +722,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files?$filter=startswith(name%2C'std')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjdzdGQlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files?$filter=startswith(name%2C'std')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjdzdGQlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b74ae7b1-9b62-4a03-b663-be747aa4b74c" + "00e2588e-8cb5-4a95-aef1-68fa1ea725b2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:38:31.7032402Z\",\r\n \"lastModified\": \"2015-11-11T00:38:31.7032402Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:38:31.7032402Z\",\r\n \"lastModified\": \"2015-11-11T00:38:31.8102418Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:28:19.1950783Z\",\r\n \"lastModified\": \"2015-12-21T19:28:19.1950783Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:28:19.1950783Z\",\r\n \"lastModified\": \"2015-12-21T19:28:19.2980809Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -701,19 +750,19 @@ "chunked" ], "request-id": [ - "44c2e214-f500-4a9c-bf01-6dd0ee6f59dd" + "df421ac6-be55-490b-943c-72d5ed4b9ea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b74ae7b1-9b62-4a03-b663-be747aa4b74c" + "00e2588e-8cb5-4a95-aef1-68fa1ea725b2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,26 +771,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files?$filter=startswith(name%2C'std')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjdzdGQlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files?$filter=startswith(name%2C'std')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjdzdGQlMjclMjkmcmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6b2e9b03-0a21-43e3-9f7a-3e62aaf1a8fd" + "b7069399-f930-421b-a118-48571a0630a9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:38:31.7032402Z\",\r\n \"lastModified\": \"2015-11-11T00:38:31.7032402Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:38:31.7032402Z\",\r\n \"lastModified\": \"2015-11-11T00:38:31.8102418Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:28:19.1950783Z\",\r\n \"lastModified\": \"2015-12-21T19:28:19.1950783Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskFilterJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:28:19.1950783Z\",\r\n \"lastModified\": \"2015-12-21T19:28:19.2980809Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -750,19 +799,19 @@ "chunked" ], "request-id": [ - "75406268-21b9-4f5c-8a13-f069284b20d1" + "9fa974f4-6d3f-4cdf-972e-d8102861fe00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6b2e9b03-0a21-43e3-9f7a-3e62aaf1a8fd" + "b7069399-f930-421b-a118-48571a0630a9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -771,22 +820,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskFilterJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskFilterJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrRmlsdGVySm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "270331d6-17d4-47c8-b455-3852d6481bd4" + "44d0d76d-7fb1-4aee-9cc8-8d1d74f70876" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:38:36 GMT" + "Mon, 21 Dec 2015 19:28:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -796,19 +845,19 @@ "chunked" ], "request-id": [ - "e271350c-899f-4701-934b-425e1b827f64" + "dc7c83a1-bc53-45b9-9f79-e9990b0247c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "270331d6-17d4-47c8-b455-3852d6481bd4" + "44d0d76d-7fb1-4aee-9cc8-8d1d74f70876" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:38:38 GMT" + "Mon, 21 Dec 2015 19:28:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskRecursive.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskRecursive.json index 22fdc17fa49e..f1a371e76d41 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskRecursive.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskRecursive.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14982" ], "x-ms-request-id": [ - "999b99a8-5ca6-48ee-9f1e-65c7c8bb6d83" + "ce48c667-6903-4ad9-af28-1ee039228c37" ], "x-ms-correlation-request-id": [ - "999b99a8-5ca6-48ee-9f1e-65c7c8bb6d83" + "ce48c667-6903-4ad9-af28-1ee039228c37" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003910Z:999b99a8-5ca6-48ee-9f1e-65c7c8bb6d83" + "CENTRALUS:20151221T192024Z:ce48c667-6903-4ad9-af28-1ee039228c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:10 GMT" + "Mon, 21 Dec 2015 19:20:24 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14981" ], "x-ms-request-id": [ - "45c9e44c-324e-4b15-9f2c-199c47be214c" + "cee98f56-5cbb-4774-8ebf-68c402bf53d7" ], "x-ms-correlation-request-id": [ - "45c9e44c-324e-4b15-9f2c-199c47be214c" + "cee98f56-5cbb-4774-8ebf-68c402bf53d7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003917Z:45c9e44c-324e-4b15-9f2c-199c47be214c" + "CENTRALUS:20151221T192031Z:cee98f56-5cbb-4774-8ebf-68c402bf53d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:16 GMT" + "Mon, 21 Dec 2015 19:20:30 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:24 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a66806d9-d17c-4fbe-a736-be27619dbf02" + "dd8ab6d4-ae48-4de4-8c6e-d669b08e3597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "0e0dcca2-1b9a-4881-a298-1a1a27c3a598" + "cc8b2416-644a-4ad8-b25d-2cbcc2cdc63a" ], "x-ms-correlation-request-id": [ - "0e0dcca2-1b9a-4881-a298-1a1a27c3a598" + "cc8b2416-644a-4ad8-b25d-2cbcc2cdc63a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003911Z:0e0dcca2-1b9a-4881-a298-1a1a27c3a598" + "CENTRALUS:20151221T192025Z:cc8b2416-644a-4ad8-b25d-2cbcc2cdc63a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:11 GMT" + "Mon, 21 Dec 2015 19:20:24 GMT" ], "ETag": [ - "0x8D2EA3084DF25AC" + "0x8D30A3BC6B38FF0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:39:18 GMT" + "Mon, 21 Dec 2015 19:20:30 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0355f356-0dcd-492e-b1bb-251ab9f95bbc" + "d312594d-aa89-40b9-82a1-d170e0adafc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "19a2e807-e4c7-4d46-beb5-66689cdeb97b" + "1473e2e7-d8d8-45d2-8492-e2495353eb7b" ], "x-ms-correlation-request-id": [ - "19a2e807-e4c7-4d46-beb5-66689cdeb97b" + "1473e2e7-d8d8-45d2-8492-e2495353eb7b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003917Z:19a2e807-e4c7-4d46-beb5-66689cdeb97b" + "CENTRALUS:20151221T192031Z:1473e2e7-d8d8-45d2-8492-e2495353eb7b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:16 GMT" + "Mon, 21 Dec 2015 19:20:30 GMT" ], "ETag": [ - "0x8D2EA30887D7D6A" + "0x8D30A3BCA3C82F6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "c4f959fc-d6ac-408b-9108-db6936ca316f" + "63d3bf27-416a-439f-98e5-90bb0ffb8039" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "5126b8b1-ded9-4c18-b5a6-5d4319382a44" + "9c9ecb31-5a37-48f8-b799-7c2b9eec00c0" ], "x-ms-correlation-request-id": [ - "5126b8b1-ded9-4c18-b5a6-5d4319382a44" + "9c9ecb31-5a37-48f8-b799-7c2b9eec00c0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003911Z:5126b8b1-ded9-4c18-b5a6-5d4319382a44" + "CENTRALUS:20151221T192025Z:9c9ecb31-5a37-48f8-b799-7c2b9eec00c0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:11 GMT" + "Mon, 21 Dec 2015 19:20:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "5096c8d1-f8ec-43df-9ae1-de355b1eec43" + "45bc5b5c-249a-484e-bb5e-1384ddacf0c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-request-id": [ - "3fab769f-d7c7-4aa7-9dee-4266697f3ee2" + "314d4295-694a-47dd-9830-8dfaf2cd6782" ], "x-ms-correlation-request-id": [ - "3fab769f-d7c7-4aa7-9dee-4266697f3ee2" + "314d4295-694a-47dd-9830-8dfaf2cd6782" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003917Z:3fab769f-d7c7-4aa7-9dee-4266697f3ee2" + "CENTRALUS:20151221T192031Z:314d4295-694a-47dd-9830-8dfaf2cd6782" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:39:17 GMT" + "Mon, 21 Dec 2015 19:20:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listNodeFileByTaskRecursiveJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "113" ], "client-request-id": [ - "935dc28d-238c-4dc1-a391-fd02fec7cf74" + "4f05077e-5f9b-4626-ac5c-92188a304372" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:11 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b2a45364-65ec-47a2-b624-83327464636c" + "7c23e954-5be2-4248-bb5a-5e2eda138cdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "935dc28d-238c-4dc1-a391-fd02fec7cf74" + "4f05077e-5f9b-4626-ac5c-92188a304372" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "ETag": [ - "0x8D2EA3084E9E430" + "0x8D30A3BC73242F5" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c echo \\\"test file\\\" > testFile.txt\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "110" ], "client-request-id": [ - "c056b602-f2c7-42aa-93ca-604efe561849" + "d2646119-95e6-4757-861b-3201c6b998a7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:39:13 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a065ac8e-44f4-494f-8741-5709ec452be6" + "7c3f4d56-fff2-43e6-9448-dea6b08813c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c056b602-f2c7-42aa-93ca-604efe561849" + "d2646119-95e6-4757-861b-3201c6b998a7" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "ETag": [ - "0x8D2EA30857CD4BA" + "0x8D30A3BC7661546" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9dedae53-8214-40f7-9d24-fb6964b40668" + "d38adb09-9a2b-4408-a4af-f125b2969495" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA30857CD4BA\",\r\n \"creationTime\": \"2015-11-11T00:39:13.154169Z\",\r\n \"lastModified\": \"2015-11-11T00:39:13.154169Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:39:13.154169Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test file\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3BC7661546\",\r\n \"creationTime\": \"2015-12-21T19:20:25.407623Z\",\r\n \"lastModified\": \"2015-12-21T19:20:25.407623Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:20:25.407623Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test file\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:39:13 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dde114e4-5b17-4110-8ffb-178f7db882a0" + "872f39ac-6f3d-4a40-b902-025675c62b79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9dedae53-8214-40f7-9d24-fb6964b40668" + "d38adb09-9a2b-4408-a4af-f125b2969495" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "ETag": [ - "0x8D2EA30857CD4BA" + "0x8D30A3BC7661546" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4685465c-be20-48b4-b607-8b017549dc59" + "5e3dde85-de25-4e0e-8313-a5976130a65a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:26 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "e2ab6e35-c0f5-477b-999a-3228da9f4c5c" + "fa09d305-c0fd-4264-abc5-0a6b1f04418d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4685465c-be20-48b4-b607-8b017549dc59" + "5e3dde85-de25-4e0e-8313-a5976130a65a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:12 GMT" + "Mon, 21 Dec 2015 19:20:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b209c7a3-696b-45bb-af55-32d620d72183" + "a6ed6c6e-80b2-4724-b64a-8af9de520da2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:14 GMT" + "Mon, 21 Dec 2015 19:20:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "e5f931d9-5052-42d1-a773-0a87a144c42a" + "d133df8f-7f94-403d-91ef-8e17d7fa01bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b209c7a3-696b-45bb-af55-32d620d72183" + "a6ed6c6e-80b2-4724-b64a-8af9de520da2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:15 GMT" + "Mon, 21 Dec 2015 19:20:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files?$filter=startswith(name%2C'wd')&recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files?$filter=startswith(name%2C'wd')&recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCUyNyUyOSZyZWN1cnNpdmU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b1902bf0-c5ae-4391-bc1e-a09672e2db1f" + "669422f1-1fb2-42e2-8320-015ecd21db98" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:17 GMT" + "Mon, 21 Dec 2015 19:20:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -646,19 +646,19 @@ "chunked" ], "request-id": [ - "0700d0b6-689b-4548-b612-8681d31ec8d5" + "ac94c0e6-e227-4397-882d-db332172e8ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b1902bf0-c5ae-4391-bc1e-a09672e2db1f" + "669422f1-1fb2-42e2-8320-015ecd21db98" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:19 GMT" + "Mon, 21 Dec 2015 19:20:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,26 +667,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files?$filter=startswith(name%2C'wd')&recursive=true&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCUyNyUyOSZyZWN1cnNpdmU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files?$filter=startswith(name%2C'wd')&recursive=true&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCUyNyUyOSZyZWN1cnNpdmU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6eb13a2a-17d4-4912-8a99-9c8a4ead1e74" + "7ef3ab29-7b68-47e3-9507-0a0097e6a8fb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:18 GMT" + "Mon, 21 Dec 2015 19:20:32 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"wd\\\\testFile.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files/wd\\\\testFile.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:39:13.048353Z\",\r\n \"lastModified\": \"2015-11-11T00:39:13.0493526Z\",\r\n \"contentLength\": \"14\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"wd\\\\testFile.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listNodeFileByTaskRecursiveJob/tasks/testTask/files/wd\\\\testFile.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:20:27.6858938Z\",\r\n \"lastModified\": \"2015-12-21T19:20:27.6861266Z\",\r\n \"contentLength\": \"14\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "9587151a-5222-4eab-bffd-bd15db53973a" + "1a0f36eb-d7ba-4f74-a2e3-320d6ebed16f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6eb13a2a-17d4-4912-8a99-9c8a4ead1e74" + "7ef3ab29-7b68-47e3-9507-0a0097e6a8fb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:19 GMT" + "Mon, 21 Dec 2015 19:20:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -716,22 +716,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listNodeFileByTaskRecursiveJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdE5vZGVGaWxlQnlUYXNrUmVjdXJzaXZlSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "281ffd0b-0314-44d6-9876-cec6f145dcb4" + "c7a1b2a6-e5c6-45ba-9300-79510698f79a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:39:18 GMT" + "Mon, 21 Dec 2015 19:20:32 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -741,19 +741,19 @@ "chunked" ], "request-id": [ - "62abc420-5a08-470b-9de8-fa6d69e83f3e" + "a277454f-a22a-42e5-9386-a300d97806a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "281ffd0b-0314-44d6-9876-cec6f145dcb4" + "c7a1b2a6-e5c6-45ba-9300-79510698f79a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:39:19 GMT" + "Mon, 21 Dec 2015 19:20:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskWithMaxCount.json index d46e4370b45c..c42e184f9bfb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListNodeFilesByTaskWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14999" ], "x-ms-request-id": [ - "18b733b6-26ce-4681-9b6e-0acaf27c95d4" + "b98c56c4-43ea-401b-ad35-cfaf701a6484" ], "x-ms-correlation-request-id": [ - "18b733b6-26ce-4681-9b6e-0acaf27c95d4" + "b98c56c4-43ea-401b-ad35-cfaf701a6484" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004116Z:18b733b6-26ce-4681-9b6e-0acaf27c95d4" + "WESTUS:20151221T192444Z:b98c56c4-43ea-401b-ad35-cfaf701a6484" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:15 GMT" + "Mon, 21 Dec 2015 19:24:43 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14998" ], "x-ms-request-id": [ - "745f5dc6-e923-4d64-851b-433f5611e1d8" + "1360a1d6-8f4e-4be8-b3ee-a810c62b8b0c" ], "x-ms-correlation-request-id": [ - "745f5dc6-e923-4d64-851b-433f5611e1d8" + "1360a1d6-8f4e-4be8-b3ee-a810c62b8b0c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004122Z:745f5dc6-e923-4d64-851b-433f5611e1d8" + "WESTUS:20151221T192451Z:1360a1d6-8f4e-4be8-b3ee-a810c62b8b0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:22 GMT" + "Mon, 21 Dec 2015 19:24:51 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:41:17 GMT" + "Mon, 21 Dec 2015 19:24:44 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4e8e169c-b493-46bc-ad6c-f243448b454c" + "f238e1ad-2107-492d-9b75-aba7844b880a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14997" ], "x-ms-request-id": [ - "1229f385-c36e-4c60-a63a-02cef99f3c90" + "654d43f5-622b-4ad0-aa32-624cd1809f64" ], "x-ms-correlation-request-id": [ - "1229f385-c36e-4c60-a63a-02cef99f3c90" + "654d43f5-622b-4ad0-aa32-624cd1809f64" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004116Z:1229f385-c36e-4c60-a63a-02cef99f3c90" + "WESTUS:20151221T192445Z:654d43f5-622b-4ad0-aa32-624cd1809f64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:16 GMT" + "Mon, 21 Dec 2015 19:24:45 GMT" ], "ETag": [ - "0x8D2EA30CF7F4080" + "0x8D30A3C61F85642" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:50 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f86e2447-5fba-489f-b2fc-76c4e4a0e399" + "c74aad1f-6b03-45af-a5cd-0b318e6edfd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14996" ], "x-ms-request-id": [ - "98ae49f8-6b06-4859-b6cd-62cf936096a6" + "431716a1-0f54-41f5-9659-af488a50a6b4" ], "x-ms-correlation-request-id": [ - "98ae49f8-6b06-4859-b6cd-62cf936096a6" + "431716a1-0f54-41f5-9659-af488a50a6b4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004122Z:98ae49f8-6b06-4859-b6cd-62cf936096a6" + "WESTUS:20151221T192451Z:431716a1-0f54-41f5-9659-af488a50a6b4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:22 GMT" + "Mon, 21 Dec 2015 19:24:51 GMT" ], "ETag": [ - "0x8D2EA30D30C211F" + "0x8D30A3C657C18EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "61a9f685-fadd-43d7-b5cb-436f21cc4b20" + "385c5953-64aa-46ac-843c-3200247e195a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "9110c74d-ebff-49f2-8dfe-7942446c5c43" + "ab07459d-ffcb-41bf-8171-4a8357191952" ], "x-ms-correlation-request-id": [ - "9110c74d-ebff-49f2-8dfe-7942446c5c43" + "ab07459d-ffcb-41bf-8171-4a8357191952" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004117Z:9110c74d-ebff-49f2-8dfe-7942446c5c43" + "WESTUS:20151221T192445Z:ab07459d-ffcb-41bf-8171-4a8357191952" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:16 GMT" + "Mon, 21 Dec 2015 19:24:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "8ec17f14-f725-494e-93d0-c13cd38f5485" + "17d16124-b1eb-4278-a2bd-551aa53881cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-request-id": [ - "88b40967-8eef-4733-b4d2-84962d4e7636" + "807fd03d-d6b4-48bf-bc18-c4d9c01b5e12" ], "x-ms-correlation-request-id": [ - "88b40967-8eef-4733-b4d2-84962d4e7636" + "807fd03d-d6b4-48bf-bc18-c4d9c01b5e12" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T004123Z:88b40967-8eef-4733-b4d2-84962d4e7636" + "WESTUS:20151221T192451Z:807fd03d-d6b4-48bf-bc18-c4d9c01b5e12" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:41:22 GMT" + "Mon, 21 Dec 2015 19:24:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"nodeFileByTaskMaxJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "103" ], "client-request-id": [ - "4996f43a-8d02-48e9-a4d7-76079bef73dc" + "3aa053b8-9fa4-4dc8-bf95-ecaee81c234c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:16 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:41:17 GMT" + "Mon, 21 Dec 2015 19:24:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "908f2ac7-fd96-4e6b-a658-641f69559888" + "efc05c08-7fe5-4f08-a4ae-61906f6381e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4996f43a-8d02-48e9-a4d7-76079bef73dc" + "3aa053b8-9fa4-4dc8-bf95-ecaee81c234c" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "ETag": [ - "0x8D2EA30CF853D3F" + "0x8D30A3C6252046B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "ae8ce4cb-4ab9-4acc-a66e-6aacd15c2396" + "53a363e2-c50c-446b-9522-f3d1c3b24ab5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:17 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f5b72e4f-1454-4c08-a9ab-4da6d6909484" + "93f1fc5a-feac-4fc3-93a2-10d92b26122b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae8ce4cb-4ab9-4acc-a66e-6aacd15c2396" + "53a363e2-c50c-446b-9522-f3d1c3b24ab5" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "ETag": [ - "0x8D2EA30D04BC7C6" + "0x8D30A3C630625EE" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9c84f4cc-d503-4049-a8bc-015bfb3b908e" + "9118b1d5-320c-461b-a9f4-f565274a8a3c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:17 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA30D04BC7C6\",\r\n \"creationTime\": \"2015-11-11T00:41:18.661831Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.661831Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:41:18.661831Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3C630625EE\",\r\n \"creationTime\": \"2015-12-21T19:24:46.5034734Z\",\r\n \"lastModified\": \"2015-12-21T19:24:46.5034734Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:24:46.5034734Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "93e64d5f-aa9b-41c8-bef3-e4d9b5fb0c5e" + "442bb1b0-7af1-42a0-bb2c-b45095a4f40e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9c84f4cc-d503-4049-a8bc-015bfb3b908e" + "9118b1d5-320c-461b-a9f4-f565274a8a3c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "ETag": [ - "0x8D2EA30D04BC7C6" + "0x8D30A3C630625EE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cbf4245d-a160-48ea-8084-9edfd982de39" + "cf0abd08-024e-4893-ac5a-2ba8273c74aa" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA30D04BC7C6\",\r\n \"creationTime\": \"2015-11-11T00:41:18.661831Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.661831Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:41:18.8183053Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:41:18.6593016Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:41:18.6593016Z\",\r\n \"endTime\": \"2015-11-11T00:41:18.8183053Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3C630625EE\",\r\n \"creationTime\": \"2015-12-21T19:24:46.5034734Z\",\r\n \"lastModified\": \"2015-12-21T19:24:46.5034734Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:24:47.6823126Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:24:47.5473099Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:24:47.5473099Z\",\r\n \"endTime\": \"2015-12-21T19:24:47.6823126Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fef52a8a-8820-4468-b4ab-12ee91309c37" + "ceacf191-8278-4e16-ae8d-1400ee4b58e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cbf4245d-a160-48ea-8084-9edfd982de39" + "cf0abd08-024e-4893-ac5a-2ba8273c74aa" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:51 GMT" ], "ETag": [ - "0x8D2EA30D04BC7C6" + "0x8D30A3C630625EE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3b26b7d9-1da3-4407-945e-bf2d721ee2a5" + "ee8e3d22-91d7-4585-a701-34a3021d401b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:17 GMT" + "Mon, 21 Dec 2015 19:24:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "2c2fd9bd-bb6b-4621-bd0f-a5d84dfc57a9" + "18f845e5-615a-424d-b26e-58b4fe82ca7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3b26b7d9-1da3-4407-945e-bf2d721ee2a5" + "ee8e3d22-91d7-4585-a701-34a3021d401b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:18 GMT" + "Mon, 21 Dec 2015 19:24:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58025809-7aa6-4a1e-90c1-74c17c4a9584" + "8be37c7a-8d3e-4bac-9084-58ef27dd77bb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:19 GMT" + "Mon, 21 Dec 2015 19:24:49 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -652,19 +652,19 @@ "chunked" ], "request-id": [ - "9fee6d82-a85f-48df-94b2-fdd72db47e5e" + "84fb9c5b-b095-47c3-b0f4-1204449d27e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58025809-7aa6-4a1e-90c1-74c17c4a9584" + "8be37c7a-8d3e-4bac-9084-58ef27dd77bb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:20 GMT" + "Mon, 21 Dec 2015 19:24:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,26 +673,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2svZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2svZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01b66eb0-2cb1-4bc4-91ee-f4ab71d3a5c5" + "208c9509-51d7-44e3-a669-811ec221be7d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:22 GMT" + "Mon, 21 Dec 2015 19:24:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:41:18.7573057Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.7573057Z\",\r\n \"contentLength\": \"2436\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:41:18.6703082Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.6703082Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:41:18.6703082Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.8073057Z\",\r\n \"contentLength\": \"412\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:24:47.6567187Z\",\r\n \"lastModified\": \"2015-12-21T19:24:47.6569183Z\",\r\n \"contentLength\": \"2434\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:24:47.5563101Z\",\r\n \"lastModified\": \"2015-12-21T19:24:47.5563101Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:24:47.5563101Z\",\r\n \"lastModified\": \"2015-12-21T19:24:47.6693125Z\",\r\n \"contentLength\": \"412\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -701,19 +701,19 @@ "chunked" ], "request-id": [ - "9926870b-d524-4a76-ac74-f3722d668bb0" + "62b8f492-5f06-4031-bb97-5c1e25a5feaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "01b66eb0-2cb1-4bc4-91ee-f4ab71d3a5c5" + "208c9509-51d7-44e3-a669-811ec221be7d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -722,26 +722,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask/files?recursive=false&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2svZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/nodeFileByTaskMaxJob/tasks/testTask/files?recursive=false&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2IvdGFza3MvdGVzdFRhc2svZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a41b0ac3-e63c-4f68-a548-71e17a4dcf5a" + "6a3b1944-597a-4728-adb8-9e67472e6353" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:41:18.7573057Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.7573057Z\",\r\n \"contentLength\": \"2436\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:41:18.6703082Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.6703082Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-11-11T00:41:18.6703082Z\",\r\n \"lastModified\": \"2015-11-11T00:41:18.8073057Z\",\r\n \"contentLength\": \"412\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:24:47.6567187Z\",\r\n \"lastModified\": \"2015-12-21T19:24:47.6569183Z\",\r\n \"contentLength\": \"2434\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:24:47.5563101Z\",\r\n \"lastModified\": \"2015-12-21T19:24:47.5563101Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-12-21T19:24:47.5563101Z\",\r\n \"lastModified\": \"2015-12-21T19:24:47.6693125Z\",\r\n \"contentLength\": \"412\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/nodeFileByTaskMaxJob/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -750,19 +750,19 @@ "chunked" ], "request-id": [ - "4423c74f-235e-4b65-876a-518eab0173c0" + "0bf29ca3-1255-4686-81ae-1d61a76809ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a41b0ac3-e63c-4f68-a548-71e17a4dcf5a" + "6a3b1944-597a-4728-adb8-9e67472e6353" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -771,22 +771,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileByTaskMaxJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/nodeFileByTaskMaxJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVCeVRhc2tNYXhKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1873f300-4806-4bd6-a987-168b84b38e6e" + "e7f49bd2-d103-44b6-a16f-d6f31878d807" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:41:23 GMT" + "Mon, 21 Dec 2015 19:24:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -796,19 +796,19 @@ "chunked" ], "request-id": [ - "7f3ed8af-1eb9-4507-bc93-01a2ff492b30" + "03f80de7-fa8c-4b78-bef1-a13149a14df6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1873f300-4806-4bd6-a987-168b84b38e6e" + "e7f49bd2-d103-44b6-a16f-d6f31878d807" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:41:25 GMT" + "Mon, 21 Dec 2015 19:24:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedule.json index 081410c5351d..31b8c064acac 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedule.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14981" ], "x-ms-request-id": [ - "1b326718-567c-4e50-9b13-aa9890234191" + "9c640d3b-0b6a-432a-864e-df309627c5cb" ], "x-ms-correlation-request-id": [ - "1b326718-567c-4e50-9b13-aa9890234191" + "9c640d3b-0b6a-432a-864e-df309627c5cb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010659Z:1b326718-567c-4e50-9b13-aa9890234191" + "CENTRALUS:20151221T195753Z:9c640d3b-0b6a-432a-864e-df309627c5cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:06:59 GMT" + "Mon, 21 Dec 2015 19:57:52 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14980" ], "x-ms-request-id": [ - "b050b75a-9808-4eb8-8fd7-cc5d89dfbd19" + "768e19fc-8d78-4559-97a6-2c649bf077a7" ], "x-ms-correlation-request-id": [ - "b050b75a-9808-4eb8-8fd7-cc5d89dfbd19" + "768e19fc-8d78-4559-97a6-2c649bf077a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010704Z:b050b75a-9808-4eb8-8fd7-cc5d89dfbd19" + "CENTRALUS:20151221T195757Z:768e19fc-8d78-4559-97a6-2c649bf077a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:03 GMT" + "Mon, 21 Dec 2015 19:57:56 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:00 GMT" + "Mon, 21 Dec 2015 19:57:52 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2c5acaa3-6591-481f-b04f-b4454bdb75f2" + "95c45b19-41f6-4e38-a603-d71f2a294440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14982" ], "x-ms-request-id": [ - "55e078d6-e179-4421-b5c0-cdd832563c0a" + "419ed164-162e-4b6d-bf23-b696e8fd0b0a" ], "x-ms-correlation-request-id": [ - "55e078d6-e179-4421-b5c0-cdd832563c0a" + "419ed164-162e-4b6d-bf23-b696e8fd0b0a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010700Z:55e078d6-e179-4421-b5c0-cdd832563c0a" + "CENTRALUS:20151221T195754Z:419ed164-162e-4b6d-bf23-b696e8fd0b0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:06:59 GMT" + "Mon, 21 Dec 2015 19:57:54 GMT" ], "ETag": [ - "0x8D2EA3467686945" + "0x8D30A4102A833E5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:04 GMT" + "Mon, 21 Dec 2015 19:57:55 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "420170f1-a87d-470b-924b-7cf3e562d19d" + "19762fb5-0ccd-42e9-bc3a-66c59f28af2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14981" ], "x-ms-request-id": [ - "0aac2738-4ac3-41ec-bfe8-3500dbb6732e" + "3d9f0843-075f-4fff-bbcf-1a0048d53bfd" ], "x-ms-correlation-request-id": [ - "0aac2738-4ac3-41ec-bfe8-3500dbb6732e" + "3d9f0843-075f-4fff-bbcf-1a0048d53bfd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010704Z:0aac2738-4ac3-41ec-bfe8-3500dbb6732e" + "CENTRALUS:20151221T195757Z:3d9f0843-075f-4fff-bbcf-1a0048d53bfd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:04 GMT" + "Mon, 21 Dec 2015 19:57:57 GMT" ], "ETag": [ - "0x8D2EA3469793E1B" + "0x8D30A410491D5BA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "fed6bd76-2844-4453-8065-caa45f831dcd" + "e2918bcd-26bc-4081-b631-0384f9b0aae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "c33750fb-3d32-4f36-8546-2f3d9475dd60" + "48dc3ebb-6ec9-42bb-96ee-d4549a87a9c6" ], "x-ms-correlation-request-id": [ - "c33750fb-3d32-4f36-8546-2f3d9475dd60" + "48dc3ebb-6ec9-42bb-96ee-d4549a87a9c6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010700Z:c33750fb-3d32-4f36-8546-2f3d9475dd60" + "CENTRALUS:20151221T195754Z:48dc3ebb-6ec9-42bb-96ee-d4549a87a9c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:00 GMT" + "Mon, 21 Dec 2015 19:57:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "b0eee00b-c081-450f-ae95-0a44de979399" + "bd97c7e5-22b1-4897-8054-c8dcdfb2367d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1198" ], "x-ms-request-id": [ - "da06f372-d757-4629-a9bc-176cd1148971" + "d83ee950-b466-48cf-88a2-7fdc18e37518" ], "x-ms-correlation-request-id": [ - "da06f372-d757-4629-a9bc-176cd1148971" + "d83ee950-b466-48cf-88a2-7fdc18e37518" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010704Z:da06f372-d757-4629-a9bc-176cd1148971" + "CENTRALUS:20151221T195757Z:d83ee950-b466-48cf-88a2-7fdc18e37518" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:04 GMT" + "Mon, 21 Dec 2015 19:57:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testDeleteJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testDeleteJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "179" + "141" ], "client-request-id": [ - "2591495b-fe10-4035-8ce9-d95d28700281" + "a7529b59-93e2-4f84-ae7b-138596708f33" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:00 GMT" + "Mon, 21 Dec 2015 19:57:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:01 GMT" + "Mon, 21 Dec 2015 19:57:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a7e8989d-5bd7-4b14-8046-246e748407db" + "1f93811b-7fc6-4857-a94b-11fabef495d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2591495b-fe10-4035-8ce9-d95d28700281" + "a7529b59-93e2-4f84-ae7b-138596708f33" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:07:02 GMT" + "Mon, 21 Dec 2015 19:57:55 GMT" ], "ETag": [ - "0x8D2EA3467BD8319" + "0x8D30A410422145B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedule" @@ -401,26 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3010f987-e6da-4247-85ce-372ca93b4596" + "266a5089-8bf1-42fc-90fd-41f633752a12" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:04 GMT" + "Mon, 21 Dec 2015 19:57:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedule\",\r\n \"eTag\": \"0x8D2EA3467BD8319\",\r\n \"lastModified\": \"2015-11-11T01:07:01.2333337Z\",\r\n \"creationTime\": \"2015-11-11T01:07:01.2333337Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:07:01.2333337Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedule:job-1\",\r\n \"id\": \"testDeleteJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedule\",\r\n \"eTag\": \"0x8D30A410422145B\",\r\n \"lastModified\": \"2015-12-21T19:57:54.7866203Z\",\r\n \"creationTime\": \"2015-12-21T19:57:54.7866203Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:57:54.7866203Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedule:job-1\",\r\n \"id\": \"testDeleteJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -429,19 +429,19 @@ "chunked" ], "request-id": [ - "f73e81cc-ad05-46d5-99a6-f23f5f7ecbf1" + "b1ef2bc4-8154-4ef3-a96b-1a0d9eec99f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3010f987-e6da-4247-85ce-372ca93b4596" + "266a5089-8bf1-42fc-90fd-41f633752a12" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:07:05 GMT" + "Mon, 21 Dec 2015 19:57:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -450,26 +450,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e032167c-f3c7-47f3-81b4-591235820ae5" + "fe9669c8-152b-4108-956d-cc1dad5d3d16" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:04 GMT" + "Mon, 21 Dec 2015 19:57:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedule\",\r\n \"eTag\": \"0x8D2EA3467BD8319\",\r\n \"lastModified\": \"2015-11-11T01:07:01.2333337Z\",\r\n \"creationTime\": \"2015-11-11T01:07:01.2333337Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:07:04.7400615Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:07:01.2333337Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedule:job-1\",\r\n \"id\": \"testDeleteJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedule\",\r\n \"eTag\": \"0x8D30A410422145B\",\r\n \"lastModified\": \"2015-12-21T19:57:54.7866203Z\",\r\n \"creationTime\": \"2015-12-21T19:57:54.7866203Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:57:58.0676028Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:57:54.7866203Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedule:job-1\",\r\n \"id\": \"testDeleteJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -478,19 +478,19 @@ "chunked" ], "request-id": [ - "e92756e6-b772-490d-aca6-cc790050e1bb" + "8bfeefe5-b07a-4e67-961d-537ef563e3c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e032167c-f3c7-47f3-81b4-591235820ae5" + "fe9669c8-152b-4108-956d-cc1dad5d3d16" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:07:05 GMT" + "Mon, 21 Dec 2015 19:57:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -499,22 +499,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDeleteJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGVsZXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testDeleteJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGVsZXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ad1e2f58-6c30-4253-9b05-70e212a28c36" + "a0ff733f-11c0-4112-a11e-8e0972150cdf" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:04 GMT" + "Mon, 21 Dec 2015 19:57:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -524,19 +524,19 @@ "chunked" ], "request-id": [ - "40603cc0-b531-48b0-ac38-7cfbe46c96af" + "203ff7d2-4661-45e6-a9eb-99dc24a39411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ad1e2f58-6c30-4253-9b05-70e212a28c36" + "a0ff733f-11c0-4112-a11e-8e0972150cdf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:07:05 GMT" + "Mon, 21 Dec 2015 19:57:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedulePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedulePipeline.json index d9167a7a4bc9..c9589306a248 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedulePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDeleteJobSchedulePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14989" ], "x-ms-request-id": [ - "c18520f2-91e9-4689-b0bd-9ace452f1bd5" + "b2a71c92-bc1d-4df6-8881-f0d7b89316f6" ], "x-ms-correlation-request-id": [ - "c18520f2-91e9-4689-b0bd-9ace452f1bd5" + "b2a71c92-bc1d-4df6-8881-f0d7b89316f6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010533Z:c18520f2-91e9-4689-b0bd-9ace452f1bd5" + "CENTRALUS:20151221T195229Z:b2a71c92-bc1d-4df6-8881-f0d7b89316f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:05:32 GMT" + "Mon, 21 Dec 2015 19:52:28 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14988" ], "x-ms-request-id": [ - "1e417e1e-6088-41ef-b1de-0623a1ffb4f4" + "e7e4c0af-53c1-40d8-a6ae-d32c0c02431f" ], "x-ms-correlation-request-id": [ - "1e417e1e-6088-41ef-b1de-0623a1ffb4f4" + "e7e4c0af-53c1-40d8-a6ae-d32c0c02431f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010537Z:1e417e1e-6088-41ef-b1de-0623a1ffb4f4" + "CENTRALUS:20151221T195233Z:e7e4c0af-53c1-40d8-a6ae-d32c0c02431f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:05:37 GMT" + "Mon, 21 Dec 2015 19:52:32 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:05:34 GMT" + "Mon, 21 Dec 2015 19:52:28 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2acdff3d-011d-44c9-9914-7f9cd7602b07" + "3c5e3e4c-460c-4b70-921d-0e9e356ea5e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14968" ], "x-ms-request-id": [ - "e0edd0c4-75ea-43cf-9543-da4e9ee9c4c4" + "1c06eab7-c539-4e8e-954e-a78113096234" ], "x-ms-correlation-request-id": [ - "e0edd0c4-75ea-43cf-9543-da4e9ee9c4c4" + "1c06eab7-c539-4e8e-954e-a78113096234" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010534Z:e0edd0c4-75ea-43cf-9543-da4e9ee9c4c4" + "CENTRALUS:20151221T195230Z:1c06eab7-c539-4e8e-954e-a78113096234" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:05:33 GMT" + "Mon, 21 Dec 2015 19:52:29 GMT" ], "ETag": [ - "0x8D2EA3433EFF3E4" + "0x8D30A40415EBF72" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:05:37 GMT" + "Mon, 21 Dec 2015 19:52:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "be98da30-533d-41ef-bad5-e4afc5cd13fa" + "1e28a7ed-6119-4ad3-8230-bc0e2728c7ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14967" ], "x-ms-request-id": [ - "da19a545-a49c-4ed1-95ac-fc74d64ec564" + "1892143a-e5b0-448e-b5e3-859a865dfe3e" ], "x-ms-correlation-request-id": [ - "da19a545-a49c-4ed1-95ac-fc74d64ec564" + "1892143a-e5b0-448e-b5e3-859a865dfe3e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010537Z:da19a545-a49c-4ed1-95ac-fc74d64ec564" + "CENTRALUS:20151221T195233Z:1892143a-e5b0-448e-b5e3-859a865dfe3e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:05:37 GMT" + "Mon, 21 Dec 2015 19:52:33 GMT" ], "ETag": [ - "0x8D2EA3436081A94" + "0x8D30A40435F7054" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "606a8e91-3b62-4532-96cb-d722fa0c9fec" + "2781f20c-7423-4ef1-90fa-00e7591e8dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1185" ], "x-ms-request-id": [ - "798538f7-ec0c-4408-99b3-31660153bb5d" + "2a627d10-8cb4-47f5-ab39-c2b40bfadaf6" ], "x-ms-correlation-request-id": [ - "798538f7-ec0c-4408-99b3-31660153bb5d" + "2a627d10-8cb4-47f5-ab39-c2b40bfadaf6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010534Z:798538f7-ec0c-4408-99b3-31660153bb5d" + "CENTRALUS:20151221T195230Z:2a627d10-8cb4-47f5-ab39-c2b40bfadaf6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:05:33 GMT" + "Mon, 21 Dec 2015 19:52:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "c1170be1-a4b9-493f-95fd-5e915dfc12ca" + "0d0ff045-62e0-4fc9-aace-e1b729e10adc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1184" ], "x-ms-request-id": [ - "56fa729d-f291-4793-bed6-4e72672527c4" + "ff006b5a-0caa-431a-a959-2f08e0196ae0" ], "x-ms-correlation-request-id": [ - "56fa729d-f291-4793-bed6-4e72672527c4" + "ff006b5a-0caa-431a-a959-2f08e0196ae0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010538Z:56fa729d-f291-4793-bed6-4e72672527c4" + "CENTRALUS:20151221T195233Z:ff006b5a-0caa-431a-a959-2f08e0196ae0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:05:37 GMT" + "Mon, 21 Dec 2015 19:52:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "183" + "145" ], "client-request-id": [ - "41080a83-a6cb-4aea-8140-2d964a6c1755" + "78711472-3cc8-428f-b301-53d61e481982" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:05:34 GMT" + "Mon, 21 Dec 2015 19:52:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:05:34 GMT" + "Mon, 21 Dec 2015 19:52:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "50c8afc5-4d64-4b0f-982e-69e425934e26" + "b8248631-9572-40f0-8515-00400cbf3c50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "41080a83-a6cb-4aea-8140-2d964a6c1755" + "78711472-3cc8-428f-b301-53d61e481982" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe" ], "Date": [ - "Wed, 11 Nov 2015 01:05:35 GMT" + "Mon, 21 Dec 2015 19:52:31 GMT" ], "ETag": [ - "0x8D2EA343449F3DD" + "0x8D30A4041C129C7" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe" @@ -401,26 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "411d02d1-71a8-4322-a8c3-ca6aa0ea73da" + "5226fb21-a904-4b60-9235-f39d774c01ad" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:05:37 GMT" + "Mon, 21 Dec 2015 19:52:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe\",\r\n \"eTag\": \"0x8D2EA343449F3DD\",\r\n \"lastModified\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"creationTime\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedulePipe:job-1\",\r\n \"id\": \"testDeleteJobSchedulePipe:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe\",\r\n \"eTag\": \"0x8D30A4041C129C7\",\r\n \"lastModified\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"creationTime\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedulePipe:job-1\",\r\n \"id\": \"testDeleteJobSchedulePipe:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -429,19 +429,19 @@ "chunked" ], "request-id": [ - "c6f71daa-ddb6-46d0-a0ae-d9b2eb8e89bd" + "649fc433-9309-4e62-a4c6-cbf122eb8113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "411d02d1-71a8-4322-a8c3-ca6aa0ea73da" + "5226fb21-a904-4b60-9235-f39d774c01ad" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:05:39 GMT" + "Mon, 21 Dec 2015 19:52:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -450,26 +450,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "faec532a-b7be-403e-8675-368b27e620e8" + "0b17a7aa-7805-418d-8db2-4aaf9ecb9f86" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:05:38 GMT" + "Mon, 21 Dec 2015 19:52:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe\",\r\n \"eTag\": \"0x8D2EA343449F3DD\",\r\n \"lastModified\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"creationTime\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T01:05:38.5429198Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedulePipe:job-1\",\r\n \"id\": \"testDeleteJobSchedulePipe:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe\",\r\n \"eTag\": \"0x8D30A4041C129C7\",\r\n \"lastModified\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"creationTime\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:52:32.1392733Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedulePipe:job-1\",\r\n \"id\": \"testDeleteJobSchedulePipe:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -478,19 +478,19 @@ "chunked" ], "request-id": [ - "ed0f8b45-60d6-46e5-ac71-5368cb26b9c8" + "f6ed84d8-2308-464e-b77a-589681b579a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "faec532a-b7be-403e-8675-368b27e620e8" + "0b17a7aa-7805-418d-8db2-4aaf9ecb9f86" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:05:39 GMT" + "Mon, 21 Dec 2015 19:52:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -499,53 +499,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDeleteJobSchedulePipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGVsZXRlSm9iU2NoZWR1bGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testDeleteJobSchedulePipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGVsZXRlSm9iU2NoZWR1bGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4e6d6390-4e32-482a-9dbd-47c1a2574dfd" + "6b2121d8-d26a-4808-93c3-9baae8e927ff" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:05:38 GMT" + "Mon, 21 Dec 2015 19:52:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe\",\r\n \"eTag\": \"0x8D2EA343449F3DD\",\r\n \"lastModified\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"creationTime\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:05:34.9122013Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedulePipe:job-1\",\r\n \"id\": \"testDeleteJobSchedulePipe:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDeleteJobSchedulePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDeleteJobSchedulePipe\",\r\n \"eTag\": \"0x8D30A4041C129C7\",\r\n \"lastModified\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"creationTime\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:52:28.6734791Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobSchedulePipe:job-1\",\r\n \"id\": \"testDeleteJobSchedulePipe:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:05:34 GMT" + "Mon, 21 Dec 2015 19:52:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b2713cb3-28f2-4d7f-b76e-e00d5e11042e" + "7e4aed18-57cb-433b-93c3-55c51ed497bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4e6d6390-4e32-482a-9dbd-47c1a2574dfd" + "6b2121d8-d26a-4808-93c3-9baae8e927ff" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:05:39 GMT" + "Mon, 21 Dec 2015 19:52:34 GMT" ], "ETag": [ - "0x8D2EA343449F3DD" + "0x8D30A4041C129C7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -554,22 +554,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDeleteJobSchedulePipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGVsZXRlSm9iU2NoZWR1bGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testDeleteJobSchedulePipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGVsZXRlSm9iU2NoZWR1bGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "18dbee46-53cb-441d-8545-eeacd2b0dbae" + "46a7586e-235e-4240-a159-52b12c8c1425" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:05:38 GMT" + "Mon, 21 Dec 2015 19:52:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -579,19 +579,19 @@ "chunked" ], "request-id": [ - "702c1652-dd53-4de7-91ef-e9650d57eadf" + "b7324c17-6bd3-4d60-bc37-ff40911e0f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "18dbee46-53cb-441d-8545-eeacd2b0dbae" + "46a7586e-235e-4240-a159-52b12c8c1425" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:05:39 GMT" + "Mon, 21 Dec 2015 19:52:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableAndEnableJobSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableAndEnableJobSchedule.json index 447cb0bc3bcb..269b4dcff7c2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableAndEnableJobSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableAndEnableJobSchedule.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14984" ], "x-ms-request-id": [ - "9f5e61a3-694c-4ddc-8e44-5d3ce75a7851" + "471d8e3e-2cb7-41af-b754-46393b529569" ], "x-ms-correlation-request-id": [ - "9f5e61a3-694c-4ddc-8e44-5d3ce75a7851" + "471d8e3e-2cb7-41af-b754-46393b529569" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010327Z:9f5e61a3-694c-4ddc-8e44-5d3ce75a7851" + "CENTRALUS:20151221T195550Z:471d8e3e-2cb7-41af-b754-46393b529569" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:03:27 GMT" + "Mon, 21 Dec 2015 19:55:49 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14983" ], "x-ms-request-id": [ - "0f11efca-7349-46c4-aff2-5744458a3d63" + "ec7f31cb-904a-408a-89fd-fadf82f2464f" ], "x-ms-correlation-request-id": [ - "0f11efca-7349-46c4-aff2-5744458a3d63" + "ec7f31cb-904a-408a-89fd-fadf82f2464f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010332Z:0f11efca-7349-46c4-aff2-5744458a3d63" + "CENTRALUS:20151221T195554Z:ec7f31cb-904a-408a-89fd-fadf82f2464f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:03:31 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:29 GMT" + "Mon, 21 Dec 2015 19:55:49 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "abf6dc24-4954-4379-8f3c-aa68c9f45e5a" + "3cd6ddd5-f7c7-4664-b9e9-85d8baa56ac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14961" ], "x-ms-request-id": [ - "c59c46ab-af0c-4e51-8e18-acb20bc0cbb3" + "52457ba3-9b8b-440e-9632-be647bb7be2e" ], "x-ms-correlation-request-id": [ - "c59c46ab-af0c-4e51-8e18-acb20bc0cbb3" + "52457ba3-9b8b-440e-9632-be647bb7be2e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010328Z:c59c46ab-af0c-4e51-8e18-acb20bc0cbb3" + "CENTRALUS:20151221T195551Z:52457ba3-9b8b-440e-9632-be647bb7be2e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:03:28 GMT" + "Mon, 21 Dec 2015 19:55:50 GMT" ], "ETag": [ - "0x8D2EA33E9754D1F" + "0x8D30A40B93C102C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:32 GMT" + "Mon, 21 Dec 2015 19:55:52 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "17e85fe0-2413-40f8-9bef-0522bada45f5" + "31814a9c-2051-497a-9afd-11902396005e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14960" ], "x-ms-request-id": [ - "cbbd888a-f7e9-4e91-9ed0-8f1c4e153bd3" + "2f811171-c6b9-4682-9906-7432839322b4" ], "x-ms-correlation-request-id": [ - "cbbd888a-f7e9-4e91-9ed0-8f1c4e153bd3" + "2f811171-c6b9-4682-9906-7432839322b4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010332Z:cbbd888a-f7e9-4e91-9ed0-8f1c4e153bd3" + "CENTRALUS:20151221T195554Z:2f811171-c6b9-4682-9906-7432839322b4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:03:31 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "ETag": [ - "0x8D2EA33EB8C6B6E" + "0x8D30A40BB382D69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "e9811abb-fd67-4675-aaf7-36e5dc2ff4fe" + "1bd2397e-b092-49a9-a9b1-146d41da270a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1180" ], "x-ms-request-id": [ - "02996cba-3666-4337-b26e-28313e10c9eb" + "798970d0-6ea4-476b-b83e-e3e11fdac648" ], "x-ms-correlation-request-id": [ - "02996cba-3666-4337-b26e-28313e10c9eb" + "798970d0-6ea4-476b-b83e-e3e11fdac648" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010329Z:02996cba-3666-4337-b26e-28313e10c9eb" + "CENTRALUS:20151221T195551Z:798970d0-6ea4-476b-b83e-e3e11fdac648" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:03:28 GMT" + "Mon, 21 Dec 2015 19:55:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "37e6a771-164b-4595-b3f4-38199ee50395" + "5adff2a0-cdb0-4a63-8308-df747ba12954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1179" ], "x-ms-request-id": [ - "9faa15d8-86ec-45f4-96da-edd9846768c4" + "b4810d62-b06a-49be-b535-3bb195dbb694" ], "x-ms-correlation-request-id": [ - "9faa15d8-86ec-45f4-96da-edd9846768c4" + "b4810d62-b06a-49be-b535-3bb195dbb694" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010332Z:9faa15d8-86ec-45f4-96da-edd9846768c4" + "CENTRALUS:20151221T195554Z:b4810d62-b06a-49be-b535-3bb195dbb694" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:03:31 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "186" + "148" ], "client-request-id": [ - "10d94e83-2a2a-4ada-91ee-182daa2c7db6" + "c2546be5-0462-4f3a-8f9b-8fb6a9a49215" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:28 GMT" + "Mon, 21 Dec 2015 19:55:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:29 GMT" + "Mon, 21 Dec 2015 19:55:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4c15ff8b-aab5-4589-bf82-0b9ada69ecc0" + "dbea4519-7a89-4039-a388-a472c4b4d0bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "10d94e83-2a2a-4ada-91ee-182daa2c7db6" + "c2546be5-0462-4f3a-8f9b-8fb6a9a49215" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:03:28 GMT" + "Mon, 21 Dec 2015 19:55:50 GMT" ], "ETag": [ - "0x8D2EA33E97A6677" + "0x8D30A40B986385F" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8dd12a30-ad0f-4425-9066-26699b661788" + "82be11da-d295-456a-a108-a026d425969b" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:32 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D2EA33E97A6677\",\r\n \"lastModified\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"creationTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D30A40B986385F\",\r\n \"lastModified\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"creationTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:29 GMT" + "Mon, 21 Dec 2015 19:55:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d1e323d9-eade-4aff-90a0-3e67865b04e6" + "72e8d723-af80-417b-baa2-9246f069734e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8dd12a30-ad0f-4425-9066-26699b661788" + "82be11da-d295-456a-a108-a026d425969b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33E97A6677" + "0x8D30A40B986385F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "826d274b-dbec-41e7-8ff2-b2f569b8fa8f" + "bf0f9dd3-fe74-4b27-a50c-552a794914bb" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D2EA33EBA9764A\",\r\n \"lastModified\": \"2015-11-11T01:03:33.0644554Z\",\r\n \"creationTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-11-11T01:03:33.0644554Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D30A40BB9567ED\",\r\n \"lastModified\": \"2015-12-21T19:55:53.0687469Z\",\r\n \"creationTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:53.0687469Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "92a6542c-ad5d-4f0d-a503-77e5ed455404" + "fe21b307-73d9-4314-bb19-f49c96f666da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "826d274b-dbec-41e7-8ff2-b2f569b8fa8f" + "bf0f9dd3-fe74-4b27-a50c-552a794914bb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33EBA9764A" + "0x8D30A40BB9567ED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,53 +511,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d9fd10c7-7af7-4f5f-874d-245aac621fcc" + "63e55999-cd78-46c7-b391-56fa71f4dedf" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D2EA33EBF138E3\",\r\n \"lastModified\": \"2015-11-11T01:03:33.5347427Z\",\r\n \"creationTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-11-11T01:03:33.5347427Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:03:33.2698816Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D30A40BBD67503\",\r\n \"lastModified\": \"2015-12-21T19:55:53.4950659Z\",\r\n \"creationTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:53.4950659Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:55:53.2729985Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3a9cd3e8-490e-47e4-9cd7-cef4e016d8fa" + "3b2aa245-fb69-4368-b5f1-0b4788744588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d9fd10c7-7af7-4f5f-874d-245aac621fcc" + "63e55999-cd78-46c7-b391-56fa71f4dedf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33EBF138E3" + "0x8D30A40BBD67503" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -566,22 +566,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?disable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2Rpc2FibGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?disable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2Rpc2FibGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5cf7e8a3-571b-4398-88e4-4801eb4a92f4" + "c804082a-bc0d-42d6-bbf0-9836bbdcf1ad" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:32 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -591,16 +591,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "request-id": [ - "571e11f0-a8ab-4d65-a6d6-85d36c322538" + "2fa500b8-adec-454e-af01-62fb42d2ecaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5cf7e8a3-571b-4398-88e4-4801eb4a92f4" + "c804082a-bc0d-42d6-bbf0-9836bbdcf1ad" ], "DataServiceVersion": [ "3.0" @@ -609,10 +609,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33EBA9764A" + "0x8D30A40BB9567ED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -621,22 +621,22 @@ "StatusCode": 204 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?disable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2Rpc2FibGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?disable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2Rpc2FibGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4700a743-b9c9-4023-bbf4-0508d7e0d84b" + "af5c4b6d-d741-4d27-8405-7768c1a13398" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -646,16 +646,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "request-id": [ - "99fcbca1-953e-4974-a731-fb26cf819ef5" + "f421e83a-b0d5-4b49-809c-2cb9f4160d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4700a743-b9c9-4023-bbf4-0508d7e0d84b" + "af5c4b6d-d741-4d27-8405-7768c1a13398" ], "DataServiceVersion": [ "3.0" @@ -664,10 +664,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33EBF138E3" + "0x8D30A40BBD67503" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -676,22 +676,22 @@ "StatusCode": 204 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?enable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2VuYWJsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?enable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2VuYWJsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0d9723c2-42ed-4347-a97d-e014baa957e9" + "772de0b7-ebce-40fa-82d3-701e1933ee3b" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -701,16 +701,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "request-id": [ - "6cfb9377-cb9c-4316-8c91-afb1df559fa7" + "8437b141-f874-4ee9-ad0c-c38fe774087a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0d9723c2-42ed-4347-a97d-e014baa957e9" + "772de0b7-ebce-40fa-82d3-701e1933ee3b" ], "DataServiceVersion": [ "3.0" @@ -719,10 +719,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33EBC8CEC0" + "0x8D30A40BBB49281" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -731,22 +731,22 @@ "StatusCode": 204 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?enable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2VuYWJsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?enable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2VuYWJsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ad0fe3ce-1c9b-4f02-8e46-b180eab0d32f" + "28b53780-9b10-419e-b102-8bf633584fc2" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -756,16 +756,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:53 GMT" ], "request-id": [ - "db80ea4b-ea96-46f8-95d1-363923bfd880" + "53bae627-6d21-453d-bbcb-9ae00bc5c01e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ad0fe3ce-1c9b-4f02-8e46-b180eab0d32f" + "28b53780-9b10-419e-b102-8bf633584fc2" ], "DataServiceVersion": [ "3.0" @@ -774,10 +774,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "ETag": [ - "0x8D2EA33EC0D2BE7" + "0x8D30A40BBF94646" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -786,26 +786,26 @@ "StatusCode": 204 }, { - "RequestUri": "/jobschedules?$filter=id%20eq%20'testDisableEnableJobSchedule'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules?$filter=id%20eq%20'testDisableEnableJobSchedule'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a312556f-630c-47a4-a4bc-758523b61876" + "d2b52585-c171-485b-af15-a32d813dbc9b" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D2EA33EBC8CEC0\",\r\n \"lastModified\": \"2015-11-11T01:03:33.2698816Z\",\r\n \"creationTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:03:33.2698816Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:03:33.0644554Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D30A40BBB49281\",\r\n \"lastModified\": \"2015-12-21T19:55:53.2729985Z\",\r\n \"creationTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:53.2729985Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:55:53.0687469Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -814,19 +814,19 @@ "chunked" ], "request-id": [ - "d98977f1-a9be-4f63-839e-bfee66eb7a2f" + "7473a528-67b3-44e2-94c6-b13e5d06efec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a312556f-630c-47a4-a4bc-758523b61876" + "d2b52585-c171-485b-af15-a32d813dbc9b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -835,26 +835,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?$filter=id%20eq%20'testDisableEnableJobSchedule'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules?$filter=id%20eq%20'testDisableEnableJobSchedule'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7e5cad39-2614-4140-8e9d-66cce02715dc" + "f5f672b3-6bd5-4f05-9826-e78b3391937c" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D2EA33EC0D2BE7\",\r\n \"lastModified\": \"2015-11-11T01:03:33.7179111Z\",\r\n \"creationTime\": \"2015-11-11T01:03:29.4005879Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:03:33.7179111Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:03:33.5347427Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testDisableEnableJobSchedule\",\r\n \"eTag\": \"0x8D30A40BBF94646\",\r\n \"lastModified\": \"2015-12-21T19:55:53.7232454Z\",\r\n \"creationTime\": \"2015-12-21T19:55:49.6137823Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:53.7232454Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:55:53.4950659Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -863,19 +863,19 @@ "chunked" ], "request-id": [ - "dff8ec6b-c145-4af8-8e92-195596528b90" + "07ab50a6-2bb7-4a0b-8ab5-8da2877f5da8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7e5cad39-2614-4140-8e9d-66cce02715dc" + "f5f672b3-6bd5-4f05-9826-e78b3391937c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -884,22 +884,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testDisableEnableJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "982d95e6-ddfb-487f-a03e-fecd6e0da419" + "e23a9a20-6abc-4360-9208-a76b6e8e2abc" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:03:33 GMT" + "Mon, 21 Dec 2015 19:55:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -909,19 +909,19 @@ "chunked" ], "request-id": [ - "2a8afb86-a81a-4cf8-94ef-b9565573c599" + "9cd15745-315f-46ac-b1bb-757dc3ed88ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "982d95e6-ddfb-487f-a03e-fecd6e0da419" + "e23a9a20-6abc-4360-9208-a76b6e8e2abc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:03:34 GMT" + "Mon, 21 Dec 2015 19:55:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetAndListJobSchedulesWithSelect.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetAndListJobSchedulesWithSelect.json index 5395bc054fa8..448ccad4932f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetAndListJobSchedulesWithSelect.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetAndListJobSchedulesWithSelect.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14976" ], "x-ms-request-id": [ - "120e35a4-1f77-4bc0-a2d0-6a320805b899" + "30fa09ca-5e67-4b53-bef4-d70071c19e6d" ], "x-ms-correlation-request-id": [ - "120e35a4-1f77-4bc0-a2d0-6a320805b899" + "30fa09ca-5e67-4b53-bef4-d70071c19e6d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010821Z:120e35a4-1f77-4bc0-a2d0-6a320805b899" + "CENTRALUS:20151221T195026Z:30fa09ca-5e67-4b53-bef4-d70071c19e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:08:21 GMT" + "Mon, 21 Dec 2015 19:50:25 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14975" ], "x-ms-request-id": [ - "2ba1a319-d96f-4a3f-8eda-30a3a9dd084e" + "90a0bcdf-d9ac-4288-bcd6-49c61ab5247e" ], "x-ms-correlation-request-id": [ - "2ba1a319-d96f-4a3f-8eda-30a3a9dd084e" + "90a0bcdf-d9ac-4288-bcd6-49c61ab5247e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010826Z:2ba1a319-d96f-4a3f-8eda-30a3a9dd084e" + "CENTRALUS:20151221T195030Z:90a0bcdf-d9ac-4288-bcd6-49c61ab5247e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:08:25 GMT" + "Mon, 21 Dec 2015 19:50:29 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:08:23 GMT" + "Mon, 21 Dec 2015 19:50:25 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4a11db24-4e2f-4015-8c52-54ef90a5380f" + "46d488fc-f5dd-48af-bdf3-af1963736272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "9b10e4bf-b507-410c-96db-c70528720276" + "7a720b71-1503-4acc-8fc0-2c1b34980379" ], "x-ms-correlation-request-id": [ - "9b10e4bf-b507-410c-96db-c70528720276" + "7a720b71-1503-4acc-8fc0-2c1b34980379" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010822Z:9b10e4bf-b507-410c-96db-c70528720276" + "CENTRALUS:20151221T195027Z:7a720b71-1503-4acc-8fc0-2c1b34980379" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:08:22 GMT" + "Mon, 21 Dec 2015 19:50:26 GMT" ], "ETag": [ - "0x8D2EA349888068D" + "0x8D30A3FF8998B8E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:08:26 GMT" + "Mon, 21 Dec 2015 19:50:29 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "88a851a7-d66f-405f-a9c4-be7fbee6cd06" + "b29afe7c-3cbf-4601-9a0e-e4e2c8f71dd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "8ae9f430-185a-4913-8ef7-c98433610ea6" + "3b1952b1-8275-4a80-818d-e9491df59919" ], "x-ms-correlation-request-id": [ - "8ae9f430-185a-4913-8ef7-c98433610ea6" + "3b1952b1-8275-4a80-818d-e9491df59919" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010826Z:8ae9f430-185a-4913-8ef7-c98433610ea6" + "CENTRALUS:20151221T195030Z:3b1952b1-8275-4a80-818d-e9491df59919" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:08:25 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "ETag": [ - "0x8D2EA349AAD345A" + "0x8D30A3FFA91B719" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "a8da3f29-bca1-444d-9e8b-6da933a1bef9" + "f8b4e791-6382-4600-8771-eaeb64db2377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "b7d06a04-fddf-41f2-b51b-69dfd325d05d" + "f9b58576-9c96-45e7-9697-068e5566513e" ], "x-ms-correlation-request-id": [ - "b7d06a04-fddf-41f2-b51b-69dfd325d05d" + "f9b58576-9c96-45e7-9697-068e5566513e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010822Z:b7d06a04-fddf-41f2-b51b-69dfd325d05d" + "CENTRALUS:20151221T195027Z:f9b58576-9c96-45e7-9697-068e5566513e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:08:22 GMT" + "Mon, 21 Dec 2015 19:50:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "6f1a87bf-f31e-4e15-aafc-dc08776dfcbb" + "412dae84-72b4-411e-9148-27fa68cc9767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "99f3b85f-f113-4fc5-a4db-3ba41a080aa8" + "4e93fb18-32eb-4673-ace9-645a5484c77a" ], "x-ms-correlation-request-id": [ - "99f3b85f-f113-4fc5-a4db-3ba41a080aa8" + "4e93fb18-32eb-4673-ace9-645a5484c77a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010826Z:99f3b85f-f113-4fc5-a4db-3ba41a080aa8" + "CENTRALUS:20151221T195030Z:4e93fb18-32eb-4673-ace9-645a5484c77a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:08:25 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"selectTest\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"selectTest\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "168" + "130" ], "client-request-id": [ - "af198c3c-9a16-434c-b149-8d4a960d5b89" + "3d80711b-6d50-4bae-82cc-3a1e096d9169" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:08:22 GMT" + "Mon, 21 Dec 2015 19:50:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:08:23 GMT" + "Mon, 21 Dec 2015 19:50:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "41ccd8c1-845a-44ba-b855-a497f72d54d5" + "4cd7f954-5c75-471e-809e-0c403aea3fad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "af198c3c-9a16-434c-b149-8d4a960d5b89" + "3d80711b-6d50-4bae-82cc-3a1e096d9169" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/selectTest" ], "Date": [ - "Wed, 11 Nov 2015 01:08:23 GMT" + "Mon, 21 Dec 2015 19:50:26 GMT" ], "ETag": [ - "0x8D2EA34988846E7" + "0x8D30A3FF888230F" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/selectTest" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/selectTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zZWxlY3RUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/selectTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zZWxlY3RUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c0bdeb08-b0f1-400f-a99f-c0caf8e767c4" + "f337a2ad-a947-4da6-ae59-59c05c498517" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:08:26 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/selectTest\",\r\n \"eTag\": \"0x8D2EA34988846E7\",\r\n \"lastModified\": \"2015-11-11T01:08:23.0928103Z\",\r\n \"creationTime\": \"2015-11-11T01:08:23.0928103Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:08:23.0928103Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest:job-1\",\r\n \"id\": \"selectTest:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/selectTest\",\r\n \"eTag\": \"0x8D30A3FF888230F\",\r\n \"lastModified\": \"2015-12-21T19:50:25.8260751Z\",\r\n \"creationTime\": \"2015-12-21T19:50:25.8260751Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:50:25.8260751Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest:job-1\",\r\n \"id\": \"selectTest:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:08:23 GMT" + "Mon, 21 Dec 2015 19:50:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ad5dc87c-331d-4ad5-867b-ebbeed2e9d87" + "05649060-0549-45a4-a846-7b79f3a36ddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c0bdeb08-b0f1-400f-a99f-c0caf8e767c4" + "f337a2ad-a947-4da6-ae59-59c05c498517" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:08:27 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "ETag": [ - "0x8D2EA34988846E7" + "0x8D30A3FF888230F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,22 +456,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/selectTest?$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zZWxlY3RUZXN0PyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/selectTest?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zZWxlY3RUZXN0PyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a27d3f41-90eb-46e6-8a8e-ff6b7cd6af4e" + "f281da0a-a620-4eb6-98ff-9cc8e833bfbe" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:08:26 GMT" + "Mon, 21 Dec 2015 19:50:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -481,28 +481,28 @@ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:08:23 GMT" + "Mon, 21 Dec 2015 19:50:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "27145495-6c09-40b3-94a3-4421af4e126e" + "41306069-19f7-4705-b055-423e31cb8f0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a27d3f41-90eb-46e6-8a8e-ff6b7cd6af4e" + "f281da0a-a620-4eb6-98ff-9cc8e833bfbe" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:08:27 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "ETag": [ - "0x8D2EA34988846E7" + "0x8D30A3FF888230F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,26 +511,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?$filter=id%20eq%20'selectTest'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjdzZWxlY3RUZXN0JTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules?$filter=id%20eq%20'selectTest'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjdzZWxlY3RUZXN0JTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c3016b10-74dc-4b3b-9874-7d2c97d65e4d" + "ab78ef57-f07c-44a8-a9bc-3ebffccb26cf" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:08:26 GMT" + "Mon, 21 Dec 2015 19:50:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/selectTest\",\r\n \"eTag\": \"0x8D2EA34988846E7\",\r\n \"lastModified\": \"2015-11-11T01:08:23.0928103Z\",\r\n \"creationTime\": \"2015-11-11T01:08:23.0928103Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:08:23.0928103Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest:job-1\",\r\n \"id\": \"selectTest:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/selectTest\",\r\n \"eTag\": \"0x8D30A3FF888230F\",\r\n \"lastModified\": \"2015-12-21T19:50:25.8260751Z\",\r\n \"creationTime\": \"2015-12-21T19:50:25.8260751Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:50:25.8260751Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest:job-1\",\r\n \"id\": \"selectTest:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -539,19 +539,19 @@ "chunked" ], "request-id": [ - "83d85158-59e4-4ba0-8b79-d126dc1a7304" + "94bbafd1-f38d-417e-b250-4b474377fd67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c3016b10-74dc-4b3b-9874-7d2c97d65e4d" + "ab78ef57-f07c-44a8-a9bc-3ebffccb26cf" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:08:27 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -560,22 +560,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?$filter=id%20eq%20'selectTest'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjdzZWxlY3RUZXN0JTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?$filter=id%20eq%20'selectTest'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPWlkJTIwZXElMjAlMjdzZWxlY3RUZXN0JTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "12547e7f-499c-45bc-9414-5a166151400b" + "af219dc3-1630-4d80-a465-e8c42567d71a" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:08:26 GMT" + "Mon, 21 Dec 2015 19:50:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -588,19 +588,19 @@ "chunked" ], "request-id": [ - "c4367b5b-79a9-49b3-aabd-19fc308f7672" + "207aa263-07c9-42fa-91fe-4630518bd771" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "12547e7f-499c-45bc-9414-5a166151400b" + "af219dc3-1630-4d80-a465-e8c42567d71a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:08:27 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -609,22 +609,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/selectTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zZWxlY3RUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/selectTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zZWxlY3RUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dbbf541b-b00e-4db6-8a6d-edda0e5547e0" + "e45e0bbd-1752-464a-8bfc-1ed48c4396d7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:08:27 GMT" + "Mon, 21 Dec 2015 19:50:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -634,19 +634,19 @@ "chunked" ], "request-id": [ - "0205c42d-a06f-47ab-ba8f-cc10f5d7e320" + "b0219682-5f84-4397-ac88-6cd5dd2b5a92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dbbf541b-b00e-4db6-8a6d-edda0e5547e0" + "e45e0bbd-1752-464a-8bfc-1ed48c4396d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:08:28 GMT" + "Mon, 21 Dec 2015 19:50:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetJobScheduleById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetJobScheduleById.json index 2997698ba6a5..688b94c8e390 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetJobScheduleById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestGetJobScheduleById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14992" ], "x-ms-request-id": [ - "5423e678-089c-44a5-ad40-98ee6852d446" + "73247ed7-7a7a-443f-afc7-3ef353e0d581" ], "x-ms-correlation-request-id": [ - "5423e678-089c-44a5-ad40-98ee6852d446" + "73247ed7-7a7a-443f-afc7-3ef353e0d581" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010244Z:5423e678-089c-44a5-ad40-98ee6852d446" + "CENTRALUS:20151221T195350Z:73247ed7-7a7a-443f-afc7-3ef353e0d581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:44 GMT" + "Mon, 21 Dec 2015 19:53:50 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14991" ], "x-ms-request-id": [ - "a9f994ef-e841-4a39-8c51-4208ef1c790f" + "88de8331-6314-4d73-b205-4c2f34e92a8a" ], "x-ms-correlation-request-id": [ - "a9f994ef-e841-4a39-8c51-4208ef1c790f" + "88de8331-6314-4d73-b205-4c2f34e92a8a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010249Z:a9f994ef-e841-4a39-8c51-4208ef1c790f" + "CENTRALUS:20151221T195354Z:88de8331-6314-4d73-b205-4c2f34e92a8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:48 GMT" + "Mon, 21 Dec 2015 19:53:54 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:45 GMT" + "Mon, 21 Dec 2015 19:53:50 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "5e385d61-3eae-454f-b681-9ac96170d34c" + "6c10631e-2533-4e1d-9c36-6c03f52d6082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14980" ], "x-ms-request-id": [ - "aa01bb36-8d23-46a7-bb69-e293e0d33c28" + "0e5775a6-9285-40cf-b661-a69860c98dc5" ], "x-ms-correlation-request-id": [ - "aa01bb36-8d23-46a7-bb69-e293e0d33c28" + "0e5775a6-9285-40cf-b661-a69860c98dc5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010246Z:aa01bb36-8d23-46a7-bb69-e293e0d33c28" + "CENTRALUS:20151221T195351Z:0e5775a6-9285-40cf-b661-a69860c98dc5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:45 GMT" + "Mon, 21 Dec 2015 19:53:50 GMT" ], "ETag": [ - "0x8D2EA33CF876C2E" + "0x8D30A40729F15D6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:49 GMT" + "Mon, 21 Dec 2015 19:53:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0654c418-97e5-40e3-9941-dbaa7170aa20" + "05161b0b-010b-4ac9-ada3-0d0a6eeb480f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14979" ], "x-ms-request-id": [ - "da7e7845-9207-4842-8b61-baa33aefe89c" + "766b492f-695c-4819-bfe1-4d759c135835" ], "x-ms-correlation-request-id": [ - "da7e7845-9207-4842-8b61-baa33aefe89c" + "766b492f-695c-4819-bfe1-4d759c135835" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010249Z:da7e7845-9207-4842-8b61-baa33aefe89c" + "CENTRALUS:20151221T195354Z:766b492f-695c-4819-bfe1-4d759c135835" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:48 GMT" + "Mon, 21 Dec 2015 19:53:54 GMT" ], "ETag": [ - "0x8D2EA33D1ADCEA7" + "0x8D30A40748618B7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "2d816d0c-4a90-4e80-bc61-8fdbf6e1364e" + "189b9fb7-767b-4843-8e58-c764e94d2864" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1194" ], "x-ms-request-id": [ - "e2f300b1-eade-4381-8c38-102972c2a452" + "7a080990-dae8-493c-9ece-65a9bda2dddf" ], "x-ms-correlation-request-id": [ - "e2f300b1-eade-4381-8c38-102972c2a452" + "7a080990-dae8-493c-9ece-65a9bda2dddf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010246Z:e2f300b1-eade-4381-8c38-102972c2a452" + "CENTRALUS:20151221T195351Z:7a080990-dae8-493c-9ece-65a9bda2dddf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:45 GMT" + "Mon, 21 Dec 2015 19:53:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "e9c7f520-4b33-447f-ab04-79af39cc4b23" + "b620692d-3c3d-4d7e-bae4-9416a8b4314b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1193" ], "x-ms-request-id": [ - "0ef44416-6813-4ea9-896a-71657f22d8a5" + "73fff7ec-3cbd-4120-8358-de22296c5b4c" ], "x-ms-correlation-request-id": [ - "0ef44416-6813-4ea9-896a-71657f22d8a5" + "73fff7ec-3cbd-4120-8358-de22296c5b4c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010249Z:0ef44416-6813-4ea9-896a-71657f22d8a5" + "CENTRALUS:20151221T195355Z:73fff7ec-3cbd-4120-8358-de22296c5b4c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:49 GMT" + "Mon, 21 Dec 2015 19:53:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "164" + "126" ], "client-request-id": [ - "385ba2d8-2d88-4a46-ac93-84ba714fefbc" + "69007543-6a02-4939-8f07-95ac930dce94" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:45 GMT" + "Mon, 21 Dec 2015 19:53:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:46 GMT" + "Mon, 21 Dec 2015 19:53:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9c007aa7-439b-49e4-96b8-f3b7092bc0b6" + "338d3ca0-a284-405d-8a27-a70afac3145e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "385ba2d8-2d88-4a46-ac93-84ba714fefbc" + "69007543-6a02-4939-8f07-95ac930dce94" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId" ], "Date": [ - "Wed, 11 Nov 2015 01:02:46 GMT" + "Mon, 21 Dec 2015 19:53:51 GMT" ], "ETag": [ - "0x8D2EA33CFE42A83" + "0x8D30A407260C152" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "18b99407-fa39-47a0-bd82-f6b6f8da719f" + "ebc8fc71-7e8c-47a3-85bf-fa11e63bfeae" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:49 GMT" + "Mon, 21 Dec 2015 19:53:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId\",\r\n \"eTag\": \"0x8D2EA33CFE42A83\",\r\n \"lastModified\": \"2015-11-11T01:02:46.4729731Z\",\r\n \"creationTime\": \"2015-11-11T01:02:46.4729731Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:02:46.4729731Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId:job-1\",\r\n \"id\": \"testId:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId\",\r\n \"eTag\": \"0x8D30A407260C152\",\r\n \"lastModified\": \"2015-12-21T19:53:50.2500178Z\",\r\n \"creationTime\": \"2015-12-21T19:53:50.2500178Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:53:50.2500178Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId:job-1\",\r\n \"id\": \"testId:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:46 GMT" + "Mon, 21 Dec 2015 19:53:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e930b7b8-c9f3-489d-9dd5-25f3437a25f4" + "b3fca16d-e4cd-42db-8d31-6158008fa98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "18b99407-fa39-47a0-bd82-f6b6f8da719f" + "ebc8fc71-7e8c-47a3-85bf-fa11e63bfeae" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:02:51 GMT" + "Mon, 21 Dec 2015 19:53:53 GMT" ], "ETag": [ - "0x8D2EA33CFE42A83" + "0x8D30A407260C152" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,22 +456,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b022e98d-d734-4724-947a-3b1d6e00f9a8" + "c1057bfd-a3b6-4a10-8d7e-949ca32ada6e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:50 GMT" + "Mon, 21 Dec 2015 19:53:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -481,19 +481,19 @@ "chunked" ], "request-id": [ - "c53ff9e1-e2b3-457a-844a-c4535346ac3e" + "5d96a08f-61b7-416e-8dbe-2caed03856f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b022e98d-d734-4724-947a-3b1d6e00f9a8" + "c1057bfd-a3b6-4a10-8d7e-949ca32ada6e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:02:50 GMT" + "Mon, 21 Dec 2015 19:53:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListAllJobSchedules.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListAllJobSchedules.json index b68482eea41a..747a0ea9c9b0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListAllJobSchedules.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListAllJobSchedules.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14991" ], "x-ms-request-id": [ - "debe3727-ae0f-4f20-97d7-a5ec91be61ba" + "fb1b33d1-ca31-4794-86c8-6a305d1613ca" ], "x-ms-correlation-request-id": [ - "debe3727-ae0f-4f20-97d7-a5ec91be61ba" + "fb1b33d1-ca31-4794-86c8-6a305d1613ca" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010452Z:debe3727-ae0f-4f20-97d7-a5ec91be61ba" + "CENTRALUS:20151221T195148Z:fb1b33d1-ca31-4794-86c8-6a305d1613ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:52 GMT" + "Mon, 21 Dec 2015 19:51:48 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14990" ], "x-ms-request-id": [ - "518d9e2d-a6d1-4054-835c-06a6c940722a" + "90d6e420-0461-4c3b-a48e-91bed4f00770" ], "x-ms-correlation-request-id": [ - "518d9e2d-a6d1-4054-835c-06a6c940722a" + "90d6e420-0461-4c3b-a48e-91bed4f00770" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010458Z:518d9e2d-a6d1-4054-835c-06a6c940722a" + "CENTRALUS:20151221T195153Z:90d6e420-0461-4c3b-a48e-91bed4f00770" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:57 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:47 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7385589f-bab7-47c5-8eb9-0a7b2c1cf03c" + "e057fbda-c919-489d-9e51-829bedebde7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14970" ], "x-ms-request-id": [ - "c0cc5faf-c72b-467e-ad0f-afed987158f9" + "326baa4e-d996-4695-8e73-82f56e9b7ac1" ], "x-ms-correlation-request-id": [ - "c0cc5faf-c72b-467e-ad0f-afed987158f9" + "326baa4e-d996-4695-8e73-82f56e9b7ac1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010453Z:c0cc5faf-c72b-467e-ad0f-afed987158f9" + "CENTRALUS:20151221T195149Z:326baa4e-d996-4695-8e73-82f56e9b7ac1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:53 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "ETag": [ - "0x8D2EA341C19FB4D" + "0x8D30A40295878D9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:58 GMT" + "Mon, 21 Dec 2015 19:51:51 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "506fe893-ac11-4c64-b499-46329858c5ef" + "93ac7912-c771-4b5d-bbbc-5e55f1380d05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14969" ], "x-ms-request-id": [ - "78d4aa04-e15c-4af0-b7fb-19983a915568" + "7b800c7a-9455-4721-ba3e-a82eb324aaf0" ], "x-ms-correlation-request-id": [ - "78d4aa04-e15c-4af0-b7fb-19983a915568" + "7b800c7a-9455-4721-ba3e-a82eb324aaf0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010458Z:78d4aa04-e15c-4af0-b7fb-19983a915568" + "CENTRALUS:20151221T195153Z:7b800c7a-9455-4721-ba3e-a82eb324aaf0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:57 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "ETag": [ - "0x8D2EA341E9ED015" + "0x8D30A402BBE4490" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "6a2d6e81-1d75-42d2-8f1b-c296fdf231db" + "7c5db589-2cb1-4b77-b518-dea230e58a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1187" ], "x-ms-request-id": [ - "fa8ab0c3-9332-4b4e-b183-3f5b0ecd0a1b" + "4be2ef0d-7fb5-4340-ae11-7bf87006c6dc" ], "x-ms-correlation-request-id": [ - "fa8ab0c3-9332-4b4e-b183-3f5b0ecd0a1b" + "4be2ef0d-7fb5-4340-ae11-7bf87006c6dc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010454Z:fa8ab0c3-9332-4b4e-b183-3f5b0ecd0a1b" + "CENTRALUS:20151221T195149Z:4be2ef0d-7fb5-4340-ae11-7bf87006c6dc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "90bc792c-e722-45e4-aae9-a128f07f86b7" + "6e629754-08ef-4769-a308-a0188435d248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1186" ], "x-ms-request-id": [ - "11e33ba9-f8c4-48db-9ada-eefa0838b9ee" + "44994910-ef30-41ca-ad21-b4d3b8e32981" ], "x-ms-correlation-request-id": [ - "11e33ba9-f8c4-48db-9ada-eefa0838b9ee" + "44994910-ef30-41ca-ad21-b4d3b8e32981" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010458Z:11e33ba9-f8c4-48db-9ada-eefa0838b9ee" + "CENTRALUS:20151221T195153Z:44994910-ef30-41ca-ad21-b4d3b8e32981" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:57 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "165" + "127" ], "client-request-id": [ - "09fdcf73-861c-4c97-b0e2-78601869d2a3" + "40b96288-6a69-4da3-b8c8-2861e545e492" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "117b99fe-7373-47ed-8e0d-450a4dcfa23a" + "a683879d-f1a7-49d5-9257-5d23ab8eff3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "09fdcf73-861c-4c97-b0e2-78601869d2a3" + "40b96288-6a69-4da3-b8c8-2861e545e492" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1" ], "Date": [ - "Wed, 11 Nov 2015 01:04:55 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "ETag": [ - "0x8D2EA341C39D85D" + "0x8D30A4029AE1757" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1" @@ -401,47 +401,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "165" + "127" ], "client-request-id": [ - "15fcc8e3-33e2-4978-aded-c249b0b10934" + "f4921e78-e9ef-436b-8620-d1a3eae38d47" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "93c9f6c7-8176-43ba-afd9-e41012e84ef4" + "86da5a5c-94eb-4fce-97c5-e59fe465ccab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "15fcc8e3-33e2-4978-aded-c249b0b10934" + "f4921e78-e9ef-436b-8620-d1a3eae38d47" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2" ], "Date": [ - "Wed, 11 Nov 2015 01:04:55 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "ETag": [ - "0x8D2EA341C583AD6" + "0x8D30A4029D131C8" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2" @@ -465,47 +465,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "169" + "131" ], "client-request-id": [ - "01398c8a-5ae2-45c2-9e6e-0b68f36fddd4" + "39ddfa4a-1ca7-461c-a1fe-ed015748fdb6" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:54 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dfbcf01d-6d7e-4ede-ab6e-6ce6da7bc4c5" + "6dbeaa34-d4d9-4de7-8068-9c514dd7e0c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "01398c8a-5ae2-45c2-9e6e-0b68f36fddd4" + "39ddfa4a-1ca7-461c-a1fe-ed015748fdb6" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId" ], "Date": [ - "Wed, 11 Nov 2015 01:04:55 GMT" + "Mon, 21 Dec 2015 19:51:49 GMT" ], "ETag": [ - "0x8D2EA341C75E94D" + "0x8D30A402A2E0B6F" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8383e8ce-cfb8-4c0f-be42-70141b75d64a" + "19aa1387-b06f-4e87-beb9-f32a5bb95f30" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:58 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1\",\r\n \"eTag\": \"0x8D2EA341C39D85D\",\r\n \"lastModified\": \"2015-11-11T01:04:54.5413213Z\",\r\n \"creationTime\": \"2015-11-11T01:04:54.5413213Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:04:54.5413213Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1:job-1\",\r\n \"id\": \"testId1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2\",\r\n \"eTag\": \"0x8D2EA341C583AD6\",\r\n \"lastModified\": \"2015-11-11T01:04:54.7404502Z\",\r\n \"creationTime\": \"2015-11-11T01:04:54.7404502Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:04:54.7404502Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2:job-1\",\r\n \"id\": \"testId2:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId\",\r\n \"eTag\": \"0x8D2EA341C75E94D\",\r\n \"lastModified\": \"2015-11-11T01:04:54.9349709Z\",\r\n \"creationTime\": \"2015-11-11T01:04:54.9349709Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:04:54.9349709Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId:job-1\",\r\n \"id\": \"thirdtestId:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1\",\r\n \"eTag\": \"0x8D30A4029AE1757\",\r\n \"lastModified\": \"2015-12-21T19:51:48.2831703Z\",\r\n \"creationTime\": \"2015-12-21T19:51:48.2831703Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:51:48.2831703Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1:job-1\",\r\n \"id\": \"testId1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2\",\r\n \"eTag\": \"0x8D30A4029D131C8\",\r\n \"lastModified\": \"2015-12-21T19:51:48.5132232Z\",\r\n \"creationTime\": \"2015-12-21T19:51:48.5132232Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:51:48.5132232Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2:job-1\",\r\n \"id\": \"testId2:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId\",\r\n \"eTag\": \"0x8D30A402A2E0B6F\",\r\n \"lastModified\": \"2015-12-21T19:51:49.1217263Z\",\r\n \"creationTime\": \"2015-12-21T19:51:49.1217263Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:51:49.1217263Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId:job-1\",\r\n \"id\": \"thirdtestId:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "da4b88db-1267-4edb-bb3c-6f185077f00e" + "203e0bb1-87d3-4124-8251-800b97116c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8383e8ce-cfb8-4c0f-be42-70141b75d64a" + "19aa1387-b06f-4e87-beb9-f32a5bb95f30" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:59 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testId1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testId1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3213436a-8a75-4977-baf9-af170507962c" + "040810b4-504e-4048-8157-24f47baed65c" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:58 GMT" + "Mon, 21 Dec 2015 19:51:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "d44ed126-1f75-427d-925c-329f86b6a250" + "4c47a1ea-e88a-44f3-af03-4bcd3623a9e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3213436a-8a75-4977-baf9-af170507962c" + "040810b4-504e-4048-8157-24f47baed65c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:59 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testId2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testId2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ce1def88-ebac-4d4a-be5b-2496b139ddbd" + "151db0ce-9a7a-4931-a207-050dfce876aa" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:58 GMT" + "Mon, 21 Dec 2015 19:51:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "e15d166e-e773-4fc7-8956-2bccdcd4a087" + "949d156b-ff97-4202-889b-a060a42bab2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ce1def88-ebac-4d4a-be5b-2496b139ddbd" + "151db0ce-9a7a-4931-a207-050dfce876aa" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:59 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/thirdtestId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90aGlyZHRlc3RJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/thirdtestId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90aGlyZHRlc3RJZD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bcc05cc8-c5e4-429e-a84f-bc4be0fba160" + "4d79fe9c-9a25-491d-96f0-123cdcdcef7f" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:58 GMT" + "Mon, 21 Dec 2015 19:51:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "784a5a8e-d2db-434a-937c-463a44e99786" + "78e1add0-44df-4021-a558-d5b5d59015d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bcc05cc8-c5e4-429e-a84f-bc4be0fba160" + "4d79fe9c-9a25-491d-96f0-123cdcdcef7f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:59 GMT" + "Mon, 21 Dec 2015 19:51:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesByFilter.json index 64988caa4626..3869d6daa489 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14986" ], "x-ms-request-id": [ - "7d45fa40-139f-4698-90d1-c0a3f3e794e5" + "fe39181d-71e7-4bb4-8e1a-7f3bc1120437" ], "x-ms-correlation-request-id": [ - "7d45fa40-139f-4698-90d1-c0a3f3e794e5" + "fe39181d-71e7-4bb4-8e1a-7f3bc1120437" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010409Z:7d45fa40-139f-4698-90d1-c0a3f3e794e5" + "CENTRALUS:20151221T195509Z:fe39181d-71e7-4bb4-8e1a-7f3bc1120437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:09 GMT" + "Mon, 21 Dec 2015 19:55:09 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14985" ], "x-ms-request-id": [ - "387dc0c3-3899-4cdc-88e2-aa1d8d436f06" + "56edebe1-0f0a-4174-8d58-539d50c7d326" ], "x-ms-correlation-request-id": [ - "387dc0c3-3899-4cdc-88e2-aa1d8d436f06" + "56edebe1-0f0a-4174-8d58-539d50c7d326" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010414Z:387dc0c3-3899-4cdc-88e2-aa1d8d436f06" + "CENTRALUS:20151221T195513Z:56edebe1-0f0a-4174-8d58-539d50c7d326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:14 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:12 GMT" + "Mon, 21 Dec 2015 19:55:08 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c157a021-c23b-49db-93a5-66410694da21" + "58bc0139-c460-493e-9830-46fa57dc674e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14963" ], "x-ms-request-id": [ - "8e675c11-d60e-4b44-8252-8371f6540ee3" + "30045f09-a8a0-450e-a02e-80c5e4a70788" ], "x-ms-correlation-request-id": [ - "8e675c11-d60e-4b44-8252-8371f6540ee3" + "30045f09-a8a0-450e-a02e-80c5e4a70788" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010411Z:8e675c11-d60e-4b44-8252-8371f6540ee3" + "CENTRALUS:20151221T195510Z:30045f09-a8a0-450e-a02e-80c5e4a70788" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:10 GMT" + "Mon, 21 Dec 2015 19:55:09 GMT" ], "ETag": [ - "0x8D2EA3402E74934" + "0x8D30A40A0CC6BAC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:15 GMT" + "Mon, 21 Dec 2015 19:55:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "17cb1e79-3b62-4fcf-980a-994f9781c38b" + "dca5548e-0fb1-4273-a8ad-2da1c1f669eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14962" ], "x-ms-request-id": [ - "4fb4a624-dd8b-4dd6-9a92-1037a35689bd" + "90fcff19-6681-4d57-974c-a11c12884307" ], "x-ms-correlation-request-id": [ - "4fb4a624-dd8b-4dd6-9a92-1037a35689bd" + "90fcff19-6681-4d57-974c-a11c12884307" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010414Z:4fb4a624-dd8b-4dd6-9a92-1037a35689bd" + "CENTRALUS:20151221T195513Z:90fcff19-6681-4d57-974c-a11c12884307" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:14 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ], "ETag": [ - "0x8D2EA3405381376" + "0x8D30A40A309EDE3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "20a0b514-7861-4ae6-93bb-fc0cfe5f80ca" + "5ccc5aa4-b9c1-41d5-af47-025ba12d2eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1182" ], "x-ms-request-id": [ - "e8aa9afc-b6ee-4d10-9962-3036e20a8222" + "d7f52a6c-6169-442c-b2ed-c182cf9781b3" ], "x-ms-correlation-request-id": [ - "e8aa9afc-b6ee-4d10-9962-3036e20a8222" + "d7f52a6c-6169-442c-b2ed-c182cf9781b3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010411Z:e8aa9afc-b6ee-4d10-9962-3036e20a8222" + "CENTRALUS:20151221T195510Z:d7f52a6c-6169-442c-b2ed-c182cf9781b3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:10 GMT" + "Mon, 21 Dec 2015 19:55:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "d774c5d6-8a8a-4e00-991e-32783d87de2b" + "3ca97b55-fbc3-4a01-9903-eceee6845fe6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1181" ], "x-ms-request-id": [ - "268eb717-c4b2-4815-accb-a33df675e917" + "f09c9965-817d-429c-91b0-0cb59f6e9b09" ], "x-ms-correlation-request-id": [ - "268eb717-c4b2-4815-accb-a33df675e917" + "f09c9965-817d-429c-91b0-0cb59f6e9b09" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010415Z:268eb717-c4b2-4815-accb-a33df675e917" + "CENTRALUS:20151221T195514Z:f09c9965-817d-429c-91b0-0cb59f6e9b09" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:04:14 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "165" + "127" ], "client-request-id": [ - "8e5fef77-d816-4c05-a34b-e5f552913bb3" + "13d3696c-1151-4493-a3a7-4bd102b5a36d" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:11 GMT" + "Mon, 21 Dec 2015 19:55:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:11 GMT" + "Mon, 21 Dec 2015 19:55:08 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "72a01761-4adf-468a-a7c8-1667bc67588a" + "9893085a-249d-48be-a6d3-0518e0db6202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8e5fef77-d816-4c05-a34b-e5f552913bb3" + "13d3696c-1151-4493-a3a7-4bd102b5a36d" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1" ], "Date": [ - "Wed, 11 Nov 2015 01:04:12 GMT" + "Mon, 21 Dec 2015 19:55:09 GMT" ], "ETag": [ - "0x8D2EA34029B3E50" + "0x8D30A40A11CD97A" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1" @@ -401,47 +401,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "165" + "127" ], "client-request-id": [ - "527d83de-e70a-4ddb-a914-21dc508b273a" + "02aa8dc7-7887-47b8-9a11-612630049bdb" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:11 GMT" + "Mon, 21 Dec 2015 19:55:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:11 GMT" + "Mon, 21 Dec 2015 19:55:08 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0c93486e-81d9-4636-b7be-873ae798f9ec" + "9a2a8b88-95b1-4b58-8768-59d6f1ece982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "527d83de-e70a-4ddb-a914-21dc508b273a" + "02aa8dc7-7887-47b8-9a11-612630049bdb" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2" ], "Date": [ - "Wed, 11 Nov 2015 01:04:12 GMT" + "Mon, 21 Dec 2015 19:55:10 GMT" ], "ETag": [ - "0x8D2EA3402BAC38A" + "0x8D30A40A1427989" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2" @@ -465,47 +465,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "169" + "131" ], "client-request-id": [ - "af9fab9e-b9a5-48c1-85b6-b3fed3d54f98" + "dc1638e2-2699-4c81-a9f0-858813cf59b3" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:11 GMT" + "Mon, 21 Dec 2015 19:55:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:04:11 GMT" + "Mon, 21 Dec 2015 19:55:09 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "69ad02d6-2586-4e7b-bcb0-3af31226d353" + "3fe5f66f-2b7a-41a7-ae69-1d5d46caf7c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "af9fab9e-b9a5-48c1-85b6-b3fed3d54f98" + "dc1638e2-2699-4c81-a9f0-858813cf59b3" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId" ], "Date": [ - "Wed, 11 Nov 2015 01:04:12 GMT" + "Mon, 21 Dec 2015 19:55:10 GMT" ], "ETag": [ - "0x8D2EA3402D8C790" + "0x8D30A40A16916FA" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?$filter=startswith(id%2C'testId')&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhpZCUyQyUyN3Rlc3RJZCUyNyUyOSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?$filter=startswith(id%2C'testId')&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhpZCUyQyUyN3Rlc3RJZCUyNyUyOSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27e4798f-c97d-4b85-a7b5-9ffe2713f9f0" + "58d5273c-522d-4ae3-a02d-5c5a46017635" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:14 GMT" + "Mon, 21 Dec 2015 19:55:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1\",\r\n \"eTag\": \"0x8D2EA34029B3E50\",\r\n \"lastModified\": \"2015-11-11T01:04:11.5588688Z\",\r\n \"creationTime\": \"2015-11-11T01:04:11.5588688Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:04:11.5588688Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1:job-1\",\r\n \"id\": \"testId1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2\",\r\n \"eTag\": \"0x8D2EA3402BAC38A\",\r\n \"lastModified\": \"2015-11-11T01:04:11.765441Z\",\r\n \"creationTime\": \"2015-11-11T01:04:11.765441Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:04:11.765441Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2:job-1\",\r\n \"id\": \"testId2:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1\",\r\n \"eTag\": \"0x8D30A40A11CD97A\",\r\n \"lastModified\": \"2015-12-21T19:55:08.6579066Z\",\r\n \"creationTime\": \"2015-12-21T19:55:08.6579066Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:08.6579066Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1:job-1\",\r\n \"id\": \"testId1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2\",\r\n \"eTag\": \"0x8D30A40A1427989\",\r\n \"lastModified\": \"2015-12-21T19:55:08.9044873Z\",\r\n \"creationTime\": \"2015-12-21T19:55:08.9044873Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:55:08.9044873Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2:job-1\",\r\n \"id\": \"testId2:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "729fec78-d66f-4d30-9cc9-e72fe257d601" + "c263f5ee-52db-461a-a7a6-1f514743cef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27e4798f-c97d-4b85-a7b5-9ffe2713f9f0" + "58d5273c-522d-4ae3-a02d-5c5a46017635" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:16 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testId1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testId1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f6779472-7778-466d-bb6c-deab347d3ae1" + "a4e63e8c-3980-49c1-b4a1-5be0a4482d00" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:15 GMT" + "Mon, 21 Dec 2015 19:55:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "9a106f0a-3c4b-4842-b281-79f37d762a3f" + "c8c816c6-7074-476f-8062-8f85902f5517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f6779472-7778-466d-bb6c-deab347d3ae1" + "a4e63e8c-3980-49c1-b4a1-5be0a4482d00" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:16 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testId2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testId2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6931f0de-39b1-45a2-94ba-f80fe8397cf1" + "24c0ab62-df71-4565-b9c5-0037810493d0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:15 GMT" + "Mon, 21 Dec 2015 19:55:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "7882605d-1e7c-4c22-b92a-583c9dba5f4f" + "9f695503-f67f-45e1-87ef-46996851ac8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6931f0de-39b1-45a2-94ba-f80fe8397cf1" + "24c0ab62-df71-4565-b9c5-0037810493d0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:16 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/thirdtestId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90aGlyZHRlc3RJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/thirdtestId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90aGlyZHRlc3RJZD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cd7bc030-80c2-4116-806e-e629e7012464" + "28e8f3b0-34c1-491e-a4cb-6ed4038713d9" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:04:15 GMT" + "Mon, 21 Dec 2015 19:55:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "281e9fee-0ee5-42de-810c-e3f282f54c36" + "80bf52ab-3efd-4a7c-ac61-f7ff2746bc4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cd7bc030-80c2-4116-806e-e629e7012464" + "28e8f3b0-34c1-491e-a4cb-6ed4038713d9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:04:16 GMT" + "Mon, 21 Dec 2015 19:55:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesWithMaxCount.json index afc225e9c121..cd0074371f93 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestListJobSchedulesWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14979" ], "x-ms-request-id": [ - "19851595-1915-470e-88bd-b57d84da90f9" + "ba8428bd-2ce6-409e-8396-5f318d046051" ], "x-ms-correlation-request-id": [ - "19851595-1915-470e-88bd-b57d84da90f9" + "ba8428bd-2ce6-409e-8396-5f318d046051" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010903Z:19851595-1915-470e-88bd-b57d84da90f9" + "CENTRALUS:20151221T195712Z:ba8428bd-2ce6-409e-8396-5f318d046051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:03 GMT" + "Mon, 21 Dec 2015 19:57:11 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14978" ], "x-ms-request-id": [ - "9bedcf4a-1bea-4be8-8414-b7a248f1b760" + "d0d7309d-5632-45a5-92a7-fd88d8e59afe" ], "x-ms-correlation-request-id": [ - "9bedcf4a-1bea-4be8-8414-b7a248f1b760" + "d0d7309d-5632-45a5-92a7-fd88d8e59afe" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010908Z:9bedcf4a-1bea-4be8-8414-b7a248f1b760" + "CENTRALUS:20151221T195717Z:d0d7309d-5632-45a5-92a7-fd88d8e59afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:08 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:04 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b1a38c38-2a05-4156-a524-4a890c2d7edf" + "29a30f64-b4ce-4862-8587-95bac07f82f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14993" ], "x-ms-request-id": [ - "d12ea5aa-3ef4-4841-bfde-ed01c37048e8" + "255dd737-a7f3-4397-9f86-6cfaa506d67f" ], "x-ms-correlation-request-id": [ - "d12ea5aa-3ef4-4841-bfde-ed01c37048e8" + "255dd737-a7f3-4397-9f86-6cfaa506d67f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010904Z:d12ea5aa-3ef4-4841-bfde-ed01c37048e8" + "CENTRALUS:20151221T195713Z:255dd737-a7f3-4397-9f86-6cfaa506d67f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:04 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "ETag": [ - "0x8D2EA34B1810AF9" + "0x8D30A40EACFFADE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:09 GMT" + "Mon, 21 Dec 2015 19:57:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "aa6f7190-25e2-4d0a-8dc6-ea19065c3f6d" + "f5addb20-0bd5-452f-b8b9-88bf395a3123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14992" ], "x-ms-request-id": [ - "d3612d1b-1c8e-4ee6-8c35-75268221d142" + "182a6ad1-aff2-45ec-bb73-10792d7b5d86" ], "x-ms-correlation-request-id": [ - "d3612d1b-1c8e-4ee6-8c35-75268221d142" + "182a6ad1-aff2-45ec-bb73-10792d7b5d86" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010908Z:d3612d1b-1c8e-4ee6-8c35-75268221d142" + "CENTRALUS:20151221T195717Z:182a6ad1-aff2-45ec-bb73-10792d7b5d86" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:08 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ], "ETag": [ - "0x8D2EA34B3E6F5D5" + "0x8D30A40ECF42028" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "020b866f-3d2c-4a82-8a28-08053265f4ac" + "79a825c4-8d2c-417c-86a4-189480688135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-request-id": [ - "90b72f30-f18a-46aa-86d6-747eff2bf162" + "63a6488d-cce4-4ad1-89b3-b5b6387f9bde" ], "x-ms-correlation-request-id": [ - "90b72f30-f18a-46aa-86d6-747eff2bf162" + "63a6488d-cce4-4ad1-89b3-b5b6387f9bde" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010904Z:90b72f30-f18a-46aa-86d6-747eff2bf162" + "CENTRALUS:20151221T195713Z:63a6488d-cce4-4ad1-89b3-b5b6387f9bde" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:04 GMT" + "Mon, 21 Dec 2015 19:57:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "71297b68-6cb7-47f6-8422-9e1dd937bf34" + "ac9907be-3f8c-47d4-94f1-0a27f7a2ad63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-request-id": [ - "3ff3faa3-36fb-45c7-ac90-a2b60cda02ce" + "013449d0-bc48-4fe0-94f7-877b65aa31c5" ], "x-ms-correlation-request-id": [ - "3ff3faa3-36fb-45c7-ac90-a2b60cda02ce" + "013449d0-bc48-4fe0-94f7-877b65aa31c5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010908Z:3ff3faa3-36fb-45c7-ac90-a2b60cda02ce" + "CENTRALUS:20151221T195717Z:013449d0-bc48-4fe0-94f7-877b65aa31c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:08 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "165" + "127" ], "client-request-id": [ - "0e78b1a1-0073-4beb-935d-21e6e260eb93" + "7b6067b9-0f16-475f-8b0f-4a1178ff76b4" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:04 GMT" + "Mon, 21 Dec 2015 19:57:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:05 GMT" + "Mon, 21 Dec 2015 19:57:11 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "22fdcf10-7584-48e3-9ca3-419629c7973c" + "96a2e662-4941-4bca-80f5-0924ab9ca7fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0e78b1a1-0073-4beb-935d-21e6e260eb93" + "7b6067b9-0f16-475f-8b0f-4a1178ff76b4" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1" ], "Date": [ - "Wed, 11 Nov 2015 01:09:05 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "ETag": [ - "0x8D2EA34B1874AD4" + "0x8D30A40EA9F6244" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1" @@ -401,47 +401,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "165" + "127" ], "client-request-id": [ - "d546bc8f-4436-491c-84c1-f8d429f55b0d" + "65985ccd-006f-4762-ab14-b5bf62ba394f" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:05 GMT" + "Mon, 21 Dec 2015 19:57:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:05 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "986f5b22-49f5-4315-9f03-807e3520cc69" + "2db9b0e5-4542-41ae-b4d5-23b0810f0941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d546bc8f-4436-491c-84c1-f8d429f55b0d" + "65985ccd-006f-4762-ab14-b5bf62ba394f" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2" ], "Date": [ - "Wed, 11 Nov 2015 01:09:06 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "ETag": [ - "0x8D2EA34B1AEF0EE" + "0x8D30A40EABDCE9B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2" @@ -465,47 +465,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "169" + "131" ], "client-request-id": [ - "0c80a357-4793-4c6f-b4f0-ea65c16320fa" + "3739ddd3-a8b4-4e66-8df2-34200370cdd8" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:05 GMT" + "Mon, 21 Dec 2015 19:57:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:05 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "508dbce4-d93a-40eb-b8d3-dce9e991ca6c" + "127abcec-5b9d-4fd0-9747-fdce12b8064d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c80a357-4793-4c6f-b4f0-ea65c16320fa" + "3739ddd3-a8b4-4e66-8df2-34200370cdd8" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId" ], "Date": [ - "Wed, 11 Nov 2015 01:09:06 GMT" + "Mon, 21 Dec 2015 19:57:12 GMT" ], "ETag": [ - "0x8D2EA34B1D181FB" + "0x8D30A40EADD3674" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "faf6a0d6-f5ea-4d74-9a03-5d236041f0b9" + "3becbca1-0401-44e3-8656-2acb416bfed2" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:08 GMT" + "Mon, 21 Dec 2015 19:57:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1\",\r\n \"eTag\": \"0x8D2EA34B1874AD4\",\r\n \"lastModified\": \"2015-11-11T01:09:05.0293972Z\",\r\n \"creationTime\": \"2015-11-11T01:09:05.0293972Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:09:05.0293972Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1:job-1\",\r\n \"id\": \"testId1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2\",\r\n \"eTag\": \"0x8D2EA34B1AEF0EE\",\r\n \"lastModified\": \"2015-11-11T01:09:05.2892398Z\",\r\n \"creationTime\": \"2015-11-11T01:09:05.2892398Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:09:05.2892398Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2:job-1\",\r\n \"id\": \"testId2:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId\",\r\n \"eTag\": \"0x8D2EA34B1D181FB\",\r\n \"lastModified\": \"2015-11-11T01:09:05.5157755Z\",\r\n \"creationTime\": \"2015-11-11T01:09:05.5157755Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:09:05.5157755Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId:job-1\",\r\n \"id\": \"thirdtestId:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId1\",\r\n \"eTag\": \"0x8D30A40EA9F6244\",\r\n \"lastModified\": \"2015-12-21T19:57:11.9870532Z\",\r\n \"creationTime\": \"2015-12-21T19:57:11.9870532Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:57:11.9870532Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1:job-1\",\r\n \"id\": \"testId1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testId2\",\r\n \"eTag\": \"0x8D30A40EABDCE9B\",\r\n \"lastModified\": \"2015-12-21T19:57:12.1864347Z\",\r\n \"creationTime\": \"2015-12-21T19:57:12.1864347Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:57:12.1864347Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2:job-1\",\r\n \"id\": \"testId2:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/thirdtestId\",\r\n \"eTag\": \"0x8D30A40EADD3674\",\r\n \"lastModified\": \"2015-12-21T19:57:12.3922548Z\",\r\n \"creationTime\": \"2015-12-21T19:57:12.3922548Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:57:12.3922548Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId:job-1\",\r\n \"id\": \"thirdtestId:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "3b0f0d9f-9a88-4e54-a35e-60d2cca4efa5" + "4d660238-8203-495e-895f-7744862a5649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "faf6a0d6-f5ea-4d74-9a03-5d236041f0b9" + "3becbca1-0401-44e3-8656-2acb416bfed2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:09:09 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testId1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testId1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5afa714b-45a5-4615-af5d-47594ea94137" + "fefbc01a-2454-461e-b42f-46c2e240cac7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:08 GMT" + "Mon, 21 Dec 2015 19:57:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "7a328370-ffee-4edb-beb6-faf2947db379" + "0bd684df-529f-41eb-9b5a-ce82813c920b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5afa714b-45a5-4615-af5d-47594ea94137" + "fefbc01a-2454-461e-b42f-46c2e240cac7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:09:10 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testId2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/testId2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0SWQyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5808d1f0-ce2b-4afb-b442-3e5bb122c58b" + "9cb227ad-99ce-4c14-b331-22b6c85ae5f0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:09 GMT" + "Mon, 21 Dec 2015 19:57:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "c37ec4c8-6020-495f-aef0-802f8a482c72" + "5b3d4313-0ce6-4023-97c8-59ac88dd5163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5808d1f0-ce2b-4afb-b442-3e5bb122c58b" + "9cb227ad-99ce-4c14-b331-22b6c85ae5f0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:09:10 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/thirdtestId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90aGlyZHRlc3RJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/thirdtestId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90aGlyZHRlc3RJZD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ea229617-51db-47e6-b008-df556af55c3c" + "ce258b4c-32b6-471c-aa4d-125b4949b3e7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:09 GMT" + "Mon, 21 Dec 2015 19:57:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "b80f04e3-90cf-431a-8c8b-505f97a0ce56" + "202bef18-b719-404d-9229-6a060e17fcd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ea229617-51db-47e6-b008-df556af55c3c" + "ce258b4c-32b6-471c-aa4d-125b4949b3e7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:09:10 GMT" + "Mon, 21 Dec 2015 19:57:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestNewJobSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestNewJobSchedule.json index 4290b8ca85e8..1dfb30efd04f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestNewJobSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestNewJobSchedule.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14987" ], "x-ms-request-id": [ - "6d2778fa-bba5-43f9-ade1-e53d16c6f580" + "4df09b33-6297-4d43-b28d-0282a3ba132e" ], "x-ms-correlation-request-id": [ - "6d2778fa-bba5-43f9-ade1-e53d16c6f580" + "4df09b33-6297-4d43-b28d-0282a3ba132e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010617Z:6d2778fa-bba5-43f9-ade1-e53d16c6f580" + "CENTRALUS:20151221T195313Z:4df09b33-6297-4d43-b28d-0282a3ba132e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:06:17 GMT" + "Mon, 21 Dec 2015 19:53:12 GMT" ] }, "StatusCode": 200 @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e499ef11-d640-4a01-ab29-3c400a8cab91" + "1f3637b8-4b0d-44d0-b321-d36de96b36b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14966" ], "x-ms-request-id": [ - "71a14b28-c5c3-4b65-b498-cde7122b8399" + "7f63286a-2145-41d9-a382-0b2534c8f860" ], "x-ms-correlation-request-id": [ - "71a14b28-c5c3-4b65-b498-cde7122b8399" + "7f63286a-2145-41d9-a382-0b2534c8f860" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010619Z:71a14b28-c5c3-4b65-b498-cde7122b8399" + "CENTRALUS:20151221T195313Z:7f63286a-2145-41d9-a382-0b2534c8f860" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:06:18 GMT" + "Mon, 21 Dec 2015 19:53:13 GMT" ], "ETag": [ - "0x8D2EA344EDC7F86" + "0x8D30A405B6B2B6D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "aa7e209a-6bd5-4c72-bc34-de8c98052b9b" + "b560a467-5e72-419c-97f8-5e1561a88d5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1183" ], "x-ms-request-id": [ - "a9f92c2b-7803-4e67-8d40-a96ffb60a4fe" + "ff3ad3e8-a70c-451e-9272-6c6b2c902802" ], "x-ms-correlation-request-id": [ - "a9f92c2b-7803-4e67-8d40-a96ffb60a4fe" + "ff3ad3e8-a70c-451e-9272-6c6b2c902802" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010619Z:a9f92c2b-7803-4e67-8d40-a96ffb60a4fe" + "CENTRALUS:20151221T195314Z:ff3ad3e8-a70c-451e-9272-6c6b2c902802" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:06:18 GMT" + "Mon, 21 Dec 2015 19:53:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,47 +169,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"simple\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"simple\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "164" + "126" ], "client-request-id": [ - "572a9a9f-9aa0-4021-9c0c-8379ae360ea9" + "f5e42db8-afee-481d-b7a6-32df4bab7bf3" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "74b94bb7-66a5-4399-a893-eef53c5bd157" + "3a67316c-217c-4f22-a81f-866523a4ee63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "572a9a9f-9aa0-4021-9c0c-8379ae360ea9" + "f5e42db8-afee-481d-b7a6-32df4bab7bf3" ], "DataServiceVersion": [ "3.0" @@ -218,10 +218,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/simple" ], "Date": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "ETag": [ - "0x8D2EA344F063381" + "0x8D30A405BD827AC" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/simple" @@ -233,8 +233,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"schedule\": {\r\n \"startWindow\": \"P1D\",\r\n \"recurrenceInterval\": \"P2D\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 1,\r\n \"displayName\": \"jobSpecDisplayName\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\"\r\n },\r\n \"killJobOnCompletion\": false,\r\n \"runElevated\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonName1\",\r\n \"value\": \"commonValue1\"\r\n },\r\n {\r\n \"name\": \"commonName2\",\r\n \"value\": \"commonValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"jobschedule\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 3,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\"\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789ABCDEF\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"localmachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"specMeta1\",\r\n \"value\": \"specMetaValue1\"\r\n },\r\n {\r\n \"name\": \"specMeta2\",\r\n \"value\": \"specMetaValue2\"\r\n }\r\n ]\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -245,35 +245,35 @@ "3384" ], "client-request-id": [ - "d1c1aa8a-47bd-42be-899d-fcf2432b3ed4" + "3cb2916b-85ca-4e5e-afa2-f5f0a8cebfe0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "174828a2-de7a-4f4d-994d-be0f4ae7aa15" + "528bf1c9-545e-412c-812a-11170a7dbcc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d1c1aa8a-47bd-42be-899d-fcf2432b3ed4" + "3cb2916b-85ca-4e5e-afa2-f5f0a8cebfe0" ], "DataServiceVersion": [ "3.0" @@ -282,10 +282,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/complex" ], "Date": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "ETag": [ - "0x8D2EA344F460560" + "0x8D30A405C0A9D12" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/complex" @@ -297,53 +297,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b1a1cfbd-c223-4df6-a0c3-74ffe81066cf" + "ec1e0aea-1a92-4e25-942d-08db99a9451e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/simple\",\r\n \"eTag\": \"0x8D2EA344F063381\",\r\n \"lastModified\": \"2015-11-11T01:06:19.7666689Z\",\r\n \"creationTime\": \"2015-11-11T01:06:19.7666689Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:06:19.7666689Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/simple:job-1\",\r\n \"id\": \"simple:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/simple\",\r\n \"eTag\": \"0x8D30A405BD827AC\",\r\n \"lastModified\": \"2015-12-21T19:53:12.4449196Z\",\r\n \"creationTime\": \"2015-12-21T19:53:12.4449196Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:53:12.4449196Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/simple:job-1\",\r\n \"id\": \"simple:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "237bb73e-bd23-4eb1-b6eb-fe8aac5b1e63" + "e4df8312-402d-4084-9788-2ada752ca0ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b1a1cfbd-c223-4df6-a0c3-74ffe81066cf" + "ec1e0aea-1a92-4e25-942d-08db99a9451e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:06:19 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "ETag": [ - "0x8D2EA344F063381" + "0x8D30A405BD827AC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,53 +352,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4bb2a00e-80c0-4f70-abac-0806809ebba4" + "9e99cd00-edb9-4288-b5a8-a7d0fa419f39" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/complex\",\r\n \"eTag\": \"0x8D2EA344F460560\",\r\n \"lastModified\": \"2015-11-11T01:06:20.1849184Z\",\r\n \"creationTime\": \"2015-11-11T01:06:20.1849184Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:06:20.1849184Z\",\r\n \"schedule\": {\r\n \"startWindow\": \"P1D\",\r\n \"recurrenceInterval\": \"P2D\"\r\n },\r\n \"jobSpecification\": {\r\n \"displayName\": \"jobSpecDisplayName\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false,\r\n \"waitForSuccess\": true,\r\n \"rerunOnNodeRebootAfterSuccess\": true\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"maxWallClockTime\": \"PT15M\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonName1\",\r\n \"value\": \"commonValue1\"\r\n },\r\n {\r\n \"name\": \"commonName2\",\r\n \"value\": \"commonValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"jobschedule\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"specMeta1\",\r\n \"value\": \"specMetaValue1\"\r\n },\r\n {\r\n \"name\": \"specMeta2\",\r\n \"value\": \"specMetaValue2\"\r\n }\r\n ]\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-13T01:06:20.1849184Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/complex:job-1\",\r\n \"id\": \"complex:job-1\"\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/complex\",\r\n \"eTag\": \"0x8D30A405C0A9D12\",\r\n \"lastModified\": \"2015-12-21T19:53:12.775605Z\",\r\n \"creationTime\": \"2015-12-21T19:53:12.775605Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:53:12.775605Z\",\r\n \"schedule\": {\r\n \"startWindow\": \"P1D\",\r\n \"recurrenceInterval\": \"P2D\"\r\n },\r\n \"jobSpecification\": {\r\n \"displayName\": \"jobSpecDisplayName\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false,\r\n \"waitForSuccess\": true,\r\n \"rerunOnNodeRebootAfterSuccess\": true\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"maxWallClockTime\": \"PT15M\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonName1\",\r\n \"value\": \"commonValue1\"\r\n },\r\n {\r\n \"name\": \"commonName2\",\r\n \"value\": \"commonValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"jobschedule\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"specMeta1\",\r\n \"value\": \"specMetaValue1\"\r\n },\r\n {\r\n \"name\": \"specMeta2\",\r\n \"value\": \"specMetaValue2\"\r\n }\r\n ]\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:53:12.775605Z\"\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bb5c3f06-d104-4758-b070-a564b4bb145f" + "b2644439-23fc-4667-bfbc-156820909f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4bb2a00e-80c0-4f70-abac-0806809ebba4" + "9e99cd00-edb9-4288-b5a8-a7d0fa419f39" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "ETag": [ - "0x8D2EA344F460560" + "0x8D30A405C0A9D12" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -407,22 +407,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "275a5239-3667-43e4-8900-9611629f5583" + "1df92217-25c0-4fe1-a681-f02742a2546d" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -432,19 +432,19 @@ "chunked" ], "request-id": [ - "dbd72436-0403-4848-b694-e3bff0748938" + "6ebd8fd2-d16a-4bd4-ad78-6b5b84d55b39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "275a5239-3667-43e4-8900-9611629f5583" + "1df92217-25c0-4fe1-a681-f02742a2546d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,22 +453,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobschedules/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a9d77599-021e-4944-bd1f-25c79a75a005" + "872a7bbc-eed6-4c93-9fd9-7257f6479b4f" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:06:20 GMT" + "Mon, 21 Dec 2015 19:53:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -478,19 +478,19 @@ "chunked" ], "request-id": [ - "37d51c7e-1418-4bc4-bae8-32c52d00b9a0" + "a90d37e6-fc7a-42ea-9f46-2b858387195b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a9d77599-021e-4944-bd1f-25c79a75a005" + "872a7bbc-eed6-4c93-9fd9-7257f6479b4f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:06:22 GMT" + "Mon, 21 Dec 2015 19:53:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json index 1189d0a65640..20d763b55f31 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14965" ], "x-ms-request-id": [ - "48573a3b-3ab9-4da6-a0ed-41f330c8ae74" + "a00a6067-4cb3-4738-a2ad-f43db2dd6bfc" ], "x-ms-correlation-request-id": [ - "48573a3b-3ab9-4da6-a0ed-41f330c8ae74" + "a00a6067-4cb3-4738-a2ad-f43db2dd6bfc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010942Z:48573a3b-3ab9-4da6-a0ed-41f330c8ae74" + "CENTRALUS:20151221T195429Z:a00a6067-4cb3-4738-a2ad-f43db2dd6bfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:42 GMT" + "Mon, 21 Dec 2015 19:54:28 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14964" ], "x-ms-request-id": [ - "324881f9-9f96-40a2-90b5-72feaafb6e9e" + "0db8b76d-142c-461a-94aa-c043a967449f" ], "x-ms-correlation-request-id": [ - "324881f9-9f96-40a2-90b5-72feaafb6e9e" + "0db8b76d-142c-461a-94aa-c043a967449f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010948Z:324881f9-9f96-40a2-90b5-72feaafb6e9e" + "CENTRALUS:20151221T195433Z:0db8b76d-142c-461a-94aa-c043a967449f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:33 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:44 GMT" + "Mon, 21 Dec 2015 19:54:27 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0bce9c1f-0cff-467e-8fd7-4e59bca77cd9" + "4a8597dd-1b28-4b86-9f0b-51f731a0206a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14981" ], "x-ms-request-id": [ - "ec1ee13e-3782-4c46-ac5d-104f0c6fe25d" + "3f0ae16d-c0eb-4db7-8441-f2148ec60e3a" ], "x-ms-correlation-request-id": [ - "ec1ee13e-3782-4c46-ac5d-104f0c6fe25d" + "3f0ae16d-c0eb-4db7-8441-f2148ec60e3a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010944Z:ec1ee13e-3782-4c46-ac5d-104f0c6fe25d" + "CENTRALUS:20151221T195430Z:3f0ae16d-c0eb-4db7-8441-f2148ec60e3a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:43 GMT" + "Mon, 21 Dec 2015 19:54:29 GMT" ], "ETag": [ - "0x8D2EA34C906957C" + "0x8D30A4088DFEA6B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4b009cac-d975-4f2d-af7e-2f40ddb31060" + "91a233cd-ae24-48dc-9f9e-a4679c66dbbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-request-id": [ - "c1de7eb8-0f3d-452e-bceb-a69950617f19" + "c6be763d-564d-4371-b4df-ece93d9ed47c" ], "x-ms-correlation-request-id": [ - "c1de7eb8-0f3d-452e-bceb-a69950617f19" + "c6be763d-564d-4371-b4df-ece93d9ed47c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010948Z:c1de7eb8-0f3d-452e-bceb-a69950617f19" + "CENTRALUS:20151221T195433Z:c6be763d-564d-4371-b4df-ece93d9ed47c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:32 GMT" ], "ETag": [ - "0x8D2EA34CB9FACCB" + "0x8D30A408AC5FB8B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "7032db2a-f300-4153-97fd-d7f3073e8f68" + "4e68c360-fbb8-45d2-922d-c1f52495d810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1189" ], "x-ms-request-id": [ - "2212585f-cddc-4a7e-9ef6-84d625445704" + "76d4497e-d308-4c42-97a8-036182673102" ], "x-ms-correlation-request-id": [ - "2212585f-cddc-4a7e-9ef6-84d625445704" + "76d4497e-d308-4c42-97a8-036182673102" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010944Z:2212585f-cddc-4a7e-9ef6-84d625445704" + "CENTRALUS:20151221T195430Z:76d4497e-d308-4c42-97a8-036182673102" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:44 GMT" + "Mon, 21 Dec 2015 19:54:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "5936f9f1-6463-4b1e-9d76-97ef84492c18" + "a29ef0d3-c7f8-4b1d-b591-9da71a59cc46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1188" ], "x-ms-request-id": [ - "adabbc1e-9f57-4791-a8cc-10cc54f5f64c" + "20adc78e-2c3a-4d7a-a520-84ba7d0a06cc" ], "x-ms-correlation-request-id": [ - "adabbc1e-9f57-4791-a8cc-10cc54f5f64c" + "20adc78e-2c3a-4d7a-a520-84ba7d0a06cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010948Z:adabbc1e-9f57-4791-a8cc-10cc54f5f64c" + "CENTRALUS:20151221T195433Z:20adc78e-2c3a-4d7a-a520-84ba7d0a06cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "184" + "146" ], "client-request-id": [ - "206cb637-d693-4e8f-be83-a924f7cf5f05" + "a840d023-8e27-4678-a1c8-034a37f0fe9f" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:44 GMT" + "Mon, 21 Dec 2015 19:54:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:45 GMT" + "Mon, 21 Dec 2015 19:54:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "772a8270-6a30-4af8-b53b-5ea98dc1cdd0" + "e2d28a20-46a1-46eb-b9d6-7cf86094e6f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "206cb637-d693-4e8f-be83-a924f7cf5f05" + "a840d023-8e27-4678-a1c8-034a37f0fe9f" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId" ], "Date": [ - "Wed, 11 Nov 2015 01:09:46 GMT" + "Mon, 21 Dec 2015 19:54:31 GMT" ], "ETag": [ - "0x8D2EA34C97C1F45" + "0x8D30A408934B4CF" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId" @@ -401,41 +401,41 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testTerminateJobScheduleId?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testTerminateJobScheduleId?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5f3cab8e-689d-4d89-a48d-3d4068698ca7" + "6bb85d21-e22f-4dee-8026-03d1102d9365" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "026ff66c-bd2a-405c-8190-b664820ec3ec" + "8dc77e7b-5d0b-4907-89c5-148679152b26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5f3cab8e-689d-4d89-a48d-3d4068698ca7" + "6bb85d21-e22f-4dee-8026-03d1102d9365" ], "DataServiceVersion": [ "3.0" @@ -444,10 +444,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId" ], "Date": [ - "Wed, 11 Nov 2015 01:09:49 GMT" + "Mon, 21 Dec 2015 19:54:32 GMT" ], "ETag": [ - "0x8D2EA34CB994AC0" + "0x8D30A408B193A2C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ee188375-9dbf-4ae7-8365-9ecddafc5404" + "0a5fbbdb-5193-4521-a8db-34cc343e694e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId\",\r\n \"eTag\": \"0x8D2EA34CB994AC0\",\r\n \"lastModified\": \"2015-11-11T01:09:48.7681216Z\",\r\n \"creationTime\": \"2015-11-11T01:09:45.2215109Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-11-11T01:09:48.7681216Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:09:45.2215109Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobScheduleId:job-1\",\r\n \"id\": \"testTerminateJobScheduleId:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId\",\r\n \"eTag\": \"0x8D30A408B193A2C\",\r\n \"lastModified\": \"2015-12-21T19:54:31.7242924Z\",\r\n \"creationTime\": \"2015-12-21T19:54:28.5489359Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-12-21T19:54:31.7242924Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:54:28.5489359Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobScheduleId:job-1\",\r\n \"id\": \"testTerminateJobScheduleId:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8eca7c05-33c3-4201-8ad9-c0eb51cabe2f" + "d57a1fe7-7e28-4680-b077-76fb08a870f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ee188375-9dbf-4ae7-8365-9ecddafc5404" + "0a5fbbdb-5193-4521-a8db-34cc343e694e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:09:49 GMT" + "Mon, 21 Dec 2015 19:54:32 GMT" ], "ETag": [ - "0x8D2EA34CB994AC0" + "0x8D30A408B193A2C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,22 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2e146960-cbd8-4b4f-b282-85f931976bdd" + "e0256a7f-e0f9-4de7-a95e-9b3cdcbb2842" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:09:48 GMT" + "Mon, 21 Dec 2015 19:54:33 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -536,19 +536,19 @@ "chunked" ], "request-id": [ - "13ed57ab-21ae-461e-b495-b0843eafdf8b" + "b8ce5032-757f-4f0e-afeb-ad063c4a2a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2e146960-cbd8-4b4f-b282-85f931976bdd" + "e0256a7f-e0f9-4de7-a95e-9b3cdcbb2842" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:09:50 GMT" + "Mon, 21 Dec 2015 19:54:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json index 5f439a5cbce5..e93877ddb272 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14928" ], "x-ms-request-id": [ - "a6d80b5c-b25a-43fa-bf60-6370fe13a0ec" + "61a93b2c-4c02-4d7e-acd2-781a98dcf76b" ], "x-ms-correlation-request-id": [ - "a6d80b5c-b25a-43fa-bf60-6370fe13a0ec" + "61a93b2c-4c02-4d7e-acd2-781a98dcf76b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010739Z:a6d80b5c-b25a-43fa-bf60-6370fe13a0ec" + "CENTRALUS:20151221T195630Z:61a93b2c-4c02-4d7e-acd2-781a98dcf76b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:38 GMT" + "Mon, 21 Dec 2015 19:56:30 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14927" ], "x-ms-request-id": [ - "918e3d0f-978c-415b-bafa-a93ff1ccdb99" + "57319cd3-2983-43c5-a556-aedcb7f15408" ], "x-ms-correlation-request-id": [ - "918e3d0f-978c-415b-bafa-a93ff1ccdb99" + "57319cd3-2983-43c5-a556-aedcb7f15408" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010744Z:918e3d0f-978c-415b-bafa-a93ff1ccdb99" + "CENTRALUS:20151221T195634Z:57319cd3-2983-43c5-a556-aedcb7f15408" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:43 GMT" + "Mon, 21 Dec 2015 19:56:34 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:41 GMT" + "Mon, 21 Dec 2015 19:56:30 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4444e178-21c6-429e-b3b6-c27f90faa8b3" + "7287058f-7fbe-4c18-9320-d41a48811e3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-request-id": [ - "6e41ed70-ba5b-4e31-8554-af7f4f7acb68" + "e1325464-18d7-4887-bd5f-6802034ed7e0" ], "x-ms-correlation-request-id": [ - "6e41ed70-ba5b-4e31-8554-af7f4f7acb68" + "e1325464-18d7-4887-bd5f-6802034ed7e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010740Z:6e41ed70-ba5b-4e31-8554-af7f4f7acb68" + "CENTRALUS:20151221T195631Z:e1325464-18d7-4887-bd5f-6802034ed7e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:40 GMT" + "Mon, 21 Dec 2015 19:56:30 GMT" ], "ETag": [ - "0x8D2EA347F8F9D08" + "0x8D30A40D1B35B30" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:44 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "67dd7e83-7a20-4131-91e7-13128fca27b4" + "0ed05d65-e880-47da-b5a6-293d1d76b7e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14982" ], "x-ms-request-id": [ - "f0bf84a0-fe30-4409-b6eb-07a52c136655" + "194e4b49-ec86-4ab3-aece-521684995b30" ], "x-ms-correlation-request-id": [ - "f0bf84a0-fe30-4409-b6eb-07a52c136655" + "194e4b49-ec86-4ab3-aece-521684995b30" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010744Z:f0bf84a0-fe30-4409-b6eb-07a52c136655" + "CENTRALUS:20151221T195634Z:194e4b49-ec86-4ab3-aece-521684995b30" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:43 GMT" + "Mon, 21 Dec 2015 19:56:34 GMT" ], "ETag": [ - "0x8D2EA3481C643B8" + "0x8D30A40D3A58506" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "2fe5b119-9ac9-4c23-ba69-45f61a76c194" + "f69f8204-16c8-42f0-b745-d2faaeee4f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1185" ], "x-ms-request-id": [ - "4d0d82b2-536b-48c7-b31e-2aa03f5942ea" + "a5228322-8e4b-410f-b3dd-49a2be8a38ea" ], "x-ms-correlation-request-id": [ - "4d0d82b2-536b-48c7-b31e-2aa03f5942ea" + "a5228322-8e4b-410f-b3dd-49a2be8a38ea" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010740Z:4d0d82b2-536b-48c7-b31e-2aa03f5942ea" + "CENTRALUS:20151221T195631Z:a5228322-8e4b-410f-b3dd-49a2be8a38ea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:40 GMT" + "Mon, 21 Dec 2015 19:56:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "4a376912-c7f7-4536-91af-1633a7cc0057" + "40aa915a-5311-44dd-9e56-6286fdb33b7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1184" ], "x-ms-request-id": [ - "a60e593d-f9c7-4b64-adb0-71e706a192d7" + "a1afb533-1d67-456f-869a-7f0ef5133911" ], "x-ms-correlation-request-id": [ - "a60e593d-f9c7-4b64-adb0-71e706a192d7" + "a1afb533-1d67-456f-869a-7f0ef5133911" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010744Z:a60e593d-f9c7-4b64-adb0-71e706a192d7" + "CENTRALUS:20151221T195634Z:a1afb533-1d67-456f-869a-7f0ef5133911" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:07:43 GMT" + "Mon, 21 Dec 2015 19:56:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "190" + "152" ], "client-request-id": [ - "8149beae-24d4-43fa-b783-ce1e914fa063" + "eecf8ba1-7b40-4f17-a880-ab0a3d9669d2" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:40 GMT" + "Mon, 21 Dec 2015 19:56:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:41 GMT" + "Mon, 21 Dec 2015 19:56:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9b92ff36-a033-4759-9b58-4f638933eb88" + "7f2dceb2-8f6e-4342-8d41-c78a8f41fb33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8149beae-24d4-43fa-b783-ce1e914fa063" + "eecf8ba1-7b40-4f17-a880-ab0a3d9669d2" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" ], "Date": [ - "Wed, 11 Nov 2015 01:07:42 GMT" + "Mon, 21 Dec 2015 19:56:29 GMT" ], "ETag": [ - "0x8D2EA347F9F626F" + "0x8D30A40D1800EDA" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "55859b4a-e232-4f98-b0ed-8fd8bbe2d63b" + "ff927b32-4964-4e63-ba86-651fbc27dee9" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:44 GMT" + "Mon, 21 Dec 2015 19:56:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D2EA347F9F626F\",\r\n \"lastModified\": \"2015-11-11T01:07:41.3012079Z\",\r\n \"creationTime\": \"2015-11-11T01:07:41.3012079Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:07:41.3012079Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D30A40D1800EDA\",\r\n \"lastModified\": \"2015-12-21T19:56:29.8387162Z\",\r\n \"creationTime\": \"2015-12-21T19:56:29.8387162Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:56:29.8387162Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:41 GMT" + "Mon, 21 Dec 2015 19:56:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b666e435-2444-4344-b052-32a1be3682e6" + "33ec3046-9773-49f6-928f-d6a7bb3ce955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "55859b4a-e232-4f98-b0ed-8fd8bbe2d63b" + "ff927b32-4964-4e63-ba86-651fbc27dee9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:07:46 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "ETag": [ - "0x8D2EA347F9F626F" + "0x8D30A40D1800EDA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "db02e6a3-e034-499c-b8df-08a7e0d03929" + "afbac4e5-5ebc-45d2-9ae9-2bb0f85a990f" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:45 GMT" + "Mon, 21 Dec 2015 19:56:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D2EA3481E2B4F4\",\r\n \"lastModified\": \"2015-11-11T01:07:45.0978548Z\",\r\n \"creationTime\": \"2015-11-11T01:07:41.3012079Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-11-11T01:07:45.0978548Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:07:41.3012079Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D30A40D379DBB5\",\r\n \"lastModified\": \"2015-12-21T19:56:33.1535285Z\",\r\n \"creationTime\": \"2015-12-21T19:56:29.8387162Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-12-21T19:56:33.1535285Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:56:29.8387162Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:45 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "98ee2b1a-d2b6-4342-976b-494f76a31b25" + "be525d88-6ee3-41c8-8d9b-76a8af4a8295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "db02e6a3-e034-499c-b8df-08a7e0d03929" + "afbac4e5-5ebc-45d2-9ae9-2bb0f85a990f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:07:46 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "ETag": [ - "0x8D2EA3481E2B4F4" + "0x8D30A40D379DBB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,41 +511,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9ea54162-195f-463a-810e-a362663b4184" + "fac88e49-1a37-47b4-b19f-28443db3fedc" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:44 GMT" + "Mon, 21 Dec 2015 19:56:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:07:45 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5f335520-3ed1-4fe4-9821-42593b75aadb" + "789ccc65-2185-4bf4-97b9-9013840ac9a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9ea54162-195f-463a-810e-a362663b4184" + "fac88e49-1a37-47b4-b19f-28443db3fedc" ], "DataServiceVersion": [ "3.0" @@ -554,10 +554,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" ], "Date": [ - "Wed, 11 Nov 2015 01:07:46 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "ETag": [ - "0x8D2EA3481E2B4F4" + "0x8D30A40D379DBB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -566,22 +566,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "72ae4b6b-77ce-4594-92d7-a5e0919fdc46" + "0d224cff-e9a0-45f5-a008-3af89cb9b1d1" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:07:45 GMT" + "Mon, 21 Dec 2015 19:56:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -591,19 +591,19 @@ "chunked" ], "request-id": [ - "64f20e00-4d31-4cc2-8580-12fccf5675bb" + "4d7c3cf5-57d9-4ef9-9e94-b37ba5fd11e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "72ae4b6b-77ce-4594-92d7-a5e0919fdc46" + "0d224cff-e9a0-45f5-a008-3af89cb9b1d1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:07:46 GMT" + "Mon, 21 Dec 2015 19:56:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestUpdateJobSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestUpdateJobSchedule.json index 3add9194e48b..d8a7e40e96cd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestUpdateJobSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestUpdateJobSchedule.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14920" ], "x-ms-request-id": [ - "57181414-ee01-4aa1-861d-a57b48b7e57e" + "26439643-65b1-4c93-a36e-0c73bdd9cf16" ], "x-ms-correlation-request-id": [ - "57181414-ee01-4aa1-861d-a57b48b7e57e" + "26439643-65b1-4c93-a36e-0c73bdd9cf16" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010203Z:57181414-ee01-4aa1-861d-a57b48b7e57e" + "CENTRALUS:20151221T195107Z:26439643-65b1-4c93-a36e-0c73bdd9cf16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:03 GMT" + "Mon, 21 Dec 2015 19:51:07 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14919" ], "x-ms-request-id": [ - "cc37cbb9-3958-4956-8b5d-8e4a640c0a1c" + "48db0611-e69d-4f71-8151-bdb01edb323c" ], "x-ms-correlation-request-id": [ - "cc37cbb9-3958-4956-8b5d-8e4a640c0a1c" + "48db0611-e69d-4f71-8151-bdb01edb323c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010207Z:cc37cbb9-3958-4956-8b5d-8e4a640c0a1c" + "CENTRALUS:20151221T195111Z:48db0611-e69d-4f71-8151-bdb01edb323c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:07 GMT" + "Mon, 21 Dec 2015 19:51:11 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:04 GMT" + "Mon, 21 Dec 2015 19:51:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6c0848c6-a6c0-4980-9850-4b89f855671f" + "89bea7ae-3bed-447d-a46e-d7aa79eac6b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14985" ], "x-ms-request-id": [ - "a72af5b0-a6e3-4fd8-b0c7-2313bb488acb" + "86eadb66-4316-46dc-8c5d-75285d83c391" ], "x-ms-correlation-request-id": [ - "a72af5b0-a6e3-4fd8-b0c7-2313bb488acb" + "86eadb66-4316-46dc-8c5d-75285d83c391" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010204Z:a72af5b0-a6e3-4fd8-b0c7-2313bb488acb" + "CENTRALUS:20151221T195108Z:86eadb66-4316-46dc-8c5d-75285d83c391" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:04 GMT" + "Mon, 21 Dec 2015 19:51:07 GMT" ], "ETag": [ - "0x8D2EA33B70AF974" + "0x8D30A4010ADB7E4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:09 GMT" + "Mon, 21 Dec 2015 19:51:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c1999266-8c2d-4d6d-a61a-919a29b93600" + "10257622-e2f1-4ace-aa7e-1d705e98370f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14984" ], "x-ms-request-id": [ - "2700c8a5-7caf-4b71-9027-0d3a0d8917d5" + "12b7b7c6-4c46-4323-9a65-c3333f9a0c76" ], "x-ms-correlation-request-id": [ - "2700c8a5-7caf-4b71-9027-0d3a0d8917d5" + "12b7b7c6-4c46-4323-9a65-c3333f9a0c76" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010208Z:2700c8a5-7caf-4b71-9027-0d3a0d8917d5" + "CENTRALUS:20151221T195111Z:12b7b7c6-4c46-4323-9a65-c3333f9a0c76" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:08 GMT" + "Mon, 21 Dec 2015 19:51:11 GMT" ], "ETag": [ - "0x8D2EA33B98EE073" + "0x8D30A4012ADD4D7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "07e663c6-acde-40b0-95cf-49bdb1d7571c" + "d93cf5f9-a3e6-4333-b750-08c107ebe1fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1187" ], "x-ms-request-id": [ - "20fa7ef3-f75c-4dc8-8c5b-3764d0ab99c6" + "936932d9-b8b3-47c0-92bf-92d8060d4c82" ], "x-ms-correlation-request-id": [ - "20fa7ef3-f75c-4dc8-8c5b-3764d0ab99c6" + "936932d9-b8b3-47c0-92bf-92d8060d4c82" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010204Z:20fa7ef3-f75c-4dc8-8c5b-3764d0ab99c6" + "CENTRALUS:20151221T195108Z:936932d9-b8b3-47c0-92bf-92d8060d4c82" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:04 GMT" + "Mon, 21 Dec 2015 19:51:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "4d3d4cbc-8705-45fd-961a-3021c4bd898b" + "940fc1fe-0ee2-4237-8f7c-e72074052fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1186" ], "x-ms-request-id": [ - "9578143c-b948-4608-9f7c-47ce232b6150" + "6c2ea5e4-67bc-4128-846d-a0dee0d5d842" ], "x-ms-correlation-request-id": [ - "9578143c-b948-4608-9f7c-47ce232b6150" + "6c2ea5e4-67bc-4128-846d-a0dee0d5d842" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010208Z:9578143c-b948-4608-9f7c-47ce232b6150" + "CENTRALUS:20151221T195111Z:6c2ea5e4-67bc-4128-846d-a0dee0d5d842" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:02:08 GMT" + "Mon, 21 Dec 2015 19:51:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testUpdateJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testUpdateJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "179" + "141" ], "client-request-id": [ - "ec334d1d-e389-4250-a31e-eb2b7f946af1" + "6b4997bd-9a2b-40a3-9f61-dbea3a532141" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:04 GMT" + "Mon, 21 Dec 2015 19:51:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:04 GMT" + "Mon, 21 Dec 2015 19:51:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fba438a6-a444-4703-a4c4-f6e28c34c593" + "ede9c377-fe69-42b7-af5c-806b62c40ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ec334d1d-e389-4250-a31e-eb2b7f946af1" + "6b4997bd-9a2b-40a3-9f61-dbea3a532141" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:02:05 GMT" + "Mon, 21 Dec 2015 19:51:08 GMT" ], "ETag": [ - "0x8D2EA33B7169672" + "0x8D30A401115A672" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testUpdateJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VXBkYXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testUpdateJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VXBkYXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d0151cb1-ec14-40e5-ab1e-d8778dba339e" + "d39a54bd-d169-4363-af61-6c7ab0b018c7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:08 GMT" + "Mon, 21 Dec 2015 19:51:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testUpdateJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule\",\r\n \"eTag\": \"0x8D2EA33B7169672\",\r\n \"lastModified\": \"2015-11-11T01:02:04.8603762Z\",\r\n \"creationTime\": \"2015-11-11T01:02:04.8603762Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:02:04.8603762Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testUpdateJobSchedule:job-1\",\r\n \"id\": \"testUpdateJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testUpdateJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule\",\r\n \"eTag\": \"0x8D30A401115A672\",\r\n \"lastModified\": \"2015-12-21T19:51:07.0188146Z\",\r\n \"creationTime\": \"2015-12-21T19:51:07.0188146Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:51:07.0188146Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testUpdateJobSchedule:job-1\",\r\n \"id\": \"testUpdateJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:04 GMT" + "Mon, 21 Dec 2015 19:51:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3effe12c-1de3-418e-9e64-25786554b987" + "e1d87838-a800-4b72-b81b-760082028488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d0151cb1-ec14-40e5-ab1e-d8778dba339e" + "d39a54bd-d169-4363-af61-6c7ab0b018c7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:02:08 GMT" + "Mon, 21 Dec 2015 19:51:10 GMT" ], "ETag": [ - "0x8D2EA33B7169672" + "0x8D30A401115A672" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,8 +456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testUpdateJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VXBkYXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testUpdateJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VXBkYXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2020-01-01T12:00:00\",\r\n \"doNotRunAfter\": \"2025-01-01T12:00:00\",\r\n \"startWindow\": \"PT1H\",\r\n \"recurrenceInterval\": \"P1D\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 1,\r\n \"displayName\": \"jobSpecDisplayName\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\"\r\n },\r\n \"killJobOnCompletion\": false,\r\n \"runElevated\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonName1\",\r\n \"value\": \"commonValue1\"\r\n },\r\n {\r\n \"name\": \"commonName2\",\r\n \"value\": \"commonValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"jobschedule\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 3,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\"\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789ABCDEF\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"localmachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"specMeta1\",\r\n \"value\": \"specMetaValue1\"\r\n },\r\n {\r\n \"name\": \"specMeta2\",\r\n \"value\": \"specMetaValue2\"\r\n }\r\n ]\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"jobScheduleMeta1\",\r\n \"value\": \"jobScheduleValue1\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -468,35 +468,35 @@ "3380" ], "client-request-id": [ - "5e5cae21-b3d9-47cd-a9cf-bd92e0ac8e05" + "2738033c-46dc-41fb-b558-0cd3db21979a" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:09 GMT" + "Mon, 21 Dec 2015 19:51:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:02:09 GMT" + "Mon, 21 Dec 2015 19:51:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8a677300-1a93-43da-9be8-88a96b261b9a" + "0c75c51b-3856-44be-9bf6-79c3c4781fee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5e5cae21-b3d9-47cd-a9cf-bd92e0ac8e05" + "2738033c-46dc-41fb-b558-0cd3db21979a" ], "DataServiceVersion": [ "3.0" @@ -505,10 +505,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 01:02:10 GMT" + "Mon, 21 Dec 2015 19:51:12 GMT" ], "ETag": [ - "0x8D2EA33B9D1FA99" + "0x8D30A40134C1592" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,26 +517,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "08eec2dc-db73-4666-ac73-f9a452f309e8" + "174e09b8-a105-4fd5-a4c3-1f3b16ea4d61" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:09 GMT" + "Mon, 21 Dec 2015 19:51:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testUpdateJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule\",\r\n \"eTag\": \"0x8D2EA33B9D1FA99\",\r\n \"lastModified\": \"2015-11-11T01:02:09.4439065Z\",\r\n \"creationTime\": \"2015-11-11T01:02:04.8603762Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:02:04.8603762Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2020-01-01T12:00:00Z\",\r\n \"doNotRunAfter\": \"2025-01-01T12:00:00Z\",\r\n \"startWindow\": \"PT1H\",\r\n \"recurrenceInterval\": \"P1D\"\r\n },\r\n \"jobSpecification\": {\r\n \"displayName\": \"jobSpecDisplayName\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false,\r\n \"waitForSuccess\": true,\r\n \"rerunOnNodeRebootAfterSuccess\": true\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"maxWallClockTime\": \"PT15M\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonName1\",\r\n \"value\": \"commonValue1\"\r\n },\r\n {\r\n \"name\": \"commonName2\",\r\n \"value\": \"commonValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"jobschedule\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"specMeta1\",\r\n \"value\": \"specMetaValue1\"\r\n },\r\n {\r\n \"name\": \"specMeta2\",\r\n \"value\": \"specMetaValue2\"\r\n }\r\n ]\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-12T12:00:00Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testUpdateJobSchedule:job-1\",\r\n \"id\": \"testUpdateJobSchedule:job-1\"\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"jobScheduleMeta1\",\r\n \"value\": \"jobScheduleValue1\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testUpdateJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testUpdateJobSchedule\",\r\n \"eTag\": \"0x8D30A40134C1592\",\r\n \"lastModified\": \"2015-12-21T19:51:10.730997Z\",\r\n \"creationTime\": \"2015-12-21T19:51:07.0188146Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:51:07.0188146Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2020-01-01T12:00:00Z\",\r\n \"doNotRunAfter\": \"2025-01-01T12:00:00Z\",\r\n \"startWindow\": \"PT1H\",\r\n \"recurrenceInterval\": \"P1D\"\r\n },\r\n \"jobSpecification\": {\r\n \"displayName\": \"jobSpecDisplayName\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false,\r\n \"waitForSuccess\": true,\r\n \"rerunOnNodeRebootAfterSuccess\": true\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"maxWallClockTime\": \"PT15M\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonName1\",\r\n \"value\": \"commonValue1\"\r\n },\r\n {\r\n \"name\": \"commonName2\",\r\n \"value\": \"commonValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"jobschedule\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"specMeta1\",\r\n \"value\": \"specMetaValue1\"\r\n },\r\n {\r\n \"name\": \"specMeta2\",\r\n \"value\": \"specMetaValue2\"\r\n }\r\n ]\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-23T12:00:00Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testUpdateJobSchedule:job-1\",\r\n \"id\": \"testUpdateJobSchedule:job-1\"\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"jobScheduleMeta1\",\r\n \"value\": \"jobScheduleValue1\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -545,19 +545,19 @@ "chunked" ], "request-id": [ - "a6918113-2158-4293-8b7d-cb2719fc864d" + "71028e88-1947-4974-83db-34b84c45efc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "08eec2dc-db73-4666-ac73-f9a452f309e8" + "174e09b8-a105-4fd5-a4c3-1f3b16ea4d61" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:02:10 GMT" + "Mon, 21 Dec 2015 19:51:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -566,22 +566,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testUpdateJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VXBkYXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testUpdateJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VXBkYXRlSm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9a86a051-bd45-4e52-af93-490c54813be3" + "3a3a57f6-4788-4a20-8b72-d5385be06488" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:02:09 GMT" + "Mon, 21 Dec 2015 19:51:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -591,19 +591,19 @@ "chunked" ], "request-id": [ - "eef738c4-ec39-4042-a42d-a273d3170e6b" + "7f95a949-9755-42fb-937a-589b082b7412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9a86a051-bd45-4e52-af93-490c54813be3" + "3a3a57f6-4788-4a20-8b72-d5385be06488" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:02:10 GMT" + "Mon, 21 Dec 2015 19:51:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json index 790bd21fcfaf..3db065dbfada 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14983" ], "x-ms-request-id": [ - "d322f47b-e07e-4840-a24e-903707eb3d0f" + "597f56e6-47e3-4092-87ad-109c0d806e5d" ], "x-ms-correlation-request-id": [ - "d322f47b-e07e-4840-a24e-903707eb3d0f" + "597f56e6-47e3-4092-87ad-109c0d806e5d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005744Z:d322f47b-e07e-4840-a24e-903707eb3d0f" + "CENTRALUS:20151221T194745Z:597f56e6-47e3-4092-87ad-109c0d806e5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:44 GMT" + "Mon, 21 Dec 2015 19:47:45 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14982" ], "x-ms-request-id": [ - "a122fd8d-4023-4424-9512-bdd05f076868" + "9d930491-6faf-47a8-b4f5-39e7b3e5106a" ], "x-ms-correlation-request-id": [ - "a122fd8d-4023-4424-9512-bdd05f076868" + "9d930491-6faf-47a8-b4f5-39e7b3e5106a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005748Z:a122fd8d-4023-4424-9512-bdd05f076868" + "CENTRALUS:20151221T194749Z:9d930491-6faf-47a8-b4f5-39e7b3e5106a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:48 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:45 GMT" + "Mon, 21 Dec 2015 19:47:45 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7aa9dba6-45d5-41aa-a7b0-45261b0d83f5" + "56db4068-90dc-49d4-b8bc-72447851c64b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14986" ], "x-ms-request-id": [ - "79627b15-ce56-44f1-bac2-77e11c5bece8" + "d848a334-b5f7-4561-80d5-8d6b670e77d6" ], "x-ms-correlation-request-id": [ - "79627b15-ce56-44f1-bac2-77e11c5bece8" + "d848a334-b5f7-4561-80d5-8d6b670e77d6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005745Z:79627b15-ce56-44f1-bac2-77e11c5bece8" + "CENTRALUS:20151221T194746Z:d848a334-b5f7-4561-80d5-8d6b670e77d6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:45 GMT" + "Mon, 21 Dec 2015 19:47:46 GMT" ], "ETag": [ - "0x8D2EA331C697A7C" + "0x8D30A3F98D86BEA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:48 GMT" + "Mon, 21 Dec 2015 19:47:48 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7dda90e1-c2f6-4a9d-b5dd-662765c22cd4" + "79a7bc52-dd95-4ba1-8482-3b89f2430114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14985" ], "x-ms-request-id": [ - "36e9830f-e399-4fbd-b382-d9111b22cd71" + "c57fb866-f6d2-4105-9c99-32b262652f4f" ], "x-ms-correlation-request-id": [ - "36e9830f-e399-4fbd-b382-d9111b22cd71" + "c57fb866-f6d2-4105-9c99-32b262652f4f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005749Z:36e9830f-e399-4fbd-b382-d9111b22cd71" + "CENTRALUS:20151221T194749Z:c57fb866-f6d2-4105-9c99-32b262652f4f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:48 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ], "ETag": [ - "0x8D2EA331E86426A" + "0x8D30A3F9AC29BFC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "3b59498f-09c6-472e-af46-69df090271cd" + "93a51076-bd49-4d82-8a0c-73530b940e26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1195" ], "x-ms-request-id": [ - "39815d0d-fa59-4b49-8719-347fc99f5dc4" + "40706375-6ae5-4567-bd63-6db926884345" ], "x-ms-correlation-request-id": [ - "39815d0d-fa59-4b49-8719-347fc99f5dc4" + "40706375-6ae5-4567-bd63-6db926884345" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005745Z:39815d0d-fa59-4b49-8719-347fc99f5dc4" + "CENTRALUS:20151221T194746Z:40706375-6ae5-4567-bd63-6db926884345" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:45 GMT" + "Mon, 21 Dec 2015 19:47:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "a3387683-6e91-4e61-b9a7-2f0acd573de2" + "31807d0f-c31a-4f38-af0e-b50c57d6864a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1194" ], "x-ms-request-id": [ - "88c0364b-d6fa-4575-8c9a-4fce9eae5a81" + "a38741c4-8a6a-49f2-945a-ef1ea2fcd325" ], "x-ms-correlation-request-id": [ - "88c0364b-d6fa-4575-8c9a-4fce9eae5a81" + "a38741c4-8a6a-49f2-945a-ef1ea2fcd325" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005749Z:88c0364b-d6fa-4575-8c9a-4fce9eae5a81" + "CENTRALUS:20151221T194749Z:a38741c4-8a6a-49f2-945a-ef1ea2fcd325" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:48 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteJobTest\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "96" ], "client-request-id": [ - "1f06d466-6469-456b-93bf-9865631d7b9d" + "7893583f-2684-400a-baa5-6193786f6a80" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:45 GMT" + "Mon, 21 Dec 2015 19:47:46 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:46 GMT" + "Mon, 21 Dec 2015 19:47:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "aacc739f-be15-41d7-bee1-40c7e02631d8" + "487d8775-0de8-4912-80a9-0e3b811ea9d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1f06d466-6469-456b-93bf-9865631d7b9d" + "7893583f-2684-400a-baa5-6193786f6a80" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:57:46 GMT" + "Mon, 21 Dec 2015 19:47:44 GMT" ], "ETag": [ - "0x8D2EA331CDD38FF" + "0x8D30A3F98CC5A7E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteJobTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteJobTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8fe6057f-8af9-4e18-8224-732b31f72ab2" + "8d09b570-8c48-4299-844b-d56107670037" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:49 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"deleteJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteJobTest\",\r\n \"eTag\": \"0x8D2EA331CDD38FF\",\r\n \"lastModified\": \"2015-11-11T00:57:46.1153023Z\",\r\n \"creationTime\": \"2015-11-11T00:57:46.0888365Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:57:46.1153023Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:57:46.1153023Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"deleteJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteJobTest\",\r\n \"eTag\": \"0x8D30A3F98CC5A7E\",\r\n \"lastModified\": \"2015-12-21T19:47:45.2118654Z\",\r\n \"creationTime\": \"2015-12-21T19:47:45.181914Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:47:45.2118654Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:47:45.2118654Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:46 GMT" + "Mon, 21 Dec 2015 19:47:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d3948648-7de3-4974-8ce7-3e7cd9e92bfd" + "372ce277-f412-46f5-8744-e4fcbbb99b91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8fe6057f-8af9-4e18-8224-732b31f72ab2" + "8d09b570-8c48-4299-844b-d56107670037" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:49 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ], "ETag": [ - "0x8D2EA331CDD38FF" + "0x8D30A3F98CC5A7E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,22 +456,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteJobTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteJobTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3b250408-c121-4ade-b9fb-a9bd8b1d8144" + "4994b6e3-02b6-41ae-8a54-32f4e099617b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:49 GMT" + "Mon, 21 Dec 2015 19:47:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -481,19 +481,19 @@ "chunked" ], "request-id": [ - "a5384dd7-8534-46db-a9b1-a0fd0b7b3c0d" + "8cc6d6f9-3b31-40a7-89ff-a81b54c49fbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3b250408-c121-4ade-b9fb-a9bd8b1d8144" + "4994b6e3-02b6-41ae-8a54-32f4e099617b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:49 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,26 +502,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?$filter=id%20eq%20'deleteJobTest'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3ZGVsZXRlSm9iVGVzdCUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs?$filter=id%20eq%20'deleteJobTest'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3ZGVsZXRlSm9iVGVzdCUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dc2610e3-ebb5-43a6-898c-2d587ec940b9" + "03868948-46fb-4d24-a1d8-30030c507d7f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:49 GMT" + "Mon, 21 Dec 2015 19:47:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"deleteJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteJobTest\",\r\n \"eTag\": \"0x8D2EA331CDD38FF\",\r\n \"lastModified\": \"2015-11-11T00:57:46.1153023Z\",\r\n \"creationTime\": \"2015-11-11T00:57:46.0888365Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:57:49.4877496Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:57:46.1153023Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:57:46.1153023Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"deleteJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteJobTest\",\r\n \"eTag\": \"0x8D30A3F98CC5A7E\",\r\n \"lastModified\": \"2015-12-21T19:47:45.2118654Z\",\r\n \"creationTime\": \"2015-12-21T19:47:45.181914Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:47:48.3831763Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:47:45.2118654Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:47:45.2118654Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -530,19 +530,19 @@ "chunked" ], "request-id": [ - "5a211c7f-f462-488e-9157-f532863866ac" + "cc6bff8d-d29d-4f88-ae3c-9fa3e2de4fc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dc2610e3-ebb5-43a6-898c-2d587ec940b9" + "03868948-46fb-4d24-a1d8-30030c507d7f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:49 GMT" + "Mon, 21 Dec 2015 19:47:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json index 8add85835390..f41e7d360d5c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14991" ], "x-ms-request-id": [ - "d225d7f7-fcea-4a99-97cb-a98d358e37b9" + "69b5ee08-dfdc-4ece-ada7-6d3ca1e231bb" ], "x-ms-correlation-request-id": [ - "d225d7f7-fcea-4a99-97cb-a98d358e37b9" + "69b5ee08-dfdc-4ece-ada7-6d3ca1e231bb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005310Z:d225d7f7-fcea-4a99-97cb-a98d358e37b9" + "CENTRALUS:20151221T194905Z:69b5ee08-dfdc-4ece-ada7-6d3ca1e231bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:09 GMT" + "Mon, 21 Dec 2015 19:49:04 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,13 +76,13 @@ "14990" ], "x-ms-request-id": [ - "4e853288-2cce-4c6f-a1e0-096015cdc4f8" + "442d1c37-a939-457a-9c02-d2ef552a3a01" ], "x-ms-correlation-request-id": [ - "4e853288-2cce-4c6f-a1e0-096015cdc4f8" + "442d1c37-a939-457a-9c02-d2ef552a3a01" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005316Z:4e853288-2cce-4c6f-a1e0-096015cdc4f8" + "CENTRALUS:20151221T194909Z:442d1c37-a939-457a-9c02-d2ef552a3a01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:15 GMT" + "Mon, 21 Dec 2015 19:49:08 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:11 GMT" + "Mon, 21 Dec 2015 19:49:05 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "db221d25-5d50-4c09-a934-d1c8078efd8d" + "7cbcf3c2-8cce-4722-9dbf-bdedc92cac03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14893" ], "x-ms-request-id": [ - "8e3b5919-5589-4d29-a358-48dd59322a0b" + "145e815a-ab71-46fb-989c-ff00ba3ea910" ], "x-ms-correlation-request-id": [ - "8e3b5919-5589-4d29-a358-48dd59322a0b" + "145e815a-ab71-46fb-989c-ff00ba3ea910" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005312Z:8e3b5919-5589-4d29-a358-48dd59322a0b" + "CENTRALUS:20151221T194906Z:145e815a-ab71-46fb-989c-ff00ba3ea910" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:11 GMT" + "Mon, 21 Dec 2015 19:49:05 GMT" ], "ETag": [ - "0x8D2EA327974D062" + "0x8D30A3FC88ADC51" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:15 GMT" + "Mon, 21 Dec 2015 19:49:08 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "feaffdd4-731c-4010-93ce-661ba207c286" + "67c74c0f-b188-4083-b352-200d310d2ef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14892" ], "x-ms-request-id": [ - "ecdf85e4-cdda-464a-8db5-56006751c8ff" + "6b58c0f9-bbed-4b25-9d48-ef31ffb02a82" ], "x-ms-correlation-request-id": [ - "ecdf85e4-cdda-464a-8db5-56006751c8ff" + "6b58c0f9-bbed-4b25-9d48-ef31ffb02a82" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005316Z:ecdf85e4-cdda-464a-8db5-56006751c8ff" + "CENTRALUS:20151221T194909Z:6b58c0f9-bbed-4b25-9d48-ef31ffb02a82" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:15 GMT" + "Mon, 21 Dec 2015 19:49:08 GMT" ], "ETag": [ - "0x8D2EA327BD87AB2" + "0x8D30A3FCA78F720" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "aec86ec1-e107-4725-86a8-50ff0d61457c" + "9f729751-1436-419e-8903-72b118a31950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-request-id": [ - "9645375e-2f19-4849-b0c4-d3b975a523ad" + "960b3fd1-111c-4145-a28b-a80f7a6d782d" ], "x-ms-correlation-request-id": [ - "9645375e-2f19-4849-b0c4-d3b975a523ad" + "960b3fd1-111c-4145-a28b-a80f7a6d782d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005312Z:9645375e-2f19-4849-b0c4-d3b975a523ad" + "CENTRALUS:20151221T194906Z:960b3fd1-111c-4145-a28b-a80f7a6d782d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:11 GMT" + "Mon, 21 Dec 2015 19:49:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "e653380c-fec9-45f4-8260-77435f3622fc" + "35105508-6b9e-47e0-af09-e68f6be8128e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-request-id": [ - "5922dabd-fac3-4e00-beba-ff6b5a0b6352" + "8482d566-15ce-4c44-8bde-2350165d363a" ], "x-ms-correlation-request-id": [ - "5922dabd-fac3-4e00-beba-ff6b5a0b6352" + "8482d566-15ce-4c44-8bde-2350165d363a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005316Z:5922dabd-fac3-4e00-beba-ff6b5a0b6352" + "CENTRALUS:20151221T194909Z:8482d566-15ce-4c44-8bde-2350165d363a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:15 GMT" + "Mon, 21 Dec 2015 19:49:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testDeleteJobPipe\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "100" ], "client-request-id": [ - "758e98f6-d815-4924-9eb3-802ffbe179ae" + "70ea6911-85e3-4b0d-941c-9d2e4720597d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:12 GMT" + "Mon, 21 Dec 2015 19:49:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:12 GMT" + "Mon, 21 Dec 2015 19:49:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "40a58b2d-2362-4538-973b-da94553e94f4" + "42e30a3c-2779-4e82-9a1b-cdbe86c5eca8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "758e98f6-d815-4924-9eb3-802ffbe179ae" + "70ea6911-85e3-4b0d-941c-9d2e4720597d" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:53:13 GMT" + "Mon, 21 Dec 2015 19:49:06 GMT" ], "ETag": [ - "0x8D2EA327A0485A2" + "0x8D30A3FC8788A1D" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testDeleteJobPipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERlbGV0ZUpvYlBpcGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDeleteJobPipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERlbGV0ZUpvYlBpcGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8aeabfa3-5d45-4aa3-b487-073af6cd3b86" + "74ea6c1f-a447-42a8-954a-22bcd308d709" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:16 GMT" + "Mon, 21 Dec 2015 19:49:09 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDeleteJobPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobPipe\",\r\n \"eTag\": \"0x8D2EA327A0485A2\",\r\n \"lastModified\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"creationTime\": \"2015-11-11T00:53:12.8880751Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDeleteJobPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobPipe\",\r\n \"eTag\": \"0x8D30A3FC8788A1D\",\r\n \"lastModified\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"creationTime\": \"2015-12-21T19:49:05.1489541Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:12 GMT" + "Mon, 21 Dec 2015 19:49:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dbbf0110-9831-44cf-9b88-227741373187" + "1b2332e0-53ff-4aa6-8291-45a965905b71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8aeabfa3-5d45-4aa3-b487-073af6cd3b86" + "74ea6c1f-a447-42a8-954a-22bcd308d709" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:17 GMT" + "Mon, 21 Dec 2015 19:49:09 GMT" ], "ETag": [ - "0x8D2EA327A0485A2" + "0x8D30A3FC8788A1D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDeleteJobPipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERlbGV0ZUpvYlBpcGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDeleteJobPipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERlbGV0ZUpvYlBpcGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1007bdb2-5198-454e-9c2c-5f61aae8df65" + "b6253d8e-a279-452d-a918-6942a547d46d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:16 GMT" + "Mon, 21 Dec 2015 19:49:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDeleteJobPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobPipe\",\r\n \"eTag\": \"0x8D2EA327A0485A2\",\r\n \"lastModified\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"creationTime\": \"2015-11-11T00:53:12.8880751Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDeleteJobPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobPipe\",\r\n \"eTag\": \"0x8D30A3FC8788A1D\",\r\n \"lastModified\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"creationTime\": \"2015-12-21T19:49:05.1489541Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:12 GMT" + "Mon, 21 Dec 2015 19:49:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20ffd799-6201-4bf2-8512-c46cf70d384f" + "32b0073d-2d8e-49a6-9c7b-f035e189e3eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1007bdb2-5198-454e-9c2c-5f61aae8df65" + "b6253d8e-a279-452d-a918-6942a547d46d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:17 GMT" + "Mon, 21 Dec 2015 19:49:09 GMT" ], "ETag": [ - "0x8D2EA327A0485A2" + "0x8D30A3FC8788A1D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,22 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDeleteJobPipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERlbGV0ZUpvYlBpcGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDeleteJobPipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERlbGV0ZUpvYlBpcGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d9823f9c-5d67-4c36-9008-7dad184ade40" + "33ad8289-cef6-418c-8c80-8e7a5752856d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:16 GMT" + "Mon, 21 Dec 2015 19:49:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -536,19 +536,19 @@ "chunked" ], "request-id": [ - "355072a0-dd3b-4605-a017-87829c07ae6f" + "7827d11e-a002-466b-a687-78822e2a522e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d9823f9c-5d67-4c36-9008-7dad184ade40" + "33ad8289-cef6-418c-8c80-8e7a5752856d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:17 GMT" + "Mon, 21 Dec 2015 19:49:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,26 +557,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?$filter=id%20eq%20'testDeleteJobPipe'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERlbGV0ZUpvYlBpcGUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?$filter=id%20eq%20'testDeleteJobPipe'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERlbGV0ZUpvYlBpcGUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "82c094d9-48cd-4dd4-b18e-fc48064627da" + "196419cc-95a6-47d3-a58e-33c4f8cd1546" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:16 GMT" + "Mon, 21 Dec 2015 19:49:10 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobPipe\",\r\n \"eTag\": \"0x8D2EA327A0485A2\",\r\n \"lastModified\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"creationTime\": \"2015-11-11T00:53:12.8880751Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-11-11T00:53:16.653923Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:53:12.9042338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDeleteJobPipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDeleteJobPipe\",\r\n \"eTag\": \"0x8D30A3FC8788A1D\",\r\n \"lastModified\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"creationTime\": \"2015-12-21T19:49:05.1489541Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T19:49:08.4731084Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:49:05.1932189Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -585,19 +585,19 @@ "chunked" ], "request-id": [ - "d68c5c2e-945d-4b73-85ac-911a00a635da" + "db1bfba2-1cfe-40a5-ad2b-233e8f48e69d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "82c094d9-48cd-4dd4-b18e-fc48064627da" + "196419cc-95a6-47d3-a58e-33c4f8cd1546" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:17 GMT" + "Mon, 21 Dec 2015 19:49:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableAndEnableJob.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableAndEnableJob.json index 8cd835c91f64..fd9e7b477bdb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableAndEnableJob.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableAndEnableJob.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-request-id": [ - "d66d5416-06ab-4ccc-aadd-8f1fad45c781" + "1324a0b5-10d5-4517-beae-71c8c9ffcd79" ], "x-ms-correlation-request-id": [ - "d66d5416-06ab-4ccc-aadd-8f1fad45c781" + "1324a0b5-10d5-4517-beae-71c8c9ffcd79" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005022Z:d66d5416-06ab-4ccc-aadd-8f1fad45c781" + "CENTRALUS:20151221T194518Z:1324a0b5-10d5-4517-beae-71c8c9ffcd79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:50:22 GMT" + "Mon, 21 Dec 2015 19:45:18 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-request-id": [ - "b2c7d6b3-d8cf-481a-bcfa-931f526054f0" + "9fab9a34-3df9-449c-9da9-4543e0f3771e" ], "x-ms-correlation-request-id": [ - "b2c7d6b3-d8cf-481a-bcfa-931f526054f0" + "9fab9a34-3df9-449c-9da9-4543e0f3771e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005033Z:b2c7d6b3-d8cf-481a-bcfa-931f526054f0" + "CENTRALUS:20151221T194523Z:9fab9a34-3df9-449c-9da9-4543e0f3771e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:50:33 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ] }, "StatusCode": 200 @@ -121,13 +121,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:30 GMT" + "Mon, 21 Dec 2015 19:45:19 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "cc877e60-0670-4d27-92d5-e7bd6cf16fdf" + "cec17124-dc82-47f0-aff0-28fdfa582627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,22 +136,22 @@ "14982" ], "x-ms-request-id": [ - "52b9cbba-85e3-45bd-8928-df519a454616" + "d080c81d-dc72-4284-ae26-477bdbe8b766" ], "x-ms-correlation-request-id": [ - "52b9cbba-85e3-45bd-8928-df519a454616" + "d080c81d-dc72-4284-ae26-477bdbe8b766" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005029Z:52b9cbba-85e3-45bd-8928-df519a454616" + "CENTRALUS:20151221T194519Z:d080c81d-dc72-4284-ae26-477bdbe8b766" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:50:29 GMT" + "Mon, 21 Dec 2015 19:45:19 GMT" ], "ETag": [ - "0x8D2EA3219123940" + "0x8D30A3F41F3AB73" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:33 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "351606ed-c46b-4b23-834d-51e3420d614f" + "0893d949-4cc5-479a-8346-344e2404261e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14981" ], "x-ms-request-id": [ - "951cfe56-0b52-43a6-8acc-8bbc27eec284" + "880807a7-a6c1-4bb6-a065-d70684171041" ], "x-ms-correlation-request-id": [ - "951cfe56-0b52-43a6-8acc-8bbc27eec284" + "880807a7-a6c1-4bb6-a065-d70684171041" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005033Z:951cfe56-0b52-43a6-8acc-8bbc27eec284" + "CENTRALUS:20151221T194523Z:880807a7-a6c1-4bb6-a065-d70684171041" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:50:32 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "ETag": [ - "0x8D2EA321B380BCE" + "0x8D30A3F43ED9B15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "4cba6bf6-e871-4932-b56e-4658cb1685cc" + "8276a3e4-8160-49ba-a963-6dd200049104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-request-id": [ - "ab0b5c4c-3a1a-4cc3-8644-d9a44bc893ac" + "e45d3539-5083-4a27-90a2-ff49fd919840" ], "x-ms-correlation-request-id": [ - "ab0b5c4c-3a1a-4cc3-8644-d9a44bc893ac" + "e45d3539-5083-4a27-90a2-ff49fd919840" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005030Z:ab0b5c4c-3a1a-4cc3-8644-d9a44bc893ac" + "CENTRALUS:20151221T194519Z:e45d3539-5083-4a27-90a2-ff49fd919840" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:50:29 GMT" + "Mon, 21 Dec 2015 19:45:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "bb947fbe-3fd0-484f-9633-f892dfa262cd" + "edc8ed3d-5dff-492a-878f-d86560fd3996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-request-id": [ - "46336906-b04f-4c32-815b-6c6d820044a5" + "9d7bd450-fb63-460a-a1aa-19a8c0d9a0be" ], "x-ms-correlation-request-id": [ - "46336906-b04f-4c32-815b-6c6d820044a5" + "9d7bd450-fb63-460a-a1aa-19a8c0d9a0be" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005033Z:46336906-b04f-4c32-815b-6c6d820044a5" + "CENTRALUS:20151221T194523Z:9d7bd450-fb63-460a-a1aa-19a8c0d9a0be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:50:32 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testDisableEnableJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "103" ], "client-request-id": [ - "a2601e04-b640-4f18-8244-ab1cf633abd0" + "b1c666c6-151a-4f38-b7c4-f12a970f347a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:29 GMT" + "Mon, 21 Dec 2015 19:45:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:30 GMT" + "Mon, 21 Dec 2015 19:45:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5123faac-b8f9-49d1-a2c7-e3b2842483ad" + "146a8ae8-947a-49b6-8367-95c731cf2129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a2601e04-b640-4f18-8244-ab1cf633abd0" + "b1c666c6-151a-4f38-b7c4-f12a970f347a" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:50:31 GMT" + "Mon, 21 Dec 2015 19:45:19 GMT" ], "ETag": [ - "0x8D2EA32192B7E4D" + "0x8D30A3F416B5A21" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27836763-b998-49a9-8746-72ad8a1d65cb" + "6f45a4ae-e163-4696-b28f-e56a6e56cd6e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:33 GMT" + "Mon, 21 Dec 2015 19:45:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D2EA32192B7E4D\",\r\n \"lastModified\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"creationTime\": \"2015-11-11T00:50:30.404898Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D30A3F416B5A21\",\r\n \"lastModified\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"creationTime\": \"2015-12-21T19:45:18.5883692Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:30 GMT" + "Mon, 21 Dec 2015 19:45:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2ef139bb-8390-4498-8f78-252ae64baf85" + "6fa710b9-b50b-4440-b912-41d448e1d0a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27836763-b998-49a9-8746-72ad8a1d65cb" + "6f45a4ae-e163-4696-b28f-e56a6e56cd6e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:25 GMT" ], "ETag": [ - "0x8D2EA32192B7E4D" + "0x8D30A3F416B5A21" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cda2705f-1a70-4bf6-81e7-c44bcf50a338" + "fb81b37e-8832-4a76-b20d-d2dcf691a1e2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D2EA321B53CB68\",\r\n \"lastModified\": \"2015-11-11T00:50:34.0402024Z\",\r\n \"creationTime\": \"2015-11-11T00:50:30.404898Z\",\r\n \"state\": \"disabling\",\r\n \"stateTransitionTime\": \"2015-11-11T00:50:34.0402024Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D30A3F436529F5\",\r\n \"lastModified\": \"2015-12-21T19:45:21.9292661Z\",\r\n \"creationTime\": \"2015-12-21T19:45:18.5883692Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:21.961359Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "df27930c-c350-47b7-b13d-da786cc686ba" + "443c60b5-e237-420e-bec0-2b7fbfa4bd44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cda2705f-1a70-4bf6-81e7-c44bcf50a338" + "fb81b37e-8832-4a76-b20d-d2dcf691a1e2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:25 GMT" ], "ETag": [ - "0x8D2EA321B53CB68" + "0x8D30A3F436529F5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,53 +511,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7cabcf16-7180-4c4e-9db5-cedfd49d46e8" + "c77bc1be-421c-4b3f-a5f8-e5a28d7a668a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D2EA321BAA361D\",\r\n \"lastModified\": \"2015-11-11T00:50:34.6065437Z\",\r\n \"creationTime\": \"2015-11-11T00:50:30.404898Z\",\r\n \"state\": \"disabling\",\r\n \"stateTransitionTime\": \"2015-11-11T00:50:34.6065437Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:50:34.2839109Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D30A3F43C11BF8\",\r\n \"lastModified\": \"2015-12-21T19:45:22.5318392Z\",\r\n \"creationTime\": \"2015-12-21T19:45:18.5883692Z\",\r\n \"state\": \"disabling\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:22.5318392Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:22.2535584Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "79e6e812-7526-4887-83c4-5e5f07edbe23" + "344435fe-f073-453a-a943-32466e01ca81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7cabcf16-7180-4c4e-9db5-cedfd49d46e8" + "c77bc1be-421c-4b3f-a5f8-e5a28d7a668a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:26 GMT" ], "ETag": [ - "0x8D2EA321BAA361D" + "0x8D30A3F43C11BF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableJob?disable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZGlzYWJsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testDisableEnableJob?disable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZGlzYWJsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"disableTasks\": \"terminate\"\r\n}", "RequestHeaders": { @@ -578,35 +578,35 @@ "35" ], "client-request-id": [ - "20a78d73-a5ba-45c5-a05f-c4eca734889c" + "38ffebf3-43ef-4928-b9d2-ac20826f9e4c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:33 GMT" + "Mon, 21 Dec 2015 19:45:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53b4e0e2-a9fc-43fe-8066-7f62b3ab46d3" + "c79bce36-137a-471e-b680-55fa5bd23365" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "20a78d73-a5ba-45c5-a05f-c4eca734889c" + "38ffebf3-43ef-4928-b9d2-ac20826f9e4c" ], "DataServiceVersion": [ "3.0" @@ -615,10 +615,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:25 GMT" ], "ETag": [ - "0x8D2EA321B53CB68" + "0x8D30A3F436529F5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -627,8 +627,8 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableJob?disable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZGlzYWJsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testDisableEnableJob?disable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZGlzYWJsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"disableTasks\": \"terminate\"\r\n}", "RequestHeaders": { @@ -639,35 +639,35 @@ "35" ], "client-request-id": [ - "1ad3f81a-48f9-4910-a90f-98783c0552b7" + "9eb86724-55d3-453a-9b6f-704c84aa1480" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "240f46c2-527f-452c-b909-efce13dbd66b" + "11123c29-f614-4412-81cb-88b65256fe9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1ad3f81a-48f9-4910-a90f-98783c0552b7" + "9eb86724-55d3-453a-9b6f-704c84aa1480" ], "DataServiceVersion": [ "3.0" @@ -676,10 +676,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:26 GMT" ], "ETag": [ - "0x8D2EA321BAA361D" + "0x8D30A3F43C11BF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -688,41 +688,41 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableJob?enable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZW5hYmxlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testDisableEnableJob?enable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZW5hYmxlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1c57b5be-37f9-47c9-a7de-2f3fb1c11d1c" + "e88664a2-90e6-406a-bc6b-d67d2c01d1fe" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fdde9502-7d28-41ec-bcaf-76ca6dc6267c" + "90070814-024c-4091-b414-7b12c6180c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1c57b5be-37f9-47c9-a7de-2f3fb1c11d1c" + "e88664a2-90e6-406a-bc6b-d67d2c01d1fe" ], "DataServiceVersion": [ "3.0" @@ -731,10 +731,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:25 GMT" ], "ETag": [ - "0x8D2EA321B78FB45" + "0x8D30A3F4396A5A0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -743,41 +743,41 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableJob?enable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZW5hYmxlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testDisableEnableJob?enable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/ZW5hYmxlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "978db2dc-71e6-4486-b64d-d887660e2855" + "606fd8c1-2d79-4e5a-8fd2-a000cd3be442" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1794926a-4565-4ac8-87c8-a3a5d6d130b1" + "cd8f9f4e-95d0-45f9-abeb-db306f00d7cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "978db2dc-71e6-4486-b64d-d887660e2855" + "606fd8c1-2d79-4e5a-8fd2-a000cd3be442" ], "DataServiceVersion": [ "3.0" @@ -786,10 +786,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob" ], "Date": [ - "Wed, 11 Nov 2015 00:50:36 GMT" + "Mon, 21 Dec 2015 19:45:26 GMT" ], "ETag": [ - "0x8D2EA321BC878EA" + "0x8D30A3F43DE4AA7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -798,26 +798,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?$filter=id%20eq%20'testDisableEnableJob'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVKb2IlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?$filter=id%20eq%20'testDisableEnableJob'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVKb2IlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "88534305-fcd6-4130-9e06-519b6ce1ea18" + "4d6a3bed-7082-4078-b969-5844e08d7583" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D2EA321B78FB45\",\r\n \"lastModified\": \"2015-11-11T00:50:34.2839109Z\",\r\n \"creationTime\": \"2015-11-11T00:50:30.404898Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:50:34.2839109Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D30A3F4396A5A0\",\r\n \"lastModified\": \"2015-12-21T19:45:22.2535584Z\",\r\n \"creationTime\": \"2015-12-21T19:45:18.5883692Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:22.2535584Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:21.961359Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -826,19 +826,19 @@ "chunked" ], "request-id": [ - "ef3b142d-75e0-42ae-bb7e-4e652ede6877" + "9890186e-f0eb-45bd-a6ce-b0429968c0f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "88534305-fcd6-4130-9e06-519b6ce1ea18" + "4d6a3bed-7082-4078-b969-5844e08d7583" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -847,26 +847,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?$filter=id%20eq%20'testDisableEnableJob'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVKb2IlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?$filter=id%20eq%20'testDisableEnableJob'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVKb2IlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a8e3e59-fad1-4f06-9811-0cc3bc580b8a" + "f36f206d-d4c5-41d2-9934-365971113748" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D2EA321BC878EA\",\r\n \"lastModified\": \"2015-11-11T00:50:34.8048618Z\",\r\n \"creationTime\": \"2015-11-11T00:50:30.404898Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:50:34.8048618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:50:34.2839109Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:50:30.4206413Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testDisableEnableJob\",\r\n \"eTag\": \"0x8D30A3F43DE4AA7\",\r\n \"lastModified\": \"2015-12-21T19:45:22.7230887Z\",\r\n \"creationTime\": \"2015-12-21T19:45:18.5883692Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:22.7230887Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:22.2535584Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:18.6143777Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -875,19 +875,19 @@ "chunked" ], "request-id": [ - "68d7e311-62ff-48d7-926a-a0d52238bc81" + "1186346f-8266-4d99-b2e4-b06ae34ea90e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a8e3e59-fad1-4f06-9811-0cc3bc580b8a" + "f36f206d-d4c5-41d2-9934-365971113748" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:50:36 GMT" + "Mon, 21 Dec 2015 19:45:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -896,22 +896,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testDisableEnableJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9e152d73-fbb5-4acc-a85a-dff6c3ef5d0d" + "dfc2199c-9c67-4068-9587-0190c20a4fb9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:50:34 GMT" + "Mon, 21 Dec 2015 19:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -921,19 +921,19 @@ "chunked" ], "request-id": [ - "1cfb4a5a-7352-4127-83b8-9d05936ad34e" + "32b3ee39-b768-4174-8dc5-5b065fc9271b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9e152d73-fbb5-4acc-a85a-dff6c3ef5d0d" + "dfc2199c-9c67-4068-9587-0190c20a4fb9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:50:35 GMT" + "Mon, 21 Dec 2015 19:45:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetAndListJobsWithSelect.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetAndListJobsWithSelect.json index 85d8e55aecea..a99d14e2c934 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetAndListJobsWithSelect.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetAndListJobsWithSelect.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14989" ], "x-ms-request-id": [ - "13f3aa03-3670-4532-826a-7d1a6a1a5c6f" + "e37187c1-b01f-46b6-a24c-8e8b21b80617" ], "x-ms-correlation-request-id": [ - "13f3aa03-3670-4532-826a-7d1a6a1a5c6f" + "e37187c1-b01f-46b6-a24c-8e8b21b80617" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005110Z:13f3aa03-3670-4532-826a-7d1a6a1a5c6f" + "CENTRALUS:20151221T194319Z:e37187c1-b01f-46b6-a24c-8e8b21b80617" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:09 GMT" + "Mon, 21 Dec 2015 19:43:19 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,13 +76,13 @@ "14988" ], "x-ms-request-id": [ - "66177658-6509-48e9-b6b4-5a0638d7c16b" + "bbf7c0ec-2b9c-4b83-a7af-461b4df2a61e" ], "x-ms-correlation-request-id": [ - "66177658-6509-48e9-b6b4-5a0638d7c16b" + "bbf7c0ec-2b9c-4b83-a7af-461b4df2a61e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005114Z:66177658-6509-48e9-b6b4-5a0638d7c16b" + "CENTRALUS:20151221T194324Z:bbf7c0ec-2b9c-4b83-a7af-461b4df2a61e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:14 GMT" + "Mon, 21 Dec 2015 19:43:23 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:11 GMT" + "Mon, 21 Dec 2015 19:43:19 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "9e5a2c8c-4f50-421d-81e4-ce1764783437" + "83fe98e7-983a-411e-b4f9-ae489264cdda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14973" ], "x-ms-request-id": [ - "cb9ecbbe-3ff2-4cbf-8467-bfdfb5181673" + "9f63b7c1-a436-464c-b8b9-8d76b6182da8" ], "x-ms-correlation-request-id": [ - "cb9ecbbe-3ff2-4cbf-8467-bfdfb5181673" + "9f63b7c1-a436-464c-b8b9-8d76b6182da8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005111Z:cb9ecbbe-3ff2-4cbf-8467-bfdfb5181673" + "CENTRALUS:20151221T194321Z:9f63b7c1-a436-464c-b8b9-8d76b6182da8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:10 GMT" + "Mon, 21 Dec 2015 19:43:20 GMT" ], "ETag": [ - "0x8D2EA32316EAD25" + "0x8D30A3EFAAC435D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:14 GMT" + "Mon, 21 Dec 2015 19:43:23 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ac7eaf68-3cd8-42cb-b0e0-fa6ac2512972" + "6a0d23a6-32ca-40ae-99d2-1dc0f5e9ded7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14972" ], "x-ms-request-id": [ - "79d63e82-6c8a-454f-b7cf-169618aeffa4" + "d8e44c56-e700-4558-81ab-39e491bbd61a" ], "x-ms-correlation-request-id": [ - "79d63e82-6c8a-454f-b7cf-169618aeffa4" + "d8e44c56-e700-4558-81ab-39e491bbd61a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005114Z:79d63e82-6c8a-454f-b7cf-169618aeffa4" + "CENTRALUS:20151221T194324Z:d8e44c56-e700-4558-81ab-39e491bbd61a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:14 GMT" + "Mon, 21 Dec 2015 19:43:24 GMT" ], "ETag": [ - "0x8D2EA32338EB42B" + "0x8D30A3EFCA97CA3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "1a99e5ec-0a9c-4f4f-a2a4-b276cfed6699" + "ed3a1e41-00cc-43b0-a19e-a3bef9a4ed64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "8db2bb3e-e7ee-4da8-bf26-fa01023debf9" + "305af6c8-2822-4f99-a939-9f85342cef87" ], "x-ms-correlation-request-id": [ - "8db2bb3e-e7ee-4da8-bf26-fa01023debf9" + "305af6c8-2822-4f99-a939-9f85342cef87" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005111Z:8db2bb3e-e7ee-4da8-bf26-fa01023debf9" + "CENTRALUS:20151221T194321Z:305af6c8-2822-4f99-a939-9f85342cef87" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:10 GMT" + "Mon, 21 Dec 2015 19:43:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "f0d8bbac-9e43-45ad-a738-d2abbbf25811" + "5af3558c-dfe8-420a-ba85-384971e8332b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-request-id": [ - "971ff418-cba1-451a-a0e3-8dd3a4bbf60d" + "2b09e32b-5625-4f40-8004-cdbab501a8fe" ], "x-ms-correlation-request-id": [ - "971ff418-cba1-451a-a0e3-8dd3a4bbf60d" + "2b09e32b-5625-4f40-8004-cdbab501a8fe" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005115Z:971ff418-cba1-451a-a0e3-8dd3a4bbf60d" + "CENTRALUS:20151221T194324Z:2b09e32b-5625-4f40-8004-cdbab501a8fe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:14 GMT" + "Mon, 21 Dec 2015 19:43:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"selectTest\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "93" ], "client-request-id": [ - "19f82d2f-2b35-4db9-94e6-28684b567f07" + "f51cf730-1edb-4409-9e39-4c9f4d4e1b1c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:11 GMT" + "Mon, 21 Dec 2015 19:43:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:11 GMT" + "Mon, 21 Dec 2015 19:43:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "61198b1f-9eea-4334-a335-dcdf25766ff2" + "eed5135f-0732-42fa-b851-54f582f22325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "19f82d2f-2b35-4db9-94e6-28684b567f07" + "f51cf730-1edb-4409-9e39-4c9f4d4e1b1c" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:51:11 GMT" + "Mon, 21 Dec 2015 19:43:19 GMT" ], "ETag": [ - "0x8D2EA3231D69CC9" + "0x8D30A3EFA98FEF5" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/selectTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/selectTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e35c4f6e-35ff-49c6-8b7c-979fd4bafbc5" + "6bf81a67-ed71-406d-8995-4321f5624d61" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:14 GMT" + "Mon, 21 Dec 2015 19:43:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest\",\r\n \"eTag\": \"0x8D2EA3231D69CC9\",\r\n \"lastModified\": \"2015-11-11T00:51:11.8074057Z\",\r\n \"creationTime\": \"2015-11-11T00:51:11.7883563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:51:11.8074057Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:51:11.8074057Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest\",\r\n \"eTag\": \"0x8D30A3EFA98FEF5\",\r\n \"lastModified\": \"2015-12-21T19:43:19.7952757Z\",\r\n \"creationTime\": \"2015-12-21T19:43:19.7702794Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:43:19.7952757Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:43:19.7952757Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:11 GMT" + "Mon, 21 Dec 2015 19:43:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cda85a9b-f6c6-41c7-9366-aa41cbd6b9cb" + "d22818b9-ac00-4453-8881-612b5f916d77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e35c4f6e-35ff-49c6-8b7c-979fd4bafbc5" + "6bf81a67-ed71-406d-8995-4321f5624d61" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:51:17 GMT" + "Mon, 21 Dec 2015 19:43:22 GMT" ], "ETag": [ - "0x8D2EA3231D69CC9" + "0x8D30A3EFA98FEF5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,22 +456,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTest?$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGVzdD8kc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/selectTest?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGVzdD8kc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3da6572c-72c3-40dd-9205-270e33ec6fd2" + "ad1b7458-3497-4574-b99c-e3b40ee5a29e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:15 GMT" + "Mon, 21 Dec 2015 19:43:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -481,28 +481,28 @@ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:11 GMT" + "Mon, 21 Dec 2015 19:43:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bbc30346-8a6e-4850-a845-74fb7b35be4e" + "f3b5538a-ca5b-41ec-a084-f3d60e0a41cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3da6572c-72c3-40dd-9205-270e33ec6fd2" + "ad1b7458-3497-4574-b99c-e3b40ee5a29e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:51:17 GMT" + "Mon, 21 Dec 2015 19:43:22 GMT" ], "ETag": [ - "0x8D2EA3231D69CC9" + "0x8D30A3EFA98FEF5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,26 +511,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?$filter=id%20eq%20'selectTest'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3c2VsZWN0VGVzdCUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs?$filter=id%20eq%20'selectTest'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3c2VsZWN0VGVzdCUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6226230d-1ea7-4426-ab21-81871ccd2191" + "51ca3ed2-82b4-4bfa-978a-777762267a12" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:15 GMT" + "Mon, 21 Dec 2015 19:43:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest\",\r\n \"eTag\": \"0x8D2EA3231D69CC9\",\r\n \"lastModified\": \"2015-11-11T00:51:11.8074057Z\",\r\n \"creationTime\": \"2015-11-11T00:51:11.7883563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:51:11.8074057Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:51:11.8074057Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"selectTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTest\",\r\n \"eTag\": \"0x8D30A3EFA98FEF5\",\r\n \"lastModified\": \"2015-12-21T19:43:19.7952757Z\",\r\n \"creationTime\": \"2015-12-21T19:43:19.7702794Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:43:19.7952757Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:43:19.7952757Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -539,19 +539,19 @@ "chunked" ], "request-id": [ - "c493e6cf-a922-4e5d-9b42-3499fef76974" + "744f897d-4b53-4264-956f-8262b6002ec5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6226230d-1ea7-4426-ab21-81871ccd2191" + "51ca3ed2-82b4-4bfa-978a-777762267a12" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:51:17 GMT" + "Mon, 21 Dec 2015 19:43:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -560,22 +560,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?$filter=id%20eq%20'selectTest'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3c2VsZWN0VGVzdCUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?$filter=id%20eq%20'selectTest'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1pZCUyMGVxJTIwJTI3c2VsZWN0VGVzdCUyNyYkc2VsZWN0PWlkJTJDc3RhdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58b57354-0ede-4c4d-9d19-0b32a471978b" + "57d7d8bb-5bbc-4684-b139-a4b3dc60e9aa" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:15 GMT" + "Mon, 21 Dec 2015 19:43:25 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -588,19 +588,19 @@ "chunked" ], "request-id": [ - "8e2469fd-e307-4961-8f2d-a97742f7c9cc" + "60a7b7bb-c416-412e-a77b-d3588fac4cee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58b57354-0ede-4c4d-9d19-0b32a471978b" + "57d7d8bb-5bbc-4684-b139-a4b3dc60e9aa" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:51:17 GMT" + "Mon, 21 Dec 2015 19:43:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -609,22 +609,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/selectTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4f560b9a-5589-4cde-9895-4e2b8f3bf05b" + "61933e97-59ec-47b7-864f-b713cc852918" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:15 GMT" + "Mon, 21 Dec 2015 19:43:25 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -634,19 +634,19 @@ "chunked" ], "request-id": [ - "95a7ecb6-dd58-4552-8e26-9639ae2c4e5a" + "7cdeed07-4fce-4e5e-8f8c-a5e43159801e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4f560b9a-5589-4cde-9895-4e2b8f3bf05b" + "61933e97-59ec-47b7-864f-b713cc852918" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:51:16 GMT" + "Mon, 21 Dec 2015 19:43:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobById.json index 70675ff3687d..7e537d3b6173 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14993" ], "x-ms-request-id": [ - "d6e3697b-e1f6-4925-b544-8d620961f139" + "30b41bc7-8174-4372-9e21-1c034792b1d1" ], "x-ms-correlation-request-id": [ - "d6e3697b-e1f6-4925-b544-8d620961f139" + "30b41bc7-8174-4372-9e21-1c034792b1d1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010048Z:d6e3697b-e1f6-4925-b544-8d620961f139" + "CENTRALUS:20151221T194826Z:30b41bc7-8174-4372-9e21-1c034792b1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:48 GMT" + "Mon, 21 Dec 2015 19:48:25 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14992" ], "x-ms-request-id": [ - "d75055e7-c7fc-4386-8d2f-ee4facc5b28f" + "b02adec4-c939-46d6-a977-dce094a662e9" ], "x-ms-correlation-request-id": [ - "d75055e7-c7fc-4386-8d2f-ee4facc5b28f" + "b02adec4-c939-46d6-a977-dce094a662e9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010053Z:d75055e7-c7fc-4386-8d2f-ee4facc5b28f" + "CENTRALUS:20151221T194830Z:b02adec4-c939-46d6-a977-dce094a662e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:53 GMT" + "Mon, 21 Dec 2015 19:48:29 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:49 GMT" + "Mon, 21 Dec 2015 19:48:25 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b74fc2c7-73bc-476c-8833-303d1b2d7768" + "f6f92c0a-61e4-4136-918c-dedf9758ba36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14972" ], "x-ms-request-id": [ - "b611add1-4c58-4a71-8521-62b945e2b88c" + "09d79b5c-49ee-4ab6-a497-11d68cb85ea2" ], "x-ms-correlation-request-id": [ - "b611add1-4c58-4a71-8521-62b945e2b88c" + "09d79b5c-49ee-4ab6-a497-11d68cb85ea2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010049Z:b611add1-4c58-4a71-8521-62b945e2b88c" + "CENTRALUS:20151221T194827Z:09d79b5c-49ee-4ab6-a497-11d68cb85ea2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:49 GMT" + "Mon, 21 Dec 2015 19:48:26 GMT" ], "ETag": [ - "0x8D2EA338A427DFD" + "0x8D30A3FB101E9CC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:53 GMT" + "Mon, 21 Dec 2015 19:48:29 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "48bb64ba-c328-490e-9394-ac6069ad7ea5" + "3c6acde5-986d-4a4c-bffc-c16873bb65f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14971" ], "x-ms-request-id": [ - "192b7ac0-69ee-454f-890f-0a5dc999a0ac" + "8a34faf6-e7a4-45e3-a759-224d0fcc374a" ], "x-ms-correlation-request-id": [ - "192b7ac0-69ee-454f-890f-0a5dc999a0ac" + "8a34faf6-e7a4-45e3-a759-224d0fcc374a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010053Z:192b7ac0-69ee-454f-890f-0a5dc999a0ac" + "CENTRALUS:20151221T194830Z:8a34faf6-e7a4-45e3-a759-224d0fcc374a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:53 GMT" + "Mon, 21 Dec 2015 19:48:29 GMT" ], "ETag": [ - "0x8D2EA338CA6564B" + "0x8D30A3FB2E89B1B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "c4cfb5f0-174f-4acc-86b0-9d27d87a4577" + "102db3f7-aeb3-4b94-97de-eee777b6be8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-request-id": [ - "632cdb5a-45db-4c2d-806a-1868a1932ca1" + "5dd81770-93ba-40de-af2f-1b712eeed9c7" ], "x-ms-correlation-request-id": [ - "632cdb5a-45db-4c2d-806a-1868a1932ca1" + "5dd81770-93ba-40de-af2f-1b712eeed9c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010049Z:632cdb5a-45db-4c2d-806a-1868a1932ca1" + "CENTRALUS:20151221T194827Z:5dd81770-93ba-40de-af2f-1b712eeed9c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:49 GMT" + "Mon, 21 Dec 2015 19:48:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "757004f5-77dc-464a-a105-9b65b3ac4caa" + "dcabd149-a379-423a-8170-403451f9c8d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1188" ], "x-ms-request-id": [ - "3411ebc1-60b9-4bd9-953a-835f47520871" + "563a8fa5-acad-47dc-ab93-b10351be1a04" ], "x-ms-correlation-request-id": [ - "3411ebc1-60b9-4bd9-953a-835f47520871" + "563a8fa5-acad-47dc-ab93-b10351be1a04" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010053Z:3411ebc1-60b9-4bd9-953a-835f47520871" + "CENTRALUS:20151221T194830Z:563a8fa5-acad-47dc-ab93-b10351be1a04" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:53 GMT" + "Mon, 21 Dec 2015 19:48:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "90" ], "client-request-id": [ - "e7f01b74-467c-4601-9bcf-847ab4ee028b" + "36c41883-dce0-4ec3-9f96-1ec34361da86" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:49 GMT" + "Mon, 21 Dec 2015 19:48:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:50 GMT" + "Mon, 21 Dec 2015 19:48:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cba6cb76-040a-4d42-9700-8f32c86592bf" + "4f6febc7-03fa-4ca8-b32a-0431f3a61ba0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e7f01b74-467c-4601-9bcf-847ab4ee028b" + "36c41883-dce0-4ec3-9f96-1ec34361da86" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 01:00:50 GMT" + "Mon, 21 Dec 2015 19:48:26 GMT" ], "ETag": [ - "0x8D2EA338AA23C1A" + "0x8D30A3FB0ED69A0" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "64303d0c-0480-4bbb-84b9-e7ca7159be80" + "853cc562-003b-43e0-a402-b3c385b5146e" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:53 GMT" + "Mon, 21 Dec 2015 19:48:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJob\",\r\n \"eTag\": \"0x8D2EA338AA23C1A\",\r\n \"lastModified\": \"2015-11-11T01:00:50.2780954Z\",\r\n \"creationTime\": \"2015-11-11T01:00:50.2590873Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:00:50.2780954Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T01:00:50.2780954Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJob\",\r\n \"eTag\": \"0x8D30A3FB0ED69A0\",\r\n \"lastModified\": \"2015-12-21T19:48:25.69384Z\",\r\n \"creationTime\": \"2015-12-21T19:48:25.6742221Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:48:25.69384Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:48:25.69384Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:50 GMT" + "Mon, 21 Dec 2015 19:48:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f780d8af-45f7-430c-81da-5584ed88c224" + "9eee13fa-48ea-46f2-93f7-468424499ce9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "64303d0c-0480-4bbb-84b9-e7ca7159be80" + "853cc562-003b-43e0-a402-b3c385b5146e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:00:54 GMT" + "Mon, 21 Dec 2015 19:48:29 GMT" ], "ETag": [ - "0x8D2EA338AA23C1A" + "0x8D30A3FB0ED69A0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "19601397-23be-4d29-bc17-22f0a9f7f3ed" + "93ac049b-e5e4-43ef-a280-0e6623d3f96a" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:54 GMT" + "Mon, 21 Dec 2015 19:48:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJob\",\r\n \"eTag\": \"0x8D2EA338AA23C1A\",\r\n \"lastModified\": \"2015-11-11T01:00:50.2780954Z\",\r\n \"creationTime\": \"2015-11-11T01:00:50.2590873Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:00:50.2780954Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T01:00:50.2780954Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJob\",\r\n \"eTag\": \"0x8D30A3FB0ED69A0\",\r\n \"lastModified\": \"2015-12-21T19:48:25.69384Z\",\r\n \"creationTime\": \"2015-12-21T19:48:25.6742221Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:48:25.69384Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:48:25.69384Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:50 GMT" + "Mon, 21 Dec 2015 19:48:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7b061d4a-0801-4254-b1d8-1eab8dde27c2" + "50f476a9-d105-46f9-a016-5b9c7f7a7eb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "19601397-23be-4d29-bc17-22f0a9f7f3ed" + "93ac049b-e5e4-43ef-a280-0e6623d3f96a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:00:54 GMT" + "Mon, 21 Dec 2015 19:48:29 GMT" ], "ETag": [ - "0x8D2EA338AA23C1A" + "0x8D30A3FB0ED69A0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,22 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b8c61e2a-cae1-4e25-a581-a31dfa156576" + "afac3dba-be50-4a97-a621-6528e9ff61e2" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:54 GMT" + "Mon, 21 Dec 2015 19:48:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -536,19 +536,19 @@ "chunked" ], "request-id": [ - "8bd8a027-8fbf-4693-824c-45e1ea08bb01" + "3e019abd-e89c-4967-b2f1-60d18a5b0d89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b8c61e2a-cae1-4e25-a581-a31dfa156576" + "afac3dba-be50-4a97-a621-6528e9ff61e2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:00:55 GMT" + "Mon, 21 Dec 2015 19:48:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json index 1a81c8f18dda..6fdcd0d52f6f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14990" ], "x-ms-request-id": [ - "80d45ad8-bd2a-4031-b2e7-194e1233be67" + "b98c3050-92fd-4919-afd5-70fc77c67cdd" ], "x-ms-correlation-request-id": [ - "80d45ad8-bd2a-4031-b2e7-194e1233be67" + "b98c3050-92fd-4919-afd5-70fc77c67cdd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005616Z:80d45ad8-bd2a-4031-b2e7-194e1233be67" + "CENTRALUS:20151221T194946Z:b98c3050-92fd-4919-afd5-70fc77c67cdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:15 GMT" + "Mon, 21 Dec 2015 19:49:45 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14989" ], "x-ms-request-id": [ - "f49a023d-10b3-4717-a552-765d1d8e3732" + "d923c39a-9cab-43da-be8d-fd85abae2a0f" ], "x-ms-correlation-request-id": [ - "f49a023d-10b3-4717-a552-765d1d8e3732" + "d923c39a-9cab-43da-be8d-fd85abae2a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005621Z:f49a023d-10b3-4717-a552-765d1d8e3732" + "CENTRALUS:20151221T194951Z:d923c39a-9cab-43da-be8d-fd85abae2a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:21 GMT" + "Mon, 21 Dec 2015 19:49:50 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:56:18 GMT" + "Mon, 21 Dec 2015 19:49:46 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1689a817-5dd4-4f6f-b6e2-90769f904449" + "8713d15e-689c-479a-94e1-99f38f3a4f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "3260856d-c620-4e84-b11f-db041ba50c89" + "c03072f0-7902-4013-a785-75df39902b10" ], "x-ms-correlation-request-id": [ - "3260856d-c620-4e84-b11f-db041ba50c89" + "c03072f0-7902-4013-a785-75df39902b10" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005617Z:3260856d-c620-4e84-b11f-db041ba50c89" + "CENTRALUS:20151221T194947Z:c03072f0-7902-4013-a785-75df39902b10" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:17 GMT" + "Mon, 21 Dec 2015 19:49:47 GMT" ], "ETag": [ - "0x8D2EA32E8E93524" + "0x8D30A3FE0F49DB1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:56:22 GMT" + "Mon, 21 Dec 2015 19:49:50 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8d3a913b-d900-480f-8e0f-1d956c97958a" + "535db4a7-c800-4cc2-8776-e7ba49ecdb5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "f217653f-91eb-4001-b47a-294e7faa7363" + "50bee595-9336-40c6-ad8c-610358008b6d" ], "x-ms-correlation-request-id": [ - "f217653f-91eb-4001-b47a-294e7faa7363" + "50bee595-9336-40c6-ad8c-610358008b6d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005621Z:f217653f-91eb-4001-b47a-294e7faa7363" + "CENTRALUS:20151221T194951Z:50bee595-9336-40c6-ad8c-610358008b6d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:21 GMT" + "Mon, 21 Dec 2015 19:49:51 GMT" ], "ETag": [ - "0x8D2EA32EB351E99" + "0x8D30A3FE33F5A19" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "b20c0bf0-ae9a-4f08-9164-1831a2970153" + "76d4cde9-0569-4fdc-8a4e-afe70a2cbbb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1197" ], "x-ms-request-id": [ - "90c0ffaf-00e2-40b3-a755-476ca9ad75a3" + "3f03c716-ac77-410d-a112-f3510842d62e" ], "x-ms-correlation-request-id": [ - "90c0ffaf-00e2-40b3-a755-476ca9ad75a3" + "3f03c716-ac77-410d-a112-f3510842d62e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005618Z:90c0ffaf-00e2-40b3-a755-476ca9ad75a3" + "CENTRALUS:20151221T194947Z:3f03c716-ac77-410d-a112-f3510842d62e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:17 GMT" + "Mon, 21 Dec 2015 19:49:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "bee9f29e-95cd-4665-b365-826c3e7b1067" + "b450f88d-256c-4fdb-b767-63d4fb5e7910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1196" ], "x-ms-request-id": [ - "9e1d7eac-4351-4577-b7f1-a60054e7be33" + "12decad1-3d13-4f54-8374-99d3d29e3f3b" ], "x-ms-correlation-request-id": [ - "9e1d7eac-4351-4577-b7f1-a60054e7be33" + "12decad1-3d13-4f54-8374-99d3d29e3f3b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005621Z:9e1d7eac-4351-4577-b7f1-a60054e7be33" + "CENTRALUS:20151221T194951Z:12decad1-3d13-4f54-8374-99d3d29e3f3b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:21 GMT" + "Mon, 21 Dec 2015 19:49:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "90" ], "client-request-id": [ - "37fff821-5bf4-4430-9f11-4b8929c3c5a3" + "336478d4-67c7-4a7a-9a4b-2a93d0cda3b0" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:17 GMT" + "Mon, 21 Dec 2015 19:49:47 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:56:18 GMT" + "Mon, 21 Dec 2015 19:49:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "146d45a5-bbfb-4782-a0d8-50cd8db8609f" + "63b0516b-50e9-40df-8a59-fe64eb41ea3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "37fff821-5bf4-4430-9f11-4b8929c3c5a3" + "336478d4-67c7-4a7a-9a4b-2a93d0cda3b0" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:56:19 GMT" + "Mon, 21 Dec 2015 19:49:47 GMT" ], "ETag": [ - "0x8D2EA32E8894C75" + "0x8D30A3FE0E12B10" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "90" ], "client-request-id": [ - "b01a0eec-aac1-44d8-91ab-a2e668ef3f71" + "d0c321d5-51fe-421d-a077-882c6d9dfcaa" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:18 GMT" + "Mon, 21 Dec 2015 19:49:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:56:18 GMT" + "Mon, 21 Dec 2015 19:49:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4c164266-be37-4c9c-a1b6-17656e3a78e3" + "665c9477-db10-467c-9130-3728f7b079eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b01a0eec-aac1-44d8-91ab-a2e668ef3f71" + "d0c321d5-51fe-421d-a077-882c6d9dfcaa" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:56:19 GMT" + "Mon, 21 Dec 2015 19:49:47 GMT" ], "ETag": [ - "0x8D2EA32E8AAA511" + "0x8D30A3FE10407A0" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "94" ], "client-request-id": [ - "5da87733-1d46-4ea3-993e-1e9c542727ef" + "ebd30b68-687f-466f-98d6-c72709e6f035" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:18 GMT" + "Mon, 21 Dec 2015 19:49:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:56:18 GMT" + "Mon, 21 Dec 2015 19:49:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6baaeced-0a61-4bfb-b42d-7ea14d165079" + "9c600417-759c-4641-aa91-a7dc44d5b7ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5da87733-1d46-4ea3-993e-1e9c542727ef" + "ebd30b68-687f-466f-98d6-c72709e6f035" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:56:19 GMT" + "Mon, 21 Dec 2015 19:49:47 GMT" ], "ETag": [ - "0x8D2EA32E8CC5362" + "0x8D30A3FE128C052" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "955d8dfa-f18f-4093-bba1-2338b30d2090" + "b8aac178-3c4e-4603-bebe-d1018f5b976a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:21 GMT" + "Mon, 21 Dec 2015 19:49:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1\",\r\n \"eTag\": \"0x8D2EA32E8894C75\",\r\n \"lastModified\": \"2015-11-11T00:56:18.3237749Z\",\r\n \"creationTime\": \"2015-11-11T00:56:18.3067413Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:56:18.3237749Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:56:18.3237749Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2\",\r\n \"eTag\": \"0x8D2EA32E8AAA511\",\r\n \"lastModified\": \"2015-11-11T00:56:18.5423121Z\",\r\n \"creationTime\": \"2015-11-11T00:56:18.5262773Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:56:18.5423121Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:56:18.5423121Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId\",\r\n \"eTag\": \"0x8D2EA32E8CC5362\",\r\n \"lastModified\": \"2015-11-11T00:56:18.7630434Z\",\r\n \"creationTime\": \"2015-11-11T00:56:18.7383969Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:56:18.7630434Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:56:18.7630434Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1\",\r\n \"eTag\": \"0x8D30A3FE0E12B10\",\r\n \"lastModified\": \"2015-12-21T19:49:46.144232Z\",\r\n \"creationTime\": \"2015-12-21T19:49:46.1232407Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:49:46.144232Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:49:46.144232Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2\",\r\n \"eTag\": \"0x8D30A3FE10407A0\",\r\n \"lastModified\": \"2015-12-21T19:49:46.3727008Z\",\r\n \"creationTime\": \"2015-12-21T19:49:46.3426983Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:49:46.3727008Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:49:46.3727008Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId\",\r\n \"eTag\": \"0x8D30A3FE128C052\",\r\n \"lastModified\": \"2015-12-21T19:49:46.6133586Z\",\r\n \"creationTime\": \"2015-12-21T19:49:46.5923636Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:49:46.6133586Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:49:46.6133586Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "1ca8ca8a-cc75-492c-b180-8fc7be6a4561" + "1e0cfdda-01d5-4b68-9306-04c6017b0088" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "955d8dfa-f18f-4093-bba1-2338b30d2090" + "b8aac178-3c4e-4603-bebe-d1018f5b976a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:56:22 GMT" + "Mon, 21 Dec 2015 19:49:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testId1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdElkMT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testId1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdElkMT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "40d6b45f-b359-462b-9ddc-6fc7d1b36b52" + "f9db8757-0823-4583-8550-1e9e001e3c48" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:22 GMT" + "Mon, 21 Dec 2015 19:49:51 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "c95fdc5c-b8be-4749-88bc-41f3bc5af255" + "c0fff62d-a733-4514-974a-783ab02e03ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "40d6b45f-b359-462b-9ddc-6fc7d1b36b52" + "f9db8757-0823-4583-8550-1e9e001e3c48" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:56:23 GMT" + "Mon, 21 Dec 2015 19:49:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testId2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdElkMj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testId2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdElkMj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aeae9c91-5928-4123-8455-80e611167c72" + "16600153-056f-47fe-86b5-f84a2f5d86ef" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:22 GMT" + "Mon, 21 Dec 2015 19:49:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "9fce8727-242b-4b77-a0be-7799596a94f0" + "3488aa03-8885-49b9-ab0b-1765517a8701" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "aeae9c91-5928-4123-8455-80e611167c72" + "16600153-056f-47fe-86b5-f84a2f5d86ef" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:56:23 GMT" + "Mon, 21 Dec 2015 19:49:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/thirdtestId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGhpcmR0ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/thirdtestId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGhpcmR0ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "28abda8a-5919-42ea-92af-887d97208217" + "b2332b58-4fc3-4516-8394-7043fbb673af" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:56:22 GMT" + "Mon, 21 Dec 2015 19:49:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "b599bc23-e0eb-4a4e-8477-a5998bc842b2" + "580ab0cf-0052-4c7a-a77f-b51b41aaa831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "28abda8a-5919-42ea-92af-887d97208217" + "b2332b58-4fc3-4516-8394-7043fbb673af" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:56:23 GMT" + "Mon, 21 Dec 2015 19:49:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json index fe18f4191a38..131287622654 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14972" ], "x-ms-request-id": [ - "3689e124-54c6-47a3-9308-f69a1d397afc" + "d1aa0336-16bd-475e-8c41-a4f7d49fa7c6" ], "x-ms-correlation-request-id": [ - "3689e124-54c6-47a3-9308-f69a1d397afc" + "d1aa0336-16bd-475e-8c41-a4f7d49fa7c6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005658Z:3689e124-54c6-47a3-9308-f69a1d397afc" + "CENTRALUS:20151221T194438Z:d1aa0336-16bd-475e-8c41-a4f7d49fa7c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:58 GMT" + "Mon, 21 Dec 2015 19:44:37 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14971" ], "x-ms-request-id": [ - "c9396ab1-d142-4210-8350-56d6166788a4" + "0274f515-0054-454d-9efb-18a5faf3845d" ], "x-ms-correlation-request-id": [ - "c9396ab1-d142-4210-8350-56d6166788a4" + "0274f515-0054-454d-9efb-18a5faf3845d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005704Z:c9396ab1-d142-4210-8350-56d6166788a4" + "CENTRALUS:20151221T194443Z:0274f515-0054-454d-9efb-18a5faf3845d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:03 GMT" + "Mon, 21 Dec 2015 19:44:42 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:00 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7414468a-de21-42ab-8409-78c9b9031a92" + "48e91002-2223-45cb-8b8d-914cfcecac2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14988" ], "x-ms-request-id": [ - "74185ebe-d769-4e77-8732-26fa89dbbb0e" + "7e54da33-8845-4156-823c-566914311a85" ], "x-ms-correlation-request-id": [ - "74185ebe-d769-4e77-8732-26fa89dbbb0e" + "7e54da33-8845-4156-823c-566914311a85" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005700Z:74185ebe-d769-4e77-8732-26fa89dbbb0e" + "CENTRALUS:20151221T194439Z:7e54da33-8845-4156-823c-566914311a85" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:59 GMT" + "Mon, 21 Dec 2015 19:44:39 GMT" ], "ETag": [ - "0x8D2EA3301B14EC0" + "0x8D30A3F294F75D5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:44:41 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1a48c0fe-7c34-4763-885f-c22289098eac" + "9ec44f45-fe70-4f3a-af4a-53b905667309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-request-id": [ - "c738b329-2a02-4dc4-9b66-d8ffac13f1ac" + "7c80f713-3733-4270-bcb0-20793cb74d00" ], "x-ms-correlation-request-id": [ - "c738b329-2a02-4dc4-9b66-d8ffac13f1ac" + "7c80f713-3733-4270-bcb0-20793cb74d00" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005704Z:c738b329-2a02-4dc4-9b66-d8ffac13f1ac" + "CENTRALUS:20151221T194443Z:7c80f713-3733-4270-bcb0-20793cb74d00" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:03 GMT" + "Mon, 21 Dec 2015 19:44:43 GMT" ], "ETag": [ - "0x8D2EA33043366F8" + "0x8D30A3F2B91A4AE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "3943897b-2443-44ff-8a54-8c6baea175c7" + "ae20b76d-e953-4eab-8114-60ddb30cc819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "a6f6ff94-586c-42a9-8829-11004e92bb2b" + "6dcb9af8-2502-4a76-9ecb-8e3903788ac0" ], "x-ms-correlation-request-id": [ - "a6f6ff94-586c-42a9-8829-11004e92bb2b" + "6dcb9af8-2502-4a76-9ecb-8e3903788ac0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005700Z:a6f6ff94-586c-42a9-8829-11004e92bb2b" + "CENTRALUS:20151221T194439Z:6dcb9af8-2502-4a76-9ecb-8e3903788ac0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:56:59 GMT" + "Mon, 21 Dec 2015 19:44:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "38ca031e-89f1-46b7-8221-f854fbb09930" + "90d86d3f-c205-4211-a456-14e901aa5128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "fdc0f6a1-f3d5-4e08-85a7-c3b4fb43ceb8" + "abca3a8f-ab25-4087-a257-658670ec8652" ], "x-ms-correlation-request-id": [ - "fdc0f6a1-f3d5-4e08-85a7-c3b4fb43ceb8" + "abca3a8f-ab25-4087-a257-658670ec8652" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005705Z:fdc0f6a1-f3d5-4e08-85a7-c3b4fb43ceb8" + "CENTRALUS:20151221T194443Z:abca3a8f-ab25-4087-a257-658670ec8652" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:44:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"filterTestId1\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "96" ], "client-request-id": [ - "7df2a9db-30c0-46b8-8076-2c34f8ab20a3" + "5944dfc2-7114-4119-a4d0-ce35852111e0" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:00 GMT" + "Mon, 21 Dec 2015 19:44:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:00 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2b8c3e3e-cd48-474f-99df-eb2079d150c1" + "3ce553fe-66f5-4654-a491-ce721207c64b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7df2a9db-30c0-46b8-8076-2c34f8ab20a3" + "5944dfc2-7114-4119-a4d0-ce35852111e0" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "ETag": [ - "0x8D2EA3301BC1475" + "0x8D30A3F29452630" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"filterTestId2\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "96" ], "client-request-id": [ - "77f5481c-2de0-4e57-a755-e1dd227a7302" + "e8d9d387-caf1-4f96-975f-0938640f4a41" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:00 GMT" + "Mon, 21 Dec 2015 19:44:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:00 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "081d3fdc-4078-4f96-8e81-9e12049bce53" + "0bc3321b-e75f-4b68-90ba-61bbd36ef5b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "77f5481c-2de0-4e57-a755-e1dd227a7302" + "e8d9d387-caf1-4f96-975f-0938640f4a41" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "ETag": [ - "0x8D2EA3301DFF3FA" + "0x8D30A3F2967C51B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "94" ], "client-request-id": [ - "39789dd0-5bb1-48ee-b585-0984b3d752d0" + "6a743ac0-f6fd-42b7-9650-5e760b3c8b6e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:00 GMT" + "Mon, 21 Dec 2015 19:44:40 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cefe7474-51db-4bc8-9e88-94142f537cd0" + "7e6157b8-cdc4-4038-9e81-341784d409f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "39789dd0-5bb1-48ee-b585-0984b3d752d0" + "6a743ac0-f6fd-42b7-9650-5e760b3c8b6e" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "ETag": [ - "0x8D2EA33020E64A3" + "0x8D30A3F2989CF91" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -529,8 +529,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/filterTestId1?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGVzdElkMT90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/filterTestId1?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGVzdElkMT90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -541,35 +541,35 @@ "2" ], "client-request-id": [ - "0e8e7448-df64-4976-bc1b-7b61256c59a5" + "33f3b244-74ef-4927-a947-03f1d811d714" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:40 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "52f9d2cd-73cf-49fe-9aca-ac90175f28dc" + "8bd4b030-4510-4e9b-9e46-c18f76e5b0e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0e8e7448-df64-4976-bc1b-7b61256c59a5" + "33f3b244-74ef-4927-a947-03f1d811d714" ], "DataServiceVersion": [ "3.0" @@ -578,10 +578,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTestId1" ], "Date": [ - "Wed, 11 Nov 2015 00:57:01 GMT" + "Mon, 21 Dec 2015 19:44:38 GMT" ], "ETag": [ - "0x8D2EA33022751F6" + "0x8D30A3F29A375E3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -590,26 +590,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?$filter=startswith(id%2C'filterTest')&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdGFydHN3aXRoJTI4aWQlMkMlMjdmaWx0ZXJUZXN0JTI3JTI5JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs?$filter=startswith(id%2C'filterTest')&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdGFydHN3aXRoJTI4aWQlMkMlMjdmaWx0ZXJUZXN0JTI3JTI5JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ed1404dc-96b2-42e7-bac6-9a9a710bafd6" + "5c7918f1-cfcd-4eab-b4e0-0ac4e1141dff" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:04 GMT" + "Mon, 21 Dec 2015 19:44:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"filterTestId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTestId2\",\r\n \"eTag\": \"0x8D2EA3301DFF3FA\",\r\n \"lastModified\": \"2015-11-11T00:57:00.834713Z\",\r\n \"creationTime\": \"2015-11-11T00:57:00.8167212Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:57:00.834713Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:57:00.834713Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"filterTestId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTestId1\",\r\n \"eTag\": \"0x8D2EA33022751F6\",\r\n \"lastModified\": \"2015-11-11T00:57:01.3024246Z\",\r\n \"creationTime\": \"2015-11-11T00:57:00.5696134Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:57:01.9613859Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:57:00.5996149Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:57:00.5996149Z\",\r\n \"endTime\": \"2015-11-11T00:57:01.9613859Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"filterTestId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTestId2\",\r\n \"eTag\": \"0x8D30A3F2967C51B\",\r\n \"lastModified\": \"2015-12-21T19:44:38.3255835Z\",\r\n \"creationTime\": \"2015-12-21T19:44:38.3035459Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:44:38.3255835Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:44:38.3255835Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"filterTestId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTestId1\",\r\n \"eTag\": \"0x8D30A3F29A375E3\",\r\n \"lastModified\": \"2015-12-21T19:44:38.7167715Z\",\r\n \"creationTime\": \"2015-12-21T19:44:38.0806844Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:44:39.6365133Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:44:38.0986928Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:44:38.0986928Z\",\r\n \"endTime\": \"2015-12-21T19:44:39.6365133Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -618,19 +618,19 @@ "chunked" ], "request-id": [ - "c27153a7-fcc4-4fc7-b952-860930013eeb" + "4974907c-fa19-4916-90a3-7bc757903fe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ed1404dc-96b2-42e7-bac6-9a9a710bafd6" + "5c7918f1-cfcd-4eab-b4e0-0ac4e1141dff" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,22 +639,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/filterTestId1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGVzdElkMT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTestId1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGVzdElkMT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "53aff166-d070-4c0a-b5c4-3e75091e1c81" + "76f5b624-87ac-4e58-b338-bfeb15784422" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -664,19 +664,19 @@ "chunked" ], "request-id": [ - "79320f45-b69b-48a9-b7fd-a9d1c874e89e" + "fff5e724-c85b-45fc-8457-7ceaae1e65bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "53aff166-d070-4c0a-b5c4-3e75091e1c81" + "76f5b624-87ac-4e58-b338-bfeb15784422" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -685,22 +685,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/filterTestId2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGVzdElkMj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTestId2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGVzdElkMj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "009fd05d-b62c-419b-aaa7-423893c401a3" + "6fc6cca7-b06a-4fb6-94c6-d5a59e0bd7e2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -710,19 +710,19 @@ "chunked" ], "request-id": [ - "068a1aa3-8b3e-4099-9148-0622674e2e1d" + "95b8919f-8f42-4937-b668-c78e790fbbc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "009fd05d-b62c-419b-aaa7-423893c401a3" + "6fc6cca7-b06a-4fb6-94c6-d5a59e0bd7e2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -731,22 +731,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/thirdtestId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGhpcmR0ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/thirdtestId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGhpcmR0ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "049cab57-e4c6-445a-a70e-c8058a4692cf" + "dd6ccb2b-2822-4cee-9425-1d6338ac9490" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -756,19 +756,19 @@ "chunked" ], "request-id": [ - "f2c81381-50e3-4d60-8d04-6d8cbb534748" + "8654c336-52eb-4c60-aac6-ea0e9e8a1907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "049cab57-e4c6-445a-a70e-c8058a4692cf" + "dd6ccb2b-2822-4cee-9425-1d6338ac9490" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:57:05 GMT" + "Mon, 21 Dec 2015 19:44:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json index 6e5db15aa4f7..a64a3dd1753e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-request-id": [ - "45de59e9-6192-44bc-a034-218fb7a54ec5" + "c3411c35-f007-4d53-b494-bfe93be46563" ], "x-ms-correlation-request-id": [ - "45de59e9-6192-44bc-a034-218fb7a54ec5" + "c3411c35-f007-4d53-b494-bfe93be46563" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005432Z:45de59e9-6192-44bc-a034-218fb7a54ec5" + "WESTUS:20151221T194559Z:c3411c35-f007-4d53-b494-bfe93be46563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:54:31 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14993" ], "x-ms-request-id": [ - "d7f3cf44-cd37-4f32-88b4-dcc57bd4bc12" + "f042a29b-d0a1-494a-8ab8-b9e86df3bfa9" ], "x-ms-correlation-request-id": [ - "d7f3cf44-cd37-4f32-88b4-dcc57bd4bc12" + "f042a29b-d0a1-494a-8ab8-b9e86df3bfa9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005539Z:d7f3cf44-cd37-4f32-88b4-dcc57bd4bc12" + "WESTUS:20151221T194706Z:f042a29b-d0a1-494a-8ab8-b9e86df3bfa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:55:38 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1e2006dc-1e1c-4013-8e3b-a43ad70b75da" + "99c14f84-a646-429d-97ee-f498066d8ea7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14991" ], "x-ms-request-id": [ - "780c0a83-cc6b-4a24-b3b6-2a8542f568cb" + "eb7783f4-e9ea-42da-8575-85187469c8b6" ], "x-ms-correlation-request-id": [ - "780c0a83-cc6b-4a24-b3b6-2a8542f568cb" + "eb7783f4-e9ea-42da-8575-85187469c8b6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005433Z:780c0a83-cc6b-4a24-b3b6-2a8542f568cb" + "WESTUS:20151221T194600Z:eb7783f4-e9ea-42da-8575-85187469c8b6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:54:33 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "ETag": [ - "0x8D2EA32AAC3AA50" + "0x8D30A3F59CDAC3B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:55:40 GMT" + "Mon, 21 Dec 2015 19:47:05 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d67471e0-e5e7-420b-a4a1-7d664f119bdc" + "8a0ac30a-6620-47eb-9d46-920bf1146edc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14990" ], "x-ms-request-id": [ - "6b98f6e6-518a-491d-9892-a0a8dd5e2699" + "2cd754e2-be83-4b9d-83f6-4f420ac6e9f2" ], "x-ms-correlation-request-id": [ - "6b98f6e6-518a-491d-9892-a0a8dd5e2699" + "2cd754e2-be83-4b9d-83f6-4f420ac6e9f2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005539Z:6b98f6e6-518a-491d-9892-a0a8dd5e2699" + "WESTUS:20151221T194706Z:2cd754e2-be83-4b9d-83f6-4f420ac6e9f2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:55:39 GMT" + "Mon, 21 Dec 2015 19:47:05 GMT" ], "ETag": [ - "0x8D2EA32D239186E" + "0x8D30A3F8118CFFD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d89750d1-8350-4fc8-987e-ae41e7207203" + "6934e531-124a-4313-a342-111200237342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1194" ], "x-ms-request-id": [ - "e8618f63-3c13-45e8-ab5b-3350f3c5bcb3" + "6df85c49-0c01-44ad-9b6c-772af740f2b7" ], "x-ms-correlation-request-id": [ - "e8618f63-3c13-45e8-ab5b-3350f3c5bcb3" + "6df85c49-0c01-44ad-9b6c-772af740f2b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005433Z:e8618f63-3c13-45e8-ab5b-3350f3c5bcb3" + "WESTUS:20151221T194601Z:6df85c49-0c01-44ad-9b6c-772af740f2b7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:54:33 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "e5d2e7d1-8964-4809-9f10-a55e134664d6" + "3e3c3f0d-efa9-4edc-aebb-4e0cfe96a280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1193" ], "x-ms-request-id": [ - "3a941c5f-5596-4106-93fd-6f40892718a4" + "cc7c7e4b-3c5f-474c-97aa-bf8afc76d527" ], "x-ms-correlation-request-id": [ - "3a941c5f-5596-4106-93fd-6f40892718a4" + "cc7c7e4b-3c5f-474c-97aa-bf8afc76d527" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005540Z:3a941c5f-5596-4106-93fd-6f40892718a4" + "WESTUS:20151221T194706Z:cc7c7e4b-3c5f-474c-97aa-bf8afc76d527" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:55:39 GMT" + "Mon, 21 Dec 2015 19:47:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"runOnceId\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "92" ], "client-request-id": [ - "bba5f1cd-c7f4-4d33-9218-75fb8f94d15c" + "948101e6-95cf-4c6e-8e94-d3fac927b7c2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:33 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a3e5df3e-5d59-4c67-8c1d-94d9e3c81f7f" + "919a13f0-8a75-403b-89ad-52a98ca306b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bba5f1cd-c7f4-4d33-9218-75fb8f94d15c" + "948101e6-95cf-4c6e-8e94-d3fac927b7c2" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "ETag": [ - "0x8D2EA32AA782E49" + "0x8D30A3F59D7B0DB" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,47 +401,47 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testJobSchedule\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testJobSchedule\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "211" + "173" ], "client-request-id": [ - "17019bc2-7f4e-4288-846c-e89d5a80b5fc" + "2e14002e-5097-4624-ba0c-b65c37e2ee3c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "41a2fc83-31d3-4b08-83bd-7861b221221e" + "231c7167-eddd-42c6-b38c-6048c0aee383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "17019bc2-7f4e-4288-846c-e89d5a80b5fc" + "2e14002e-5097-4624-ba0c-b65c37e2ee3c" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule" ], "Date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "db54a708-da43-43e8-a4d6-1811dbc7f158" + "8697781d-dc47-4845-a528-ab3881ba1dad" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "930a7f81-fb97-4732-8ead-9fa31bb77381" + "3c55e228-6568-4069-a482-061a737ed97c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "db54a708-da43-43e8-a4d6-1811dbc7f158" + "8697781d-dc47-4845-a528-ab3881ba1dad" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "47ba93dc-b065-481b-b2f2-f95aeb2e2dac" + "cd254a91-ac48-494c-9f09-aab38466b659" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4f7445cd-3339-4047-88bc-26f8663fa149" + "a4bfba06-7ba8-4355-a086-01a46fb15e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "47ba93dc-b065-481b-b2f2-f95aeb2e2dac" + "cd254a91-ac48-494c-9f09-aab38466b659" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,53 +575,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b970d64e-fc3f-496a-9561-6474dce1f88f" + "5e0b3884-9d13-44f7-9230-f8273f0ed559" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:39 GMT" + "Mon, 21 Dec 2015 19:46:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2fa3f13b-4248-48f0-bbc2-fe499f5fd4db" + "1b48ecaf-9906-43b3-8475-d01a8ade23c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b970d64e-fc3f-496a-9561-6474dce1f88f" + "5e0b3884-9d13-44f7-9230-f8273f0ed559" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:54:40 GMT" + "Mon, 21 Dec 2015 19:46:06 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -630,53 +630,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "94d4326c-1ee9-4ea1-904b-b89b55dfe163" + "e870a623-8f72-42f6-b3b8-8a258e6eac4d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:45 GMT" + "Mon, 21 Dec 2015 19:46:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b00631b2-25f9-48b6-840e-3b6f4559f52d" + "0a118a4c-378b-4b4d-8ab7-103b6c0641ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "94d4326c-1ee9-4ea1-904b-b89b55dfe163" + "e870a623-8f72-42f6-b3b8-8a258e6eac4d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:54:45 GMT" + "Mon, 21 Dec 2015 19:46:11 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -685,53 +685,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6f0bda4c-78e7-4ce9-ba49-02aafda42ff1" + "ec645867-a4e1-495b-bca9-8b78f09701e5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:50 GMT" + "Mon, 21 Dec 2015 19:46:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1279648f-0796-40ca-92b4-a4e4261477f0" + "183f5d03-0edb-4023-af2a-9145f2985e87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6f0bda4c-78e7-4ce9-ba49-02aafda42ff1" + "ec645867-a4e1-495b-bca9-8b78f09701e5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:54:50 GMT" + "Mon, 21 Dec 2015 19:46:16 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -740,53 +740,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4c21da70-9b75-4f24-9b82-649b90da1bb9" + "fc7fd5d0-ca5c-4930-88ca-0a9dfee3b94d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:55 GMT" + "Mon, 21 Dec 2015 19:46:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f406892d-55b2-4577-96b7-882080d3ce60" + "6b3bbdca-0bb7-420c-afe4-983af4547ba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4c21da70-9b75-4f24-9b82-649b90da1bb9" + "fc7fd5d0-ca5c-4930-88ca-0a9dfee3b94d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:54:55 GMT" + "Mon, 21 Dec 2015 19:46:21 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -795,53 +795,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9171ec16-65da-4abe-89b4-bbf31c161afd" + "6efdd121-cff8-4f8f-b657-c7f4cf8822bb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:00 GMT" + "Mon, 21 Dec 2015 19:46:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bfa7a1ad-771b-4b1f-a9b3-baa08d63d3e6" + "ea513479-8866-4646-b114-717c5833f3f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9171ec16-65da-4abe-89b4-bbf31c161afd" + "6efdd121-cff8-4f8f-b657-c7f4cf8822bb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:00 GMT" + "Mon, 21 Dec 2015 19:46:25 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -850,53 +850,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de109948-d1f5-47c2-b066-42757a8038a0" + "d6b49684-f393-49fb-957b-e292c769eb77" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:05 GMT" + "Mon, 21 Dec 2015 19:46:32 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6eb6f07d-bb67-46ed-acbd-5d6c4dc9bd40" + "a2a32137-d8f4-40eb-8740-304d257c458d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de109948-d1f5-47c2-b066-42757a8038a0" + "d6b49684-f393-49fb-957b-e292c769eb77" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:05 GMT" + "Mon, 21 Dec 2015 19:46:31 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -905,53 +905,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9f566a29-930f-4e34-884a-9368ca13b2dd" + "a3413106-17d7-4180-9880-1d1b1b7b4d43" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:10 GMT" + "Mon, 21 Dec 2015 19:46:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f414996d-dd6e-45fe-81c6-dc7e73f2325c" + "1949c2e4-955b-4ad2-ad27-6931d8dcf251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9f566a29-930f-4e34-884a-9368ca13b2dd" + "a3413106-17d7-4180-9880-1d1b1b7b4d43" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:10 GMT" + "Mon, 21 Dec 2015 19:46:36 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -960,53 +960,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "824c76db-3c58-4fef-b4e2-cc050e27515d" + "db254742-caed-4f11-9a34-09d24e452431" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:15 GMT" + "Mon, 21 Dec 2015 19:46:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7fb5c59b-16fe-4ba4-959f-4c93ee9c0033" + "481768e2-e6ed-4a30-becd-a56bb5053f86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "824c76db-3c58-4fef-b4e2-cc050e27515d" + "db254742-caed-4f11-9a34-09d24e452431" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:15 GMT" + "Mon, 21 Dec 2015 19:46:42 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1015,53 +1015,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7212c165-6ec7-45b8-af94-af4da291a26e" + "9b79e503-2337-4d40-8b51-178610856f05" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:20 GMT" + "Mon, 21 Dec 2015 19:46:48 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "540ecbf2-4281-4a19-a64d-4253bd9db660" + "e99eb302-15f7-4ce4-aba4-c3b5c03c8c1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7212c165-6ec7-45b8-af94-af4da291a26e" + "9b79e503-2337-4d40-8b51-178610856f05" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:21 GMT" + "Mon, 21 Dec 2015 19:46:47 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1070,53 +1070,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "733f9365-152e-49c1-afd9-62520c35fd31" + "56146947-f607-49d0-83f6-888ce2add9bc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:25 GMT" + "Mon, 21 Dec 2015 19:46:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7415a32b-9d6a-41fb-895c-bf38bf6877d1" + "891132ef-b9d8-4511-82cf-b8dc45defd1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "733f9365-152e-49c1-afd9-62520c35fd31" + "56146947-f607-49d0-83f6-888ce2add9bc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:26 GMT" + "Mon, 21 Dec 2015 19:46:51 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1125,53 +1125,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "74c44d7e-fa06-4537-b73f-faca77e021ad" + "1553ed08-fa77-4d08-ae32-4ffc82ee65ca" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:30 GMT" + "Mon, 21 Dec 2015 19:46:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:55:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:46:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6afea27a-2088-49cb-8c36-6a9a066738ba" + "813943e0-726f-481c-8d11-8af7208cd694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "74c44d7e-fa06-4537-b73f-faca77e021ad" + "1553ed08-fa77-4d08-ae32-4ffc82ee65ca" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:31 GMT" + "Mon, 21 Dec 2015 19:46:57 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1180,53 +1180,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aee61c6e-348c-4fd4-9a07-a7ad81175d3f" + "d0cfcc98-595b-4498-a7a7-3c09bc2de42a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:35 GMT" + "Mon, 21 Dec 2015 19:47:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:56:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:47:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ef62eb18-5f08-4de2-8aa7-3fb7b1e42fbe" + "e34eb137-2111-4a71-9845-6f990e601295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "aee61c6e-348c-4fd4-9a07-a7ad81175d3f" + "d0cfcc98-595b-4498-a7a7-3c09bc2de42a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:36 GMT" + "Mon, 21 Dec 2015 19:47:02 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1235,53 +1235,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f1cd46ad-b418-4658-a541-dc04ea11fcfa" + "588b9d00-d769-48be-beac-8d8830c66753" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:39 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2EA32AAA437DA\",\r\n \"lastModified\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.4814554Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-11-11T00:56:34.4814554Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D30A3F5A030AED\",\r\n \"lastModified\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.8738157Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-12-21T19:47:59.8738157Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:45:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "97def514-90cb-4b88-928b-4b7f976d0764" + "deb7d7f9-8f36-46cf-a995-9ad8eef36123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f1cd46ad-b418-4658-a541-dc04ea11fcfa" + "588b9d00-d769-48be-beac-8d8830c66753" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:05 GMT" ], "ETag": [ - "0x8D2EA32AAA437DA" + "0x8D30A3F5A030AED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testJobSchedule:job-1?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYlNjaGVkdWxlJTNBam9iLTE/dGVybWluYXRlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testJobSchedule:job-1?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYlNjaGVkdWxlJTNBam9iLTE/dGVybWluYXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -1302,35 +1302,35 @@ "2" ], "client-request-id": [ - "2bf5dc46-8da8-4d2c-9fa4-bd372b647e1f" + "95f7b4de-02fc-4549-bd35-1458c474d3f5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2d387920-b31d-4faa-b553-63ee3cc761ec" + "0d102a1b-f762-4007-92a0-55ca2b18129d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2bf5dc46-8da8-4d2c-9fa4-bd372b647e1f" + "95f7b4de-02fc-4549-bd35-1458c474d3f5" ], "DataServiceVersion": [ "3.0" @@ -1339,10 +1339,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:54:34 GMT" + "Mon, 21 Dec 2015 19:46:00 GMT" ], "ETag": [ - "0x8D2EA32AAE57241" + "0x8D30A3F5A42E555" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1351,26 +1351,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c6f1598c-942c-456d-9514-9df90e7eee52" + "14c993fd-0fb0-4203-8283-1d3e5309eee3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:40 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"runOnceId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/runOnceId\",\r\n \"eTag\": \"0x8D2EA32AA782E49\",\r\n \"lastModified\": \"2015-11-11T00:54:34.1928521Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.1698438Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:34.1928521Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:54:34.1928521Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2EA32CE73C60E\",\r\n \"lastModified\": \"2015-11-11T00:55:34.561947Z\",\r\n \"creationTime\": \"2015-11-11T00:55:34.4818334Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:55:34.561947Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:55:34.561947Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2EA32AAE57241\",\r\n \"lastModified\": \"2015-11-11T00:54:34.9089345Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.5214466Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"endTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"runOnceId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/runOnceId\",\r\n \"eTag\": \"0x8D30A3F59D7B0DB\",\r\n \"lastModified\": \"2015-12-21T19:45:59.5897051Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.5585039Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:45:59.5897051Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:59.5897051Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D30A3F7DCFC519\",\r\n \"lastModified\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"creationTime\": \"2015-12-21T19:46:59.8743721Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D30A3F5A42E555\",\r\n \"lastModified\": \"2015-12-21T19:46:00.2922837Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.9137563Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"endTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1379,19 +1379,19 @@ "chunked" ], "request-id": [ - "60e668ef-6c9f-4f6b-b38e-e8338f6f5c5f" + "f213b26b-1e2c-4966-b033-01805e7f76c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c6f1598c-942c-456d-9514-9df90e7eee52" + "14c993fd-0fb0-4203-8283-1d3e5309eee3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1400,26 +1400,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGUvam9icz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testJobSchedule/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGUvam9icz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b461bfaa-2637-4417-a328-4b076adb2c55" + "1a1b2c71-1c31-4d91-9b91-bfc5e7e1ea0c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:40 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2EA32CE73C60E\",\r\n \"lastModified\": \"2015-11-11T00:55:34.561947Z\",\r\n \"creationTime\": \"2015-11-11T00:55:34.4818334Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:55:34.561947Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:55:34.561947Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2EA32AAE57241\",\r\n \"lastModified\": \"2015-11-11T00:54:34.9089345Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.5214466Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"endTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D30A3F7DCFC519\",\r\n \"lastModified\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"creationTime\": \"2015-12-21T19:46:59.8743721Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D30A3F5A42E555\",\r\n \"lastModified\": \"2015-12-21T19:46:00.2922837Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.9137563Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"endTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1428,19 +1428,19 @@ "chunked" ], "request-id": [ - "6d26b083-d45b-44ab-b419-089611f07b65" + "9d353206-e46b-4d95-9ed4-6b72f7a7b636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b461bfaa-2637-4417-a328-4b076adb2c55" + "1a1b2c71-1c31-4d91-9b91-bfc5e7e1ea0c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1449,26 +1449,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGUvam9icz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testJobSchedule/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGUvam9icz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "79437bf3-c1c1-4222-996b-44e8b7902f6b" + "ef351c25-6e83-40b4-b209-25d8eff1c80a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:40 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2EA32CE73C60E\",\r\n \"lastModified\": \"2015-11-11T00:55:34.561947Z\",\r\n \"creationTime\": \"2015-11-11T00:55:34.4818334Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:55:34.561947Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:55:34.561947Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2EA32AAE57241\",\r\n \"lastModified\": \"2015-11-11T00:54:34.9089345Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.5214466Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"endTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D30A3F7DCFC519\",\r\n \"lastModified\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"creationTime\": \"2015-12-21T19:46:59.8743721Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:46:59.9357721Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D30A3F5A42E555\",\r\n \"lastModified\": \"2015-12-21T19:46:00.2922837Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.9137563Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"endTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1477,19 +1477,19 @@ "chunked" ], "request-id": [ - "2d78bc3b-9e70-4123-a29f-1918f57b24bc" + "92632fbb-1b78-48f4-a584-81a00236f473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "79437bf3-c1c1-4222-996b-44e8b7902f6b" + "ef351c25-6e83-40b4-b209-25d8eff1c80a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1498,26 +1498,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testJobSchedule/jobs?$filter=id%20eq%20'testJobSchedule:job-1'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGUvam9icz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0Sm9iU2NoZWR1bGUlM0Fqb2ItMSUyNyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobschedules/testJobSchedule/jobs?$filter=id%20eq%20'testJobSchedule:job-1'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGUvam9icz8kZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0Sm9iU2NoZWR1bGUlM0Fqb2ItMSUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c86cb00a-5f71-483b-af4b-b0a88b235984" + "aaf5a4a8-05d3-4450-8d14-f3bdb87b13cd" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:40 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2EA32AAE57241\",\r\n \"lastModified\": \"2015-11-11T00:54:34.9089345Z\",\r\n \"creationTime\": \"2015-11-11T00:54:34.5214466Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:54:34.5414593Z\",\r\n \"endTime\": \"2015-11-11T00:54:35.5966937Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D30A3F5A42E555\",\r\n \"lastModified\": \"2015-12-21T19:46:00.2922837Z\",\r\n \"creationTime\": \"2015-12-21T19:45:59.9137563Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:45:59.9407455Z\",\r\n \"endTime\": \"2015-12-21T19:46:00.6802026Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1526,19 +1526,19 @@ "chunked" ], "request-id": [ - "fa6b481a-7b08-46b4-8050-ba6e94a25cb3" + "0df14be2-16d9-4ad2-bf64-55e1a9c1d709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c86cb00a-5f71-483b-af4b-b0a88b235984" + "aaf5a4a8-05d3-4450-8d14-f3bdb87b13cd" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1547,22 +1547,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/runOnceId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvcnVuT25jZUlkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/runOnceId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvcnVuT25jZUlkP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "09413f1e-eef9-4dc5-b0b6-d92cd2e65b32" + "48ee6e42-3528-44a8-b1ab-8e1638774d08" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:40 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1572,19 +1572,19 @@ "chunked" ], "request-id": [ - "1ed29c5e-7993-404d-a4b5-c9403760da11" + "0f26f6ea-ba81-469e-8e21-4b9a82959695" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "09413f1e-eef9-4dc5-b0b6-d92cd2e65b32" + "48ee6e42-3528-44a8-b1ab-8e1638774d08" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1593,22 +1593,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testJobSchedule:job-1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYlNjaGVkdWxlJTNBam9iLTE/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testJobSchedule:job-1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYlNjaGVkdWxlJTNBam9iLTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "642f3471-cb2d-4fe6-ab0c-21c1d8388e20" + "44727f15-b6b3-4658-8676-8dc5924d0981" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1618,19 +1618,19 @@ "chunked" ], "request-id": [ - "9556cb9d-5b8e-4847-93c8-51ccbd06b88d" + "9b37b7f6-e827-41db-beb7-b836c0c75fbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "642f3471-cb2d-4fe6-ab0c-21c1d8388e20" + "44727f15-b6b3-4658-8676-8dc5924d0981" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1639,22 +1639,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testJobSchedule:job-2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYlNjaGVkdWxlJTNBam9iLTI/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testJobSchedule:job-2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYlNjaGVkdWxlJTNBam9iLTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dca3dafc-3961-4491-b039-3f313633d66c" + "18c00261-3f92-44e6-8e80-c71056388d58" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1664,19 +1664,19 @@ "chunked" ], "request-id": [ - "00a130c4-dd5e-46d3-8cfe-4e9b275d1de0" + "573931a7-5c7c-4a11-8b62-af4b97aa67cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dca3dafc-3961-4491-b039-3f313633d66c" + "18c00261-3f92-44e6-8e80-c71056388d58" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1685,22 +1685,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobschedules/testJobSchedule?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0Sm9iU2NoZWR1bGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "268f8509-23fc-4444-945a-79aa873c99f1" + "a1503b71-267b-4afc-8e81-4423ec091988" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -1710,19 +1710,19 @@ "chunked" ], "request-id": [ - "c0581057-7992-4bdc-b9c3-8fc5f3995427" + "de97ef99-c255-4261-96d1-b0896a65feb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "268f8509-23fc-4444-945a-79aa873c99f1" + "a1503b71-267b-4afc-8e81-4423ec091988" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:55:41 GMT" + "Mon, 21 Dec 2015 19:47:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json index 3a225fc7ae84..a5a3777625ec 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14995" ], "x-ms-request-id": [ - "bfa6fc80-b4d1-4d76-8b5f-44bf514f6082" + "86ee38c5-6af8-4a6e-b733-5331cc15b315" ], "x-ms-correlation-request-id": [ - "bfa6fc80-b4d1-4d76-8b5f-44bf514f6082" + "86ee38c5-6af8-4a6e-b733-5331cc15b315" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005154Z:bfa6fc80-b4d1-4d76-8b5f-44bf514f6082" + "CENTRALUS:20151221T194034Z:86ee38c5-6af8-4a6e-b733-5331cc15b315" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:53 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14994" ], "x-ms-request-id": [ - "95627dfc-8723-4473-a84e-2f74de47c2b4" + "ab52e985-4498-4dd5-95ef-4e1a749c1312" ], "x-ms-correlation-request-id": [ - "95627dfc-8723-4473-a84e-2f74de47c2b4" + "ab52e985-4498-4dd5-95ef-4e1a749c1312" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005159Z:95627dfc-8723-4473-a84e-2f74de47c2b4" + "CENTRALUS:20151221T194039Z:ab52e985-4498-4dd5-95ef-4e1a749c1312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:58 GMT" + "Mon, 21 Dec 2015 19:40:38 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "77ef920a-a50e-4a6f-b607-221f6360783c" + "dddc7b43-275c-4cd6-8540-3720990b9917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14975" ], "x-ms-request-id": [ - "18484201-5c0b-409b-b70e-811ea5f60f22" + "557acaf8-64cb-48f1-a0fc-27bd974717c7" ], "x-ms-correlation-request-id": [ - "18484201-5c0b-409b-b70e-811ea5f60f22" + "557acaf8-64cb-48f1-a0fc-27bd974717c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005155Z:18484201-5c0b-409b-b70e-811ea5f60f22" + "CENTRALUS:20151221T194035Z:557acaf8-64cb-48f1-a0fc-27bd974717c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:55 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "ETag": [ - "0x8D2EA324C9042A1" + "0x8D30A3E97D57CF2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:38 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0a718021-43bf-41ef-bbf3-b0cd6198c326" + "350f60c1-20a5-414c-994d-8ff7b549beb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14974" ], "x-ms-request-id": [ - "3e27294a-ec20-47e4-bdba-1a5685d8ceeb" + "95bbeb6f-5429-4202-9d62-1812f2b9ab14" ], "x-ms-correlation-request-id": [ - "3e27294a-ec20-47e4-bdba-1a5685d8ceeb" + "95bbeb6f-5429-4202-9d62-1812f2b9ab14" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005159Z:3e27294a-ec20-47e4-bdba-1a5685d8ceeb" + "CENTRALUS:20151221T194039Z:95bbeb6f-5429-4202-9d62-1812f2b9ab14" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:59 GMT" + "Mon, 21 Dec 2015 19:40:38 GMT" ], "ETag": [ - "0x8D2EA324F05C3B4" + "0x8D30A3E9A28FF4D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "8447459d-43dd-474b-951e-d7a16028eede" + "961e3802-b496-4e4b-8e9f-9a9bfd27c42e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "9f224367-39ab-471c-ad94-0e7a9db0aa7c" + "fc3ade88-e1f2-47ef-9aff-45cbeefd94ab" ], "x-ms-correlation-request-id": [ - "9f224367-39ab-471c-ad94-0e7a9db0aa7c" + "fc3ade88-e1f2-47ef-9aff-45cbeefd94ab" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005155Z:9f224367-39ab-471c-ad94-0e7a9db0aa7c" + "CENTRALUS:20151221T194035Z:fc3ade88-e1f2-47ef-9aff-45cbeefd94ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:55 GMT" + "Mon, 21 Dec 2015 19:40:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "cc42bac1-16e0-4174-843e-57a91f87b9d2" + "edde76dd-b5bb-427c-8c04-ed4b0bb3eff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "04165272-4fda-48e3-9f79-b8b367cd05e5" + "61966c3c-268b-4cde-bcd7-949c68a573a4" ], "x-ms-correlation-request-id": [ - "04165272-4fda-48e3-9f79-b8b367cd05e5" + "61966c3c-268b-4cde-bcd7-949c68a573a4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005159Z:04165272-4fda-48e3-9f79-b8b367cd05e5" + "CENTRALUS:20151221T194039Z:61966c3c-268b-4cde-bcd7-949c68a573a4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:51:59 GMT" + "Mon, 21 Dec 2015 19:40:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testId1\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "90" ], "client-request-id": [ - "5bbb9b33-d9f0-4eae-873f-e0c55f736726" + "44afe0b2-4fc4-4083-b96b-dec9bcbbb639" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:55 GMT" + "Mon, 21 Dec 2015 19:40:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "12a27af1-0d35-4c82-b79c-e0ca32fb3547" + "89d4fd73-0c2d-4db4-b44e-f214301f85bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5bbb9b33-d9f0-4eae-873f-e0c55f736726" + "44afe0b2-4fc4-4083-b96b-dec9bcbbb639" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "ETag": [ - "0x8D2EA324C406117" + "0x8D30A3E97E99873" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testId2\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "90" ], "client-request-id": [ - "6da0b063-800c-42a2-94c9-0f258ea5e933" + "6e2379a0-2813-408c-95a9-150b9725042b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bffd255d-9d74-448a-ba70-8cccbfc83ea9" + "28ae1498-8631-4ba1-a06f-8e9bc8804df0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6da0b063-800c-42a2-94c9-0f258ea5e933" + "6e2379a0-2813-408c-95a9-150b9725042b" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "ETag": [ - "0x8D2EA324C65DEBF" + "0x8D30A3E980F6651" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"thirdtestId\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "94" ], "client-request-id": [ - "86c65775-225e-4334-9bad-25eab01d6846" + "623cc3cf-6579-40ec-a2bc-b896a03ca258" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e86770ec-9153-4309-aa44-442dc21b979f" + "fe68413b-95d2-4ce0-a528-ff9a5cbce809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "86c65775-225e-4334-9bad-25eab01d6846" + "623cc3cf-6579-40ec-a2bc-b896a03ca258" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:51:56 GMT" + "Mon, 21 Dec 2015 19:40:34 GMT" ], "ETag": [ - "0x8D2EA324C865CB7" + "0x8D30A3E983CC73E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "15574d85-30bc-4617-bd6d-62b9437bc1be" + "c6770e66-b20c-4471-91e6-26fb2294d844" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:51:59 GMT" + "Mon, 21 Dec 2015 19:40:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1\",\r\n \"eTag\": \"0x8D2EA324C406117\",\r\n \"lastModified\": \"2015-11-11T00:51:56.1213207Z\",\r\n \"creationTime\": \"2015-11-11T00:51:56.0994294Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:51:56.1213207Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:51:56.1213207Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2\",\r\n \"eTag\": \"0x8D2EA324C65DEBF\",\r\n \"lastModified\": \"2015-11-11T00:51:56.3670207Z\",\r\n \"creationTime\": \"2015-11-11T00:51:56.323301Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:51:56.3670207Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:51:56.3670207Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId\",\r\n \"eTag\": \"0x8D2EA324C865CB7\",\r\n \"lastModified\": \"2015-11-11T00:51:56.5799607Z\",\r\n \"creationTime\": \"2015-11-11T00:51:56.5629614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:51:56.5799607Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:51:56.5799607Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId1\",\r\n \"eTag\": \"0x8D30A3E97E99873\",\r\n \"lastModified\": \"2015-12-21T19:40:34.2290547Z\",\r\n \"creationTime\": \"2015-12-21T19:40:34.1676755Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:40:34.2290547Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:40:34.2290547Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testId2\",\r\n \"eTag\": \"0x8D30A3E980F6651\",\r\n \"lastModified\": \"2015-12-21T19:40:34.4768081Z\",\r\n \"creationTime\": \"2015-12-21T19:40:34.4291407Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:40:34.4768081Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:40:34.4768081Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/thirdtestId\",\r\n \"eTag\": \"0x8D30A3E983CC73E\",\r\n \"lastModified\": \"2015-12-21T19:40:34.7742014Z\",\r\n \"creationTime\": \"2015-12-21T19:40:34.7157642Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:40:34.7742014Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:40:34.7742014Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "de684af1-307a-4db8-98e9-1b91adb265ae" + "598b7560-8826-4d14-a6a1-c0af965d0a7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "15574d85-30bc-4617-bd6d-62b9437bc1be" + "c6770e66-b20c-4471-91e6-26fb2294d844" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:52:01 GMT" + "Mon, 21 Dec 2015 19:40:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testId1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdElkMT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testId1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdElkMT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f4bc785f-96ff-4aca-87f9-116025209557" + "27ace9fc-7baf-45fd-b43e-790186d00802" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "712b3850-1604-4ae8-b0a5-29f51b2a0591" + "5c6b81f4-b8bf-4c0b-b0e1-cc16853dc5ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f4bc785f-96ff-4aca-87f9-116025209557" + "27ace9fc-7baf-45fd-b43e-790186d00802" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testId2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdElkMj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testId2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdElkMj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "491b994f-ae47-4293-9f0c-f3803d48710a" + "b76e1c3f-abab-4f3e-802a-0055e5724ba3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:40 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "454485bf-2002-4a53-9fdf-cd485acdf419" + "940d3f56-441e-4351-81e8-b7600a6e90cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "491b994f-ae47-4293-9f0c-f3803d48710a" + "b76e1c3f-abab-4f3e-802a-0055e5724ba3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/thirdtestId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGhpcmR0ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/thirdtestId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGhpcmR0ZXN0SWQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe9bf58f-7e36-47bc-a910-b032f317756f" + "ef85ce2c-58aa-414e-9b0b-0cd6de205cfc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:40 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "44294534-63b8-4248-930a-b348ff090d50" + "d1b8beb5-46a8-4343-aeee-8b68575a7de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fe9bf58f-7e36-47bc-a910-b032f317756f" + "ef85ce2c-58aa-414e-9b0b-0cd6de205cfc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:52:00 GMT" + "Mon, 21 Dec 2015 19:40:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestNewJob.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestNewJob.json index ea6cf3bcabf7..02f21600aa61 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestNewJob.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestNewJob.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14993" ], "x-ms-request-id": [ - "bbe1592b-90a8-431c-a706-ce020a25186f" + "55d6c7ac-e534-42b9-895d-9ad4f9ed9c7c" ], "x-ms-correlation-request-id": [ - "bbe1592b-90a8-431c-a706-ce020a25186f" + "55d6c7ac-e534-42b9-895d-9ad4f9ed9c7c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005831Z:bbe1592b-90a8-431c-a706-ce020a25186f" + "CENTRALUS:20151221T194401Z:55d6c7ac-e534-42b9-895d-9ad4f9ed9c7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:58:31 GMT" + "Mon, 21 Dec 2015 19:44:01 GMT" ] }, "StatusCode": 200 @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:00 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3667714f-564f-4a46-a446-111ca9adcb79" + "5cb33f46-85b0-4812-91d2-883bf9925d18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14983" ], "x-ms-request-id": [ - "a85c3901-11fb-45ad-aaf9-bcdad726af0a" + "88f24baf-e20f-4b46-8dd7-028ea2572964" ], "x-ms-correlation-request-id": [ - "a85c3901-11fb-45ad-aaf9-bcdad726af0a" + "88f24baf-e20f-4b46-8dd7-028ea2572964" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005833Z:a85c3901-11fb-45ad-aaf9-bcdad726af0a" + "CENTRALUS:20151221T194402Z:88f24baf-e20f-4b46-8dd7-028ea2572964" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:58:32 GMT" + "Mon, 21 Dec 2015 19:44:01 GMT" ], "ETag": [ - "0x8D2EA33390A54E4" + "0x8D30A3F12D6E014" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,7 +139,7 @@ "no-cache" ], "request-id": [ - "5ef81eca-0ceb-4879-9da5-2bec90190843" + "ebd54714-c6a0-47fb-b429-8a5acbdf3e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "1195" ], "x-ms-request-id": [ - "051eccf1-b992-4eb3-a810-5039a55d6ccf" + "9405459a-676f-42b9-96cd-9afdd3c381a5" ], "x-ms-correlation-request-id": [ - "051eccf1-b992-4eb3-a810-5039a55d6ccf" + "9405459a-676f-42b9-96cd-9afdd3c381a5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005833Z:051eccf1-b992-4eb3-a810-5039a55d6ccf" + "CENTRALUS:20151221T194402Z:9405459a-676f-42b9-96cd-9afdd3c381a5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:58:32 GMT" + "Mon, 21 Dec 2015 19:44:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"simple\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -181,35 +181,35 @@ "89" ], "client-request-id": [ - "b5069107-ca4e-44ce-bd77-96f2b2e2de28" + "3ccaccad-3fef-4bd5-88fd-ee0b33030de9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:58:32 GMT" + "Mon, 21 Dec 2015 19:44:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c54602fb-bd98-46d2-a629-1b2a60477b12" + "5306d816-f3c8-4f58-887f-1080ed393dec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b5069107-ca4e-44ce-bd77-96f2b2e2de28" + "3ccaccad-3fef-4bd5-88fd-ee0b33030de9" ], "DataServiceVersion": [ "3.0" @@ -218,10 +218,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:00 GMT" ], "ETag": [ - "0x8D2EA333920FF05" + "0x8D30A3F1346B891" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -233,8 +233,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\"\r\n },\r\n \"killJobOnCompletion\": false,\r\n \"runElevated\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonEnv1\",\r\n \"value\": \"envValue1\"\r\n },\r\n {\r\n \"name\": \"commonEnv2\",\r\n \"value\": \"envValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 3,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\"\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789ABCDEF\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"localmachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -245,35 +245,35 @@ "2797" ], "client-request-id": [ - "f55f3ce5-70ae-4d5b-9b0c-038d7b35af2d" + "cc308b99-c5c2-49ac-bb2b-408c993b2c0c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:58:34 GMT" + "Mon, 21 Dec 2015 19:44:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c21c51da-5a70-46b6-9317-d512b49b3249" + "a1498614-d727-4664-a09f-b7c586713c14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f55f3ce5-70ae-4d5b-9b0c-038d7b35af2d" + "cc308b99-c5c2-49ac-bb2b-408c993b2c0c" ], "DataServiceVersion": [ "3.0" @@ -282,10 +282,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:02 GMT" ], "ETag": [ - "0x8D2EA33396D7094" + "0x8D30A3F139AD831" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -297,53 +297,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2ltcGxlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2ltcGxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5d5b6aca-dc28-4fe3-9490-cbc0d10f3650" + "c863dde0-5352-4f53-841e-8b2451ceabe6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/simple\",\r\n \"eTag\": \"0x8D2EA333920FF05\",\r\n \"lastModified\": \"2015-11-11T00:58:33.5356677Z\",\r\n \"creationTime\": \"2015-11-11T00:58:33.4936689Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:58:33.5356677Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:58:33.5356677Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/simple\",\r\n \"eTag\": \"0x8D30A3F1346B891\",\r\n \"lastModified\": \"2015-12-21T19:44:01.1991185Z\",\r\n \"creationTime\": \"2015-12-21T19:44:01.1801157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:44:01.1991185Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:44:01.1991185Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7d34869c-79a8-4239-b70f-3af9bb445575" + "4ac39369-dddf-4997-91e6-b8de3da4db63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5d5b6aca-dc28-4fe3-9490-cbc0d10f3650" + "c863dde0-5352-4f53-841e-8b2451ceabe6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:00 GMT" ], "ETag": [ - "0x8D2EA333920FF05" + "0x8D30A3F1346B891" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,53 +352,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY29tcGxleD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY29tcGxleD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b368ad92-65af-4aff-940e-27393fdac3cc" + "23128ea0-4299-477f-87d0-106b98366e15" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/complex\",\r\n \"eTag\": \"0x8D2EA33396D7094\",\r\n \"lastModified\": \"2015-11-11T00:58:34.0366484Z\",\r\n \"creationTime\": \"2015-11-11T00:58:33.9839318Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:58:34.0366484Z\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false,\r\n \"waitForSuccess\": true,\r\n \"rerunOnNodeRebootAfterSuccess\": true\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"maxWallClockTime\": \"PT15M\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonEnv1\",\r\n \"value\": \"envValue1\"\r\n },\r\n {\r\n \"name\": \"commonEnv2\",\r\n \"value\": \"envValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:58:34.0366484Z\",\r\n \"poolId\": \"TestSpecPrefix_254C4E34-60B2-4589-9A49-9A2AE169A493\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/complex\",\r\n \"eTag\": \"0x8D30A3F139AD831\",\r\n \"lastModified\": \"2015-12-21T19:44:01.7504305Z\",\r\n \"creationTime\": \"2015-12-21T19:44:01.6950462Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:44:01.7504305Z\",\r\n \"priority\": 1,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n },\r\n \"jobPreparationTask\": {\r\n \"id\": \"jobPrep\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobPrepFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobPrepName1\",\r\n \"value\": \"jobPrepValue1\"\r\n },\r\n {\r\n \"name\": \"jobPrepName2\",\r\n \"value\": \"jobPrepValue2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 2\r\n },\r\n \"runElevated\": false,\r\n \"waitForSuccess\": true,\r\n \"rerunOnNodeRebootAfterSuccess\": true\r\n },\r\n \"jobReleaseTask\": {\r\n \"id\": \"jobRelease\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"jobReleaseFilePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"jobReleaseName1\",\r\n \"value\": \"jobReleaseValue1\"\r\n },\r\n {\r\n \"name\": \"jobReleaseName2\",\r\n \"value\": \"jobReleaseValue2\"\r\n }\r\n ],\r\n \"maxWallClockTime\": \"PT15M\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"runElevated\": false\r\n },\r\n \"commonEnvironmentSettings\": [\r\n {\r\n \"name\": \"commonEnv1\",\r\n \"value\": \"envValue1\"\r\n },\r\n {\r\n \"name\": \"commonEnv2\",\r\n \"value\": \"envValue2\"\r\n }\r\n ],\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:44:01.7504305Z\",\r\n \"poolId\": \"TestSpecPrefix_086C340D-A599-43E9-80F5-5A19831956BC\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:58:34 GMT" + "Mon, 21 Dec 2015 19:44:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5d797706-d1d5-401d-b16d-866609b9af7e" + "abc9a0b1-a277-4a59-861f-875d8d632391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b368ad92-65af-4aff-940e-27393fdac3cc" + "23128ea0-4299-477f-87d0-106b98366e15" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:02 GMT" ], "ETag": [ - "0x8D2EA33396D7094" + "0x8D30A3F139AD831" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -407,22 +407,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2ltcGxlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2ltcGxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fd6cc613-b3be-4d18-ae61-96d13c146615" + "4966c78c-fad7-43c5-8d57-79f7be3bb510" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:58:34 GMT" + "Mon, 21 Dec 2015 19:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -432,19 +432,19 @@ "chunked" ], "request-id": [ - "59e8f3e0-6fa2-48ba-b7d0-13577cd9fcd0" + "1ef62556-89d9-45f4-9713-be90dcfac664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fd6cc613-b3be-4d18-ae61-96d13c146615" + "4966c78c-fad7-43c5-8d57-79f7be3bb510" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,22 +453,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY29tcGxleD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY29tcGxleD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4bbddf64-ae56-4307-82bf-5ef57278fd75" + "593d9989-1693-4e90-9bc2-20e30897d560" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:58:34 GMT" + "Mon, 21 Dec 2015 19:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -478,19 +478,19 @@ "chunked" ], "request-id": [ - "606ebc99-8f13-4f13-949b-d971dde3d954" + "43449ec3-0ee4-404a-8c76-854c70124aa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4bbddf64-ae56-4307-82bf-5ef57278fd75" + "593d9989-1693-4e90-9bc2-20e30897d560" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:58:33 GMT" + "Mon, 21 Dec 2015 19:44:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json index 11dc15481065..5073b95c43c8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14994" ], "x-ms-request-id": [ - "04791fdd-9cb9-46c6-a149-a30383f8fc22" + "1fde1f65-cdf5-4f6c-9d3d-b9ddb213babb" ], "x-ms-correlation-request-id": [ - "04791fdd-9cb9-46c6-a149-a30383f8fc22" + "1fde1f65-cdf5-4f6c-9d3d-b9ddb213babb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005920Z:04791fdd-9cb9-46c6-a149-a30383f8fc22" + "CENTRALUS:20151221T194238Z:1fde1f65-cdf5-4f6c-9d3d-b9ddb213babb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:59:19 GMT" + "Mon, 21 Dec 2015 19:42:38 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14993" ], "x-ms-request-id": [ - "e9b27526-b60e-4d2e-bead-468f0c8ae545" + "18a8e61f-2941-4d21-877b-5e63e3d05629" ], "x-ms-correlation-request-id": [ - "e9b27526-b60e-4d2e-bead-468f0c8ae545" + "18a8e61f-2941-4d21-877b-5e63e3d05629" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005924Z:e9b27526-b60e-4d2e-bead-468f0c8ae545" + "CENTRALUS:20151221T194242Z:18a8e61f-2941-4d21-877b-5e63e3d05629" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:59:24 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:59:22 GMT" + "Mon, 21 Dec 2015 19:42:38 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a6d1277a-ce9b-4989-8f75-ec02197f755c" + "0b797f17-ee62-4686-b22f-f8448ee34a37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14984" ], "x-ms-request-id": [ - "98929d32-fa69-4df6-b217-c9f978fa238f" + "47e368a2-975f-4269-9c3a-7d7dfcfe4e27" ], "x-ms-correlation-request-id": [ - "98929d32-fa69-4df6-b217-c9f978fa238f" + "47e368a2-975f-4269-9c3a-7d7dfcfe4e27" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005921Z:98929d32-fa69-4df6-b217-c9f978fa238f" + "CENTRALUS:20151221T194239Z:47e368a2-975f-4269-9c3a-7d7dfcfe4e27" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:59:20 GMT" + "Mon, 21 Dec 2015 19:42:39 GMT" ], "ETag": [ - "0x8D2EA335655D5A3" + "0x8D30A3EE2445458" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "116818c5-f058-46a2-934a-620185150e17" + "82ee8a08-69a6-4f48-aebb-1b4d318f7643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14983" ], "x-ms-request-id": [ - "989c38a0-3844-4f1d-b479-4f87e2c2bc6d" + "d6396c0f-b8b0-4a62-9b25-ea9e541c411c" ], "x-ms-correlation-request-id": [ - "989c38a0-3844-4f1d-b479-4f87e2c2bc6d" + "d6396c0f-b8b0-4a62-9b25-ea9e541c411c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005924Z:989c38a0-3844-4f1d-b479-4f87e2c2bc6d" + "CENTRALUS:20151221T194242Z:d6396c0f-b8b0-4a62-9b25-ea9e541c411c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:59:24 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ], "ETag": [ - "0x8D2EA335860E8A9" + "0x8D30A3EE43B6D69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "27c0455f-1b89-44d0-899f-ac51fa2e01f0" + "451ac363-1f4f-4e16-b763-c8a944091fb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "3d5f133a-e588-42aa-84d4-2e8eda1b603a" + "abe2eaee-d2c9-4fa3-a37b-cbe72d8bc267" ], "x-ms-correlation-request-id": [ - "3d5f133a-e588-42aa-84d4-2e8eda1b603a" + "abe2eaee-d2c9-4fa3-a37b-cbe72d8bc267" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005921Z:3d5f133a-e588-42aa-84d4-2e8eda1b603a" + "CENTRALUS:20151221T194239Z:abe2eaee-d2c9-4fa3-a37b-cbe72d8bc267" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:59:20 GMT" + "Mon, 21 Dec 2015 19:42:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "b0dcddcb-5005-4f2c-87b8-ca5538ab3587" + "fb934803-293a-4817-b2ca-3a6a699af783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "8e7ce518-4f25-4b7f-add7-3b21f336d4a2" + "2bf5194b-320a-4e90-985e-0cf44262e3b5" ], "x-ms-correlation-request-id": [ - "8e7ce518-4f25-4b7f-add7-3b21f336d4a2" + "2bf5194b-320a-4e90-985e-0cf44262e3b5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005925Z:8e7ce518-4f25-4b7f-add7-3b21f336d4a2" + "CENTRALUS:20151221T194242Z:2bf5194b-320a-4e90-985e-0cf44262e3b5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:59:24 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTerminateJobId\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "101" ], "client-request-id": [ - "568fd477-5ec1-4f89-ae26-71742afaccab" + "210b0d1d-659f-4038-aef4-e521c62006f1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:59:21 GMT" + "Mon, 21 Dec 2015 19:42:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:59:21 GMT" + "Mon, 21 Dec 2015 19:42:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "85e12c9d-c4ed-42e5-a6df-864ded53af29" + "06d26787-3d83-4f33-b6cb-05fc0c002625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "568fd477-5ec1-4f89-ae26-71742afaccab" + "210b0d1d-659f-4038-aef4-e521c62006f1" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:59:22 GMT" + "Mon, 21 Dec 2015 19:42:39 GMT" ], "ETag": [ - "0x8D2EA335603A9A2" + "0x8D30A3EE1C37848" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateJobId?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testTerminateJobId?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"terminateReason\": \"test\"\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "33" ], "client-request-id": [ - "c043a1c1-b819-41d6-bc49-af1282c253de" + "2317e3b4-bd9e-4630-b780-a9f2ef003eb2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:59:24 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2a9151cf-4ea6-43d9-81f5-5ee6a640a114" + "e0c2ef7a-10ba-4fe2-8570-1071b90866d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c043a1c1-b819-41d6-bc49-af1282c253de" + "2317e3b4-bd9e-4630-b780-a9f2ef003eb2" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobId" ], "Date": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ], "ETag": [ - "0x8D2EA3358092DFD" + "0x8D30A3EE3A98F91" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -462,53 +462,53 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testTerminateJobId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testTerminateJobId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5460b7fd-c800-4345-aad3-48109e22d7fe" + "b71bfa99-9300-4085-be62-8cd66cc6d64c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobId\",\r\n \"eTag\": \"0x8D2EA3358092DFD\",\r\n \"lastModified\": \"2015-11-11T00:59:25.3889533Z\",\r\n \"creationTime\": \"2015-11-11T00:59:21.979447Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-11-11T00:59:25.3889533Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:59:21.9973538Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:59:21.9973538Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobId\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobId\",\r\n \"eTag\": \"0x8D30A3EE3A98F91\",\r\n \"lastModified\": \"2015-12-21T19:42:41.3162385Z\",\r\n \"creationTime\": \"2015-12-21T19:42:38.1081947Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-12-21T19:42:41.3162385Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:42:38.1305928Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:42:38.1305928Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4178d62a-ba5a-4470-b5a0-f4004c6379aa" + "7970bc12-d6fc-4b9e-a402-70cc1594f4c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5460b7fd-c800-4345-aad3-48109e22d7fe" + "b71bfa99-9300-4085-be62-8cd66cc6d64c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:42 GMT" ], "ETag": [ - "0x8D2EA3358092DFD" + "0x8D30A3EE3A98F91" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,22 +517,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateJobId?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testTerminateJobId?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f131634a-95c0-42e0-acd5-802d04084dbd" + "bf6c8dca-aa92-48d3-b3cb-2b262daa8c71" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:59:25 GMT" + "Mon, 21 Dec 2015 19:42:43 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -542,19 +542,19 @@ "chunked" ], "request-id": [ - "5d45fdc9-581c-4d3d-9d9d-ac35e09d51bf" + "f90b31cd-c35c-4526-83e9-692af07c0f20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f131634a-95c0-42e0-acd5-802d04084dbd" + "bf6c8dca-aa92-48d3-b3cb-2b262daa8c71" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:59:27 GMT" + "Mon, 21 Dec 2015 19:42:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json index 2d17cebf1888..7480596d6ed9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14996" ], "x-ms-request-id": [ - "e28940a7-aabd-4104-b6e4-045e46c8b7da" + "6cec0d50-eb49-4c87-bd88-911d4580863c" ], "x-ms-correlation-request-id": [ - "e28940a7-aabd-4104-b6e4-045e46c8b7da" + "6cec0d50-eb49-4c87-bd88-911d4580863c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010000Z:e28940a7-aabd-4104-b6e4-045e46c8b7da" + "CENTRALUS:20151221T194156Z:6cec0d50-eb49-4c87-bd88-911d4580863c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:00 GMT" + "Mon, 21 Dec 2015 19:41:55 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-request-id": [ - "3dfb660c-129b-46a2-8862-98059b563cab" + "ae7e3247-ae7c-4aa6-befe-94db698a9aa6" ], "x-ms-correlation-request-id": [ - "3dfb660c-129b-46a2-8862-98059b563cab" + "ae7e3247-ae7c-4aa6-befe-94db698a9aa6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010007Z:3dfb660c-129b-46a2-8862-98059b563cab" + "CENTRALUS:20151221T194200Z:ae7e3247-ae7c-4aa6-befe-94db698a9aa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:06 GMT" + "Mon, 21 Dec 2015 19:42:00 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:04 GMT" + "Mon, 21 Dec 2015 19:41:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6128b930-229d-4a1b-9fe2-1922aaa3d940" + "75b08b52-87fa-4e72-b35f-6142368e6880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14986" ], "x-ms-request-id": [ - "f29ef77d-bb9e-48c2-bf32-f0c22c45ce6b" + "2e10aa63-255f-41b5-ad4a-8b57897d8de1" ], "x-ms-correlation-request-id": [ - "f29ef77d-bb9e-48c2-bf32-f0c22c45ce6b" + "2e10aa63-255f-41b5-ad4a-8b57897d8de1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010004Z:f29ef77d-bb9e-48c2-bf32-f0c22c45ce6b" + "CENTRALUS:20151221T194157Z:2e10aa63-255f-41b5-ad4a-8b57897d8de1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:03 GMT" + "Mon, 21 Dec 2015 19:41:56 GMT" ], "ETag": [ - "0x8D2EA336F8BE0F7" + "0x8D30A3EC949B282" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:08 GMT" + "Mon, 21 Dec 2015 19:42:00 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "16ab60d8-8282-4c13-a254-979daeb2f9ba" + "4a7a50b9-3423-4490-a19c-8c2f86aab6e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14985" ], "x-ms-request-id": [ - "fc9909d3-2f03-46cf-a706-497551013e4c" + "fc8d6a00-cad6-4714-b277-39c5efb4d25c" ], "x-ms-correlation-request-id": [ - "fc9909d3-2f03-46cf-a706-497551013e4c" + "fc8d6a00-cad6-4714-b277-39c5efb4d25c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010007Z:fc9909d3-2f03-46cf-a706-497551013e4c" + "CENTRALUS:20151221T194200Z:fc8d6a00-cad6-4714-b277-39c5efb4d25c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:07 GMT" + "Mon, 21 Dec 2015 19:42:00 GMT" ], "ETag": [ - "0x8D2EA337196295B" + "0x8D30A3ECB45DBAD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "c63a3ade-5663-4501-826e-688bc5a6151a" + "ca2543d3-5db9-44fc-8bd2-af06413c012f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-request-id": [ - "8fa2ff2d-4d61-4f0c-bd4d-f99b3bf71c14" + "1ec49d88-e06f-46da-8bfd-b8151bde873a" ], "x-ms-correlation-request-id": [ - "8fa2ff2d-4d61-4f0c-bd4d-f99b3bf71c14" + "1ec49d88-e06f-46da-8bfd-b8151bde873a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010004Z:8fa2ff2d-4d61-4f0c-bd4d-f99b3bf71c14" + "CENTRALUS:20151221T194157Z:1ec49d88-e06f-46da-8bfd-b8151bde873a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:03 GMT" + "Mon, 21 Dec 2015 19:41:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "d09efef3-e097-45fe-8525-8a06d30c9074" + "7a2fe38c-5ec1-4118-aa71-9ce1f1ddd713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-request-id": [ - "614080bb-ba9f-4c39-a744-ee03a44ef911" + "4013d261-0326-43a2-86d7-e0bc4000ae12" ], "x-ms-correlation-request-id": [ - "614080bb-ba9f-4c39-a744-ee03a44ef911" + "4013d261-0326-43a2-86d7-e0bc4000ae12" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T010008Z:614080bb-ba9f-4c39-a744-ee03a44ef911" + "CENTRALUS:20151221T194200Z:4013d261-0326-43a2-86d7-e0bc4000ae12" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 01:00:07 GMT" + "Mon, 21 Dec 2015 19:42:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "107" ], "client-request-id": [ - "a6f89315-f2f7-49c8-a195-876aff1b1068" + "c34ba399-6950-4dad-b7d9-5d915631dbe6" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:04 GMT" + "Mon, 21 Dec 2015 19:41:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:04 GMT" + "Mon, 21 Dec 2015 19:41:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "230e8f2a-29ac-40df-a907-d2b14d8fe39d" + "7a109f13-cf33-45c9-a70d-a35ad95c0145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a6f89315-f2f7-49c8-a195-876aff1b1068" + "c34ba399-6950-4dad-b7d9-5d915631dbe6" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 01:00:05 GMT" + "Mon, 21 Dec 2015 19:42:00 GMT" ], "ETag": [ - "0x8D2EA336F9C259E" + "0x8D30A3EC8CDA8B7" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a68e882c-c7a9-43b7-9417-adec5d07df71" + "9eb9aa96-4581-421e-8e78-ee3269f6c9f7" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:07 GMT" + "Mon, 21 Dec 2015 19:42:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D2EA336F9C259E\",\r\n \"lastModified\": \"2015-11-11T01:00:04.939715Z\",\r\n \"creationTime\": \"2015-11-11T01:00:04.9237057Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T01:00:04.939715Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T01:00:04.939715Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D30A3EC8CDA8B7\",\r\n \"lastModified\": \"2015-12-21T19:41:56.2543287Z\",\r\n \"creationTime\": \"2015-12-21T19:41:56.2153328Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:41:56.2543287Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:41:56.2543287Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:04 GMT" + "Mon, 21 Dec 2015 19:41:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7f26505c-e021-4a27-ab84-a4bdbf566ac6" + "42223823-19fe-490b-8447-ff9fa6136176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a68e882c-c7a9-43b7-9417-adec5d07df71" + "9eb9aa96-4581-421e-8e78-ee3269f6c9f7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:00:09 GMT" + "Mon, 21 Dec 2015 19:42:01 GMT" ], "ETag": [ - "0x8D2EA336F9C259E" + "0x8D30A3EC8CDA8B7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3d9aae78-36f0-47e7-8ea1-c2aa019eb608" + "285e7914-8e54-4a6e-adcf-e1babd6055f0" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:08 GMT" + "Mon, 21 Dec 2015 19:42:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D2EA3371A53FAB\",\r\n \"lastModified\": \"2015-11-11T01:00:08.3548075Z\",\r\n \"creationTime\": \"2015-11-11T01:00:04.9237057Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-11-11T01:00:08.3548075Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T01:00:04.939715Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T01:00:04.939715Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D30A3ECAC95D60\",\r\n \"lastModified\": \"2015-12-21T19:41:59.5816288Z\",\r\n \"creationTime\": \"2015-12-21T19:41:56.2153328Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2015-12-21T19:41:59.5816288Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:41:56.2543287Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:41:56.2543287Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:08 GMT" + "Mon, 21 Dec 2015 19:41:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "06dcf9e8-130e-4b8f-8a40-0c5078757acb" + "23d13160-46e4-4576-8e1c-9542dc23bb62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3d9aae78-36f0-47e7-8ea1-c2aa019eb608" + "285e7914-8e54-4a6e-adcf-e1babd6055f0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:00:09 GMT" + "Mon, 21 Dec 2015 19:42:01 GMT" ], "ETag": [ - "0x8D2EA3371A53FAB" + "0x8D30A3ECAC95D60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,8 +511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateJobPipeline?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testTerminateJobPipeline?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"terminateReason\": \"test\"\r\n}", "RequestHeaders": { @@ -523,35 +523,35 @@ "33" ], "client-request-id": [ - "8449984c-56a3-468d-bffb-fa9401b1ab72" + "a4c75882-659c-48ee-a8a5-4d8e776b0ef6" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:08 GMT" + "Mon, 21 Dec 2015 19:42:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 01:00:08 GMT" + "Mon, 21 Dec 2015 19:41:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dfb2749a-9ee6-4c08-9c77-a3b2ff46a848" + "11142f3d-c7bf-4912-832b-b68b0272a7ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8449984c-56a3-468d-bffb-fa9401b1ab72" + "a4c75882-659c-48ee-a8a5-4d8e776b0ef6" ], "DataServiceVersion": [ "3.0" @@ -560,10 +560,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateJobPipeline" ], "Date": [ - "Wed, 11 Nov 2015 01:00:09 GMT" + "Mon, 21 Dec 2015 19:42:01 GMT" ], "ETag": [ - "0x8D2EA3371A53FAB" + "0x8D30A3ECAC95D60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -572,22 +572,22 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "123da30e-b69b-461c-915a-efdca460d0d5" + "43801abe-5016-45fd-8bfe-40f371e26cf8" ], "ocp-date": [ - "Wed, 11 Nov 2015 01:00:08 GMT" + "Mon, 21 Dec 2015 19:42:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "652db6b8-8de9-46c7-91f9-c4dd191aea12" + "d395927e-538a-4d8f-b98d-f756aee1829d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "123da30e-b69b-461c-915a-efdca460d0d5" + "43801abe-5016-45fd-8bfe-40f371e26cf8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 01:00:10 GMT" + "Mon, 21 Dec 2015 19:42:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestUpdateJob.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestUpdateJob.json index 9b9aa670b5de..37ce76078947 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestUpdateJob.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestUpdateJob.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14979" ], "x-ms-request-id": [ - "a012e515-bad2-4feb-b195-64dd8bd8f652" + "54aa20be-ea89-4385-9782-b9017b57c845" ], "x-ms-correlation-request-id": [ - "a012e515-bad2-4feb-b195-64dd8bd8f652" + "54aa20be-ea89-4385-9782-b9017b57c845" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005354Z:a012e515-bad2-4feb-b195-64dd8bd8f652" + "CENTRALUS:20151221T194118Z:54aa20be-ea89-4385-9782-b9017b57c845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:54 GMT" + "Mon, 21 Dec 2015 19:41:17 GMT" ] }, "StatusCode": 200 @@ -73,13 +73,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "def55dbf-06b9-45f9-abc3-b21c290ff9e3" + "9a6e0312-f7d8-487c-9f7a-af2aa529b1c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -88,22 +88,22 @@ "14987" ], "x-ms-request-id": [ - "9df10833-7ca0-43ac-92a1-ab43029e42a3" + "46df74af-1e4a-40d7-b262-adfa969dfd8c" ], "x-ms-correlation-request-id": [ - "9df10833-7ca0-43ac-92a1-ab43029e42a3" + "46df74af-1e4a-40d7-b262-adfa969dfd8c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005356Z:9df10833-7ca0-43ac-92a1-ab43029e42a3" + "CENTRALUS:20151221T194119Z:46df74af-1e4a-40d7-b262-adfa969dfd8c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "ETag": [ - "0x8D2EA3294508CEC" + "0x8D30A3EB21DC70C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "577c3f97-94ad-416a-b1b3-6fc30a769e93" + "92bb9ebd-d3f4-476c-9e1c-50cc92a24847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-request-id": [ - "aa658992-acd5-498d-82c8-14a22bae914e" + "b1a54462-ecb4-42a5-8e2d-463886a486c7" ], "x-ms-correlation-request-id": [ - "aa658992-acd5-498d-82c8-14a22bae914e" + "b1a54462-ecb4-42a5-8e2d-463886a486c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T005356Z:aa658992-acd5-498d-82c8-14a22bae914e" + "CENTRALUS:20151221T194119Z:b1a54462-ecb4-42a5-8e2d-463886a486c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"updateJobTest\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": true,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 3,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -181,35 +181,35 @@ "481" ], "client-request-id": [ - "c087e54c-4739-4ede-b546-6e3e393fe130" + "5dd8d735-f4ff-410d-b8d5-11792f85534a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0b149501-22aa-4cf2-a98f-939f2f62c9e3" + "59eab54f-a0f6-41ab-a3f5-bcd26dc84fc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c087e54c-4739-4ede-b546-6e3e393fe130" + "5dd8d735-f4ff-410d-b8d5-11792f85534a" ], "DataServiceVersion": [ "3.0" @@ -218,10 +218,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "ETag": [ - "0x8D2EA32942F326F" + "0x8D30A3EB23C5F39" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -233,53 +233,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/updateJobTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateJobTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9f8437e0-2f8b-445d-b425-dcb6024411ef" + "2e274cb6-5ef2-4a38-aee2-b1f81b7ddb1d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"updateJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateJobTest\",\r\n \"eTag\": \"0x8D2EA32942F326F\",\r\n \"lastModified\": \"2015-11-11T00:53:56.8046703Z\",\r\n \"creationTime\": \"2015-11-11T00:53:56.7816296Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:53:56.8046703Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": true,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:53:56.8046703Z\",\r\n \"poolId\": \"TestSpecPrefix_D03D4ADD-93B0-4FBB-BB50-B4F5DE28489B\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"updateJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateJobTest\",\r\n \"eTag\": \"0x8D30A3EB23C5F39\",\r\n \"lastModified\": \"2015-12-21T19:41:18.3923001Z\",\r\n \"creationTime\": \"2015-12-21T19:41:18.3454408Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:41:18.3923001Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": true,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:41:18.3923001Z\",\r\n \"poolId\": \"TestSpecPrefix_102614D1-DE33-47D3-A9C2-9611FBF0E327\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b6540e73-31a2-45b9-9044-5ea759072e60" + "20e7aff0-cc53-4e62-b9c1-4d0359bd1074" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9f8437e0-2f8b-445d-b425-dcb6024411ef" + "2e274cb6-5ef2-4a38-aee2-b1f81b7ddb1d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "ETag": [ - "0x8D2EA32942F326F" + "0x8D30A3EB23C5F39" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -288,8 +288,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/updateJobTest?disable&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9kaXNhYmxlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/updateJobTest?disable&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9kaXNhYmxlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"disableTasks\": \"terminate\"\r\n}", "RequestHeaders": { @@ -300,35 +300,35 @@ "35" ], "client-request-id": [ - "9b7c7656-913d-4240-99da-97e53b3bc5fd" + "0a61b771-20ab-49e7-868e-52ebace6b32c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:56 GMT" + "Mon, 21 Dec 2015 19:41:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "71557cd5-70af-4796-9959-3bc24d4cb47d" + "ad9284a8-0d9f-47e8-9601-4f7986ca6303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9b7c7656-913d-4240-99da-97e53b3bc5fd" + "0a61b771-20ab-49e7-868e-52ebace6b32c" ], "DataServiceVersion": [ "3.0" @@ -337,10 +337,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/updateJobTest" ], "Date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "ETag": [ - "0x8D2EA329458C233" + "0x8D30A3EB2682166" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -349,8 +349,8 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/updateJobTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateJobTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"priority\": 3,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"jobMeta1\",\r\n \"value\": \"jobValue1\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -361,35 +361,35 @@ "865" ], "client-request-id": [ - "13cb1d6e-b799-4491-be7c-7bca16a9b495" + "ab09d94c-7315-4e35-ba38-06feb30c63fc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e59ee010-86af-4ff1-b3b1-e51477f2d820" + "3300ddfd-f2ed-4105-baa7-2cf0ae09c78b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "13cb1d6e-b799-4491-be7c-7bca16a9b495" + "ab09d94c-7315-4e35-ba38-06feb30c63fc" ], "DataServiceVersion": [ "3.0" @@ -398,10 +398,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/updateJobTest" ], "Date": [ - "Wed, 11 Nov 2015 00:53:58 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "ETag": [ - "0x8D2EA32947EBB4E" + "0x8D30A3EB290D7AD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -410,26 +410,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "441bc5d9-fbf5-4cfa-aacb-45c49fd17b27" + "5a82ab6f-6222-48b8-93d4-3d8294864ec8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"updateJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateJobTest\",\r\n \"eTag\": \"0x8D2EA32947EBB4E\",\r\n \"lastModified\": \"2015-11-11T00:53:57.3259086Z\",\r\n \"creationTime\": \"2015-11-11T00:53:56.7816296Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-11-11T00:53:57.1222252Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:53:56.8046703Z\",\r\n \"priority\": 3,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"jobMeta1\",\r\n \"value\": \"jobValue1\"\r\n }\r\n ],\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:53:56.8046703Z\",\r\n \"poolId\": \"TestSpecPrefix_D03D4ADD-93B0-4FBB-BB50-B4F5DE28489B\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"updateJobTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateJobTest\",\r\n \"eTag\": \"0x8D30A3EB290D7AD\",\r\n \"lastModified\": \"2015-12-21T19:41:18.9458861Z\",\r\n \"creationTime\": \"2015-12-21T19:41:18.3454408Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2015-12-21T19:41:18.8045128Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:41:18.3923001Z\",\r\n \"priority\": 3,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT5M\",\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"jobMeta1\",\r\n \"value\": \"jobValue1\"\r\n }\r\n ],\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:41:18.3923001Z\",\r\n \"poolId\": \"TestSpecPrefix_102614D1-DE33-47D3-A9C2-9611FBF0E327\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -438,19 +438,19 @@ "chunked" ], "request-id": [ - "fb15f19e-9c52-4d23-bed0-b048c157f0bf" + "d5b8c468-0b5a-4a1a-80aa-8def219509ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "441bc5d9-fbf5-4cfa-aacb-45c49fd17b27" + "5a82ab6f-6222-48b8-93d4-3d8294864ec8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:58 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -459,22 +459,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/updateJobTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateJobTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlSm9iVGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "464fe988-918c-4094-9adc-dba9c28a5324" + "fbe02072-0c83-4c16-a6a8-0ef59f9e4a30" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -484,19 +484,19 @@ "chunked" ], "request-id": [ - "aa026348-3f4b-4d54-8254-9d7e9366ee2e" + "9f288af9-0294-4b3f-99d7-adc82315528b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "464fe988-918c-4094-9adc-dba9c28a5324" + "fbe02072-0c83-4c16-a6a8-0ef59f9e4a30" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:58 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -505,26 +505,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools?$filter=startswith(id%2C'TestSpecPrefix')&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGlkJTJDJTI3VGVzdFNwZWNQcmVmaXglMjclMjkmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools?$filter=startswith(id%2C'TestSpecPrefix')&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGlkJTJDJTI3VGVzdFNwZWNQcmVmaXglMjclMjkmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "498427c0-aba1-44a8-b59a-8ffcf6ca618a" + "904dd184-3480-4698-b90d-4f587440024c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"TestSpecPrefix_D03D4ADD-93B0-4FBB-BB50-B4F5DE28489B\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/TestSpecPrefix_D03D4ADD-93B0-4FBB-BB50-B4F5DE28489B\",\r\n \"eTag\": \"0x8D2EA329485EAE9\",\r\n \"lastModified\": \"2015-11-11T00:53:57.3730025Z\",\r\n \"creationTime\": \"2015-11-11T00:53:57.3730025Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:53:57.3730025Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:53:57.3730025Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"TestSpecPrefix_102614D1-DE33-47D3-A9C2-9611FBF0E327\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/TestSpecPrefix_102614D1-DE33-47D3-A9C2-9611FBF0E327\",\r\n \"eTag\": \"0x8D30A3EB298BFFF\",\r\n \"lastModified\": \"2015-12-21T19:41:18.9977087Z\",\r\n \"creationTime\": \"2015-12-21T19:41:18.9977087Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:41:18.9977087Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T19:41:18.9977087Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -533,19 +533,19 @@ "chunked" ], "request-id": [ - "a474e5cf-7b32-4158-89db-6b9273fe5b3e" + "14089220-07bd-4710-b891-7073225e9240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "498427c0-aba1-44a8-b59a-8ffcf6ca618a" + "904dd184-3480-4698-b90d-4f587440024c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:58 GMT" + "Mon, 21 Dec 2015 19:41:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -554,22 +554,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/TestSpecPrefix_D03D4ADD-93B0-4FBB-BB50-B4F5DE28489B?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL1Rlc3RTcGVjUHJlZml4X0QwM0Q0QURELTkzQjAtNEZCQi1CQjUwLUI0RjVERTI4NDg5Qj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/TestSpecPrefix_102614D1-DE33-47D3-A9C2-9611FBF0E327?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL1Rlc3RTcGVjUHJlZml4XzEwMjYxNEQxLURFMzMtNDdEMy1BOUMyLTk2MTFGQkYwRTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9cfb2717-50d5-4b3a-9173-2dfa5e272f94" + "c30083e5-8560-4099-849b-c5a00537add0" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:53:57 GMT" + "Mon, 21 Dec 2015 19:41:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -579,19 +579,19 @@ "chunked" ], "request-id": [ - "53524e6b-cf67-47bf-91cc-5246c72c6e99" + "ab1095c6-0508-4559-9228-478ae9d3f380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9cfb2717-50d5-4b3a-9173-2dfa5e272f94" + "c30083e5-8560-4099-849b-c5a00537add0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:53:58 GMT" + "Mon, 21 Dec 2015 19:41:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionById.json index 13f95e29e2d2..390bc8e17e2e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionById.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "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-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14997" ], "x-ms-request-id": [ - "b70a677c-186c-46a5-bba9-593fce3fd058" + "5180d45f-0750-4dbe-864b-1262cadcf9e0" ], "x-ms-correlation-request-id": [ - "b70a677c-186c-46a5-bba9-593fce3fd058" + "5180d45f-0750-4dbe-864b-1262cadcf9e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T163457Z:b70a677c-186c-46a5-bba9-593fce3fd058" + "WESTUS:20151221T212719Z:5180d45f-0750-4dbe-864b-1262cadcf9e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:34:56 GMT" + "Mon, 21 Dec 2015 21:27:18 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==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "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-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14996" ], "x-ms-request-id": [ - "20644988-aff1-4dc8-93fb-00a007df56ac" + "ae4015f0-53aa-42b3-8d0d-9b56f9b3a71e" ], "x-ms-correlation-request-id": [ - "20644988-aff1-4dc8-93fb-00a007df56ac" + "ae4015f0-53aa-42b3-8d0d-9b56f9b3a71e" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T163502Z:20644988-aff1-4dc8-93fb-00a007df56ac" + "WESTUS:20151221T212724Z:ae4015f0-53aa-42b3-8d0d-9b56f9b3a71e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:35:01 GMT" + "Mon, 21 Dec 2015 21:27:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109,10 +109,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestaccount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstestaccount.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:34:59 GMT" + "Mon, 21 Dec 2015 21:27:20 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "02fb794e-3586-473e-bc28-32a7747ec07b" + "54caa09a-4831-4185-b64c-cc7a2c534319" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-request-id": [ - "8b131f78-78cf-4262-be0c-3d6f9516d034" + "c54ad80b-fafc-4ab2-9024-07963db3b7b3" ], "x-ms-correlation-request-id": [ - "8b131f78-78cf-4262-be0c-3d6f9516d034" + "c54ad80b-fafc-4ab2-9024-07963db3b7b3" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T163458Z:8b131f78-78cf-4262-be0c-3d6f9516d034" + "WESTUS:20151221T212720Z:c54ad80b-fafc-4ab2-9024-07963db3b7b3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:34:57 GMT" + "Mon, 21 Dec 2015 21:27:19 GMT" ], "ETag": [ - "0x8D2DEEC8E49EA2F" + "0x8D30A4D82367342" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,8 +160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -172,10 +172,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestaccount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstestaccount.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a45767d0-8494-4610-bf84-0db5253e72c4" + "3c7a12db-f94f-4195-9c69-de5baf697aba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "c911492d-d641-4a40-bfee-b409af2b345b" + "45fa99d4-6a11-4aa5-be02-c02f33c5a3e5" ], "x-ms-correlation-request-id": [ - "c911492d-d641-4a40-bfee-b409af2b345b" + "45fa99d4-6a11-4aa5-be02-c02f33c5a3e5" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T163502Z:c911492d-d641-4a40-bfee-b409af2b345b" + "WESTUS:20151221T212724Z:45fa99d4-6a11-4aa5-be02-c02f33c5a3e5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:35:01 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "ETag": [ - "0x8D2DEEC909EF0B1" + "0x8D30A4D846A305A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,8 +223,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"hIsQ4xSEK40UEhQPO1ixIV6kxX2Kd7WldCNgTOWFeYRU5EpnfeS5+ZuPNQZXuDalZYEFlgMZc2TkmF/PIBKhBg==\",\r\n \"secondary\": \"zkP4SqUquW+Vc9Uwu6iAl/EfvrKiUzWznxunIdvDPGngakhTFrmysae7LEF0EI6BzqPrWHngaKzlsbKoQTcQdQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "229" + "235" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "c7910cca-72bc-44b0-aa98-3e523f0dfc7c" + "4d2a112a-f3ce-4a8d-abd6-e3ce33b8457b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "00192406-ed9e-4d54-bdb8-0422db51fe16" + "9be13ee2-c858-4174-bbf6-2d13fb667d95" ], "x-ms-correlation-request-id": [ - "00192406-ed9e-4d54-bdb8-0422db51fe16" + "9be13ee2-c858-4174-bbf6-2d13fb667d95" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T163458Z:00192406-ed9e-4d54-bdb8-0422db51fe16" + "WESTUS:20151221T212720Z:9be13ee2-c858-4174-bbf6-2d13fb667d95" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:34:57 GMT" + "Mon, 21 Dec 2015 21:27:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,8 +280,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -292,10 +292,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"hIsQ4xSEK40UEhQPO1ixIV6kxX2Kd7WldCNgTOWFeYRU5EpnfeS5+ZuPNQZXuDalZYEFlgMZc2TkmF/PIBKhBg==\",\r\n \"secondary\": \"zkP4SqUquW+Vc9Uwu6iAl/EfvrKiUzWznxunIdvDPGngakhTFrmysae7LEF0EI6BzqPrWHngaKzlsbKoQTcQdQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "229" + "235" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "514bb92d-8331-4970-b703-4bde80aca432" + "56198a31-f33c-40d9-bd69-8792c4028a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "92008e64-9a2a-465c-a0a6-a0c96a4bbb93" + "0b317c19-aa0c-4493-b54d-5fc2938c1253" ], "x-ms-correlation-request-id": [ - "92008e64-9a2a-465c-a0a6-a0c96a4bbb93" + "0b317c19-aa0c-4493-b54d-5fc2938c1253" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T163502Z:92008e64-9a2a-465c-a0a6-a0c96a4bbb93" + "WESTUS:20151221T212724Z:0b317c19-aa0c-4493-b54d-5fc2938c1253" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:35:01 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d029aaad-fde3-4e2a-87ae-fe545046fe88" + "7c29c087-a823-4632-ae88-e5e87f271163" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:34:58 GMT" + "Mon, 21 Dec 2015 21:27:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEBABE702E9\",\r\n \"lastModified\": \"2015-10-27T16:28:39.5385577Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A49B01AF3B3\",\r\n \"lastModified\": \"2015-12-21T20:59:59.2818611Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:01:00.0640757Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:28:39 GMT" + "Mon, 21 Dec 2015 20:59:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fe3bf654-6ce2-4afc-887b-0c80f437b1ad" + "0dd709f7-81c6-4e07-9df6-8847073ced36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d029aaad-fde3-4e2a-87ae-fe545046fe88" + "7c29c087-a823-4632-ae88-e5e87f271163" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:34:58 GMT" + "Mon, 21 Dec 2015 21:27:20 GMT" ], "ETag": [ - "0x8D2DEEBABE702E9" + "0x8D30A49B01AF3B3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a9ba4a17-fb66-4103-9113-451a3db49f9d" + "4cbc31c7-afbd-40e2-859a-6508e0392793" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:35:02 GMT" + "Mon, 21 Dec 2015 21:27:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEBABE702E9\",\r\n \"lastModified\": \"2015-10-27T16:28:39.5385577Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A49B01AF3B3\",\r\n \"lastModified\": \"2015-12-21T20:59:59.2818611Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:01:00.0640757Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:28:39 GMT" + "Mon, 21 Dec 2015 20:59:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a6764a2f-9879-44bf-9833-b310a209c161" + "f81c0467-2e9e-4b5d-9342-e40f27dc6002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a9ba4a17-fb66-4103-9113-451a3db49f9d" + "4cbc31c7-afbd-40e2-859a-6508e0392793" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "ETag": [ - "0x8D2DEEBABE702E9" + "0x8D30A49B01AF3B3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "caaba161-a72a-493a-a9c2-0e641f461d8f" + "6458e7ca-c45a-457d-ac3c-b3744e51f644" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEC90AE0847\",\r\n \"lastModified\": \"2015-10-27T16:35:03.3633863Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:35:03.3633863Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4D8434C3A4\",\r\n \"lastModified\": \"2015-12-21T21:27:23.6181924Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:27:23.6181924Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:01:00.0640757Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dd91c06c-5340-4035-aee8-5c1467fb7dbd" + "0b11e1ea-f388-461d-a8aa-73d8379c0e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "caaba161-a72a-493a-a9c2-0e641f461d8f" + "6458e7ca-c45a-457d-ac3c-b3744e51f644" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "ETag": [ - "0x8D2DEEC90AE0847" + "0x8D30A4D8434C3A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,230 +502,59 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "caaba161-a72a-493a-a9c2-0e641f461d8f" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEC90AE0847\",\r\n \"lastModified\": \"2015-10-27T16:35:03.3633863Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:35:03.3633863Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "dd91c06c-5340-4035-aee8-5c1467fb7dbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "caaba161-a72a-493a-a9c2-0e641f461d8f" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "ETag": [ - "0x8D2DEEC90AE0847" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "caaba161-a72a-493a-a9c2-0e641f461d8f" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEC90AE0847\",\r\n \"lastModified\": \"2015-10-27T16:35:03.3633863Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:35:03.3633863Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "dd91c06c-5340-4035-aee8-5c1467fb7dbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "caaba161-a72a-493a-a9c2-0e641f461d8f" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "ETag": [ - "0x8D2DEEC90AE0847" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?upgradeos&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Content-Length": [ - "55" - ], - "client-request-id": [ - "6737009b-35f7-46c4-baf8-9ee22bdd229c" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:35:02 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Last-Modified": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "370634de-c5ea-473f-97bf-81970d751290" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "6737009b-35f7-46c4-baf8-9ee22bdd229c" - ], - "DataServiceVersion": [ - "3.0" - ], - "DataServiceId": [ - "https://pstests.eastus.batch.azure.com/pools/testPool" - ], - "Date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" - ], - "ETag": [ - "0x8D2DEEC90AE0847" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/pools/testPool?upgradeos&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?upgradeos&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\"\r\n}", + "RequestBody": "{\r\n \"targetOSVersion\": \"*\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "55" + "30" ], "client-request-id": [ - "6737009b-35f7-46c4-baf8-9ee22bdd229c" + "a89b0e83-ab96-422d-8ab5-dae0641187d7" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:35:02 GMT" + "Mon, 21 Dec 2015 21:27:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "370634de-c5ea-473f-97bf-81970d751290" + "67836dd8-84f3-4c74-a39e-8f826f39abf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6737009b-35f7-46c4-baf8-9ee22bdd229c" + "a89b0e83-ab96-422d-8ab5-dae0641187d7" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstests.eastus.batch.azure.com/pools/testPool" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 27 Oct 2015 16:35:03 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "ETag": [ - "0x8D2DEEC90AE0847" + "0x8D30A4D8434C3A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -736,6 +565,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionPipeline.json index 1f33ecb20e63..4a640bde81f2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersionPipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "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-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14999" ], "x-ms-request-id": [ - "c0af6461-eb95-42a8-a295-5034c05c636f" + "d04342fb-7ac6-44af-9b81-3b7afd2718c5" ], "x-ms-correlation-request-id": [ - "c0af6461-eb95-42a8-a295-5034c05c636f" + "d04342fb-7ac6-44af-9b81-3b7afd2718c5" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T162718Z:c0af6461-eb95-42a8-a295-5034c05c636f" + "WESTUS:20151221T181702Z:d04342fb-7ac6-44af-9b81-3b7afd2718c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:27:17 GMT" + "Mon, 21 Dec 2015 18:17:01 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==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "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-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14998" ], "x-ms-request-id": [ - "1a5ceb2c-afc7-4b9e-a576-abafeeba81d5" + "46edfc86-264d-4768-9d95-e2f2ade9e021" ], "x-ms-correlation-request-id": [ - "1a5ceb2c-afc7-4b9e-a576-abafeeba81d5" + "46edfc86-264d-4768-9d95-e2f2ade9e021" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T162723Z:1a5ceb2c-afc7-4b9e-a576-abafeeba81d5" + "WESTUS:20151221T181707Z:46edfc86-264d-4768-9d95-e2f2ade9e021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109,10 +109,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestaccount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstestaccount.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:19 GMT" + "Mon, 21 Dec 2015 18:17:02 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c73c1fd6-fffb-4dd5-aa53-6479fdecba18" + "65d81984-488d-43ff-9c92-bf7cd5824f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14999" ], "x-ms-request-id": [ - "d3b846a2-4fac-4996-87bd-df3074fb55ec" + "ee4da24d-1c35-4514-9f26-dd912db3e62e" ], "x-ms-correlation-request-id": [ - "d3b846a2-4fac-4996-87bd-df3074fb55ec" + "ee4da24d-1c35-4514-9f26-dd912db3e62e" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T162719Z:d3b846a2-4fac-4996-87bd-df3074fb55ec" + "WESTUS:20151221T181703Z:ee4da24d-1c35-4514-9f26-dd912db3e62e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:27:19 GMT" + "Mon, 21 Dec 2015 18:17:02 GMT" ], "ETag": [ - "0x8D2DEEB7BED742B" + "0x8D30A32EC7CAE4F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,8 +160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -172,10 +172,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestaccount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstestaccount.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:22 GMT" + "Mon, 21 Dec 2015 18:17:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2661ec6a-c4dd-4129-8a70-994f43dfa203" + "2ebc6b40-7654-40e3-97fb-180432a50d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-request-id": [ - "040a07fe-4a17-4231-bc57-96a3fcea80b2" + "5b37b102-977d-4895-8bd6-3ee5c750ad53" ], "x-ms-correlation-request-id": [ - "040a07fe-4a17-4231-bc57-96a3fcea80b2" + "5b37b102-977d-4895-8bd6-3ee5c750ad53" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T162723Z:040a07fe-4a17-4231-bc57-96a3fcea80b2" + "WESTUS:20151221T181707Z:5b37b102-977d-4895-8bd6-3ee5c750ad53" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "ETag": [ - "0x8D2DEEB7E221D14" + "0x8D30A32EF0F004D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,8 +223,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"hIsQ4xSEK40UEhQPO1ixIV6kxX2Kd7WldCNgTOWFeYRU5EpnfeS5+ZuPNQZXuDalZYEFlgMZc2TkmF/PIBKhBg==\",\r\n \"secondary\": \"zkP4SqUquW+Vc9Uwu6iAl/EfvrKiUzWznxunIdvDPGngakhTFrmysae7LEF0EI6BzqPrWHngaKzlsbKoQTcQdQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "229" + "235" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "a3879bb3-f80d-4114-93bb-c9967cd2b58b" + "e6174ca4-7d77-48f5-b238-b9ff5e9062a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "585f7b1a-9ea7-446d-857e-645ef5ea6d30" + "c9fd61a5-9a4f-498a-9ae0-893f9c73b274" ], "x-ms-correlation-request-id": [ - "585f7b1a-9ea7-446d-857e-645ef5ea6d30" + "c9fd61a5-9a4f-498a-9ae0-893f9c73b274" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T162719Z:585f7b1a-9ea7-446d-857e-645ef5ea6d30" + "WESTUS:20151221T181703Z:c9fd61a5-9a4f-498a-9ae0-893f9c73b274" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:27:19 GMT" + "Mon, 21 Dec 2015 18:17:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,8 +280,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -292,10 +292,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"hIsQ4xSEK40UEhQPO1ixIV6kxX2Kd7WldCNgTOWFeYRU5EpnfeS5+ZuPNQZXuDalZYEFlgMZc2TkmF/PIBKhBg==\",\r\n \"secondary\": \"zkP4SqUquW+Vc9Uwu6iAl/EfvrKiUzWznxunIdvDPGngakhTFrmysae7LEF0EI6BzqPrWHngaKzlsbKoQTcQdQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "229" + "235" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "e87a96ec-3ec0-4a4a-95f7-9ff964381a43" + "0d18bdb3-095b-4a04-92ba-783562ecddea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "729fe6b2-0d52-4a47-97ff-0d93db0b9c60" + "8960a258-02d7-41d2-a6c6-bfb535f2a64f" ], "x-ms-correlation-request-id": [ - "729fe6b2-0d52-4a47-97ff-0d93db0b9c60" + "8960a258-02d7-41d2-a6c6-bfb535f2a64f" ], "x-ms-routing-request-id": [ - "WESTUS:20151027T162723Z:729fe6b2-0d52-4a47-97ff-0d93db0b9c60" + "WESTUS:20151221T181707Z:8960a258-02d7-41d2-a6c6-bfb535f2a64f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5fc700e7-941f-487d-918a-2ac06ac319eb" + "7bcb2542-f54b-4239-b9ae-118550f885c3" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:27:19 GMT" + "Mon, 21 Dec 2015 18:17:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEE7E5D7692F\",\r\n \"lastModified\": \"2015-10-27T16:01:38.7572527Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A2D68ECC8D8\",\r\n \"lastModified\": \"2015-12-21T17:37:33.952636Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T17:40:41.0521046Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:01:38 GMT" + "Mon, 21 Dec 2015 17:37:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c6eec005-cd4f-4685-8a91-b7b087f8b49c" + "62357634-c14f-4547-8347-c85f291167f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5fc700e7-941f-487d-918a-2ac06ac319eb" + "7bcb2542-f54b-4239-b9ae-118550f885c3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:27:21 GMT" + "Mon, 21 Dec 2015 18:17:03 GMT" ], "ETag": [ - "0x8D2DEE7E5D7692F" + "0x8D30A2D68ECC8D8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0f6bf80f-6b11-4285-bc7c-1de365b8106a" + "331ed4ab-7eaf-45d8-8291-142ce56f85b9" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEE7E5D7692F\",\r\n \"lastModified\": \"2015-10-27T16:01:38.7572527Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A2D68ECC8D8\",\r\n \"lastModified\": \"2015-12-21T17:37:33.952636Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T17:40:41.0521046Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:01:38 GMT" + "Mon, 21 Dec 2015 17:37:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "941f487b-026e-4919-80e1-72a2c3c96b21" + "0de63518-fb4c-4520-b455-3c6263448d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0f6bf80f-6b11-4285-bc7c-1de365b8106a" + "331ed4ab-7eaf-45d8-8291-142ce56f85b9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "ETag": [ - "0x8D2DEE7E5D7692F" + "0x8D30A2D68ECC8D8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" + "65be56f0-7b4d-4be1-8382-0dddde9e494b" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" + "Mon, 21 Dec 2015 18:17:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEB7F518F50\",\r\n \"lastModified\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A32EF8BB264\",\r\n \"lastModified\": \"2015-12-21T18:17:07.292426Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:17:07.292426Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T17:40:41.0521046Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3a29b5d8-90a9-4d11-87c3-f1325424ace1" + "bfcad40a-3c1f-4a7e-904e-97f0f292ec3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" + "65be56f0-7b4d-4be1-8382-0dddde9e494b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:08 GMT" ], "ETag": [ - "0x8D2DEEB7F518F50" + "0x8D30A32EF8BB264" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,240 +502,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" + "99dadb18-8f69-4d57-bd11-f14f63477baa" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" + "Mon, 21 Dec 2015 18:17:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEB7F518F50\",\r\n \"lastModified\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3a29b5d8-90a9-4d11-87c3-f1325424ace1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "ETag": [ - "0x8D2DEEB7F518F50" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEB7F518F50\",\r\n \"lastModified\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3a29b5d8-90a9-4d11-87c3-f1325424ace1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "ETag": [ - "0x8D2DEEB7F518F50" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEEB7F518F50\",\r\n \"lastModified\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-10-27T16:27:24.7393616Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "3a29b5d8-90a9-4d11-87c3-f1325424ace1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "569c47cd-e5b3-447c-8b6f-41976706a096" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "ETag": [ - "0x8D2DEEB7F518F50" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "7e518b5a-708c-4d8f-b63c-43299a02277c" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEE7E5D7692F\",\r\n \"lastModified\": \"2015-10-27T16:01:38.7572527Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "6ff41e1d-a111-4a72-acc6-afbe047425c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "7e518b5a-708c-4d8f-b63c-43299a02277c" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "7e518b5a-708c-4d8f-b63c-43299a02277c" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2DEE7E5D7692F\",\r\n \"lastModified\": \"2015-10-27T16:01:38.7572527Z\",\r\n \"creationTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-10-26T23:25:49.1746822Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-10-27T16:01:40.1141862Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A2D68ECC8D8\",\r\n \"lastModified\": \"2015-12-21T17:37:33.952636Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T17:40:41.0521046Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -744,19 +530,19 @@ "chunked" ], "request-id": [ - "6ff41e1d-a111-4a72-acc6-afbe047425c3" + "7e0ed60b-7a51-46dd-b77e-c7a4c5b5859f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7e518b5a-708c-4d8f-b63c-43299a02277c" + "99dadb18-8f69-4d57-bd11-f14f63477baa" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -765,132 +551,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?upgradeos&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Content-Length": [ - "55" - ], - "client-request-id": [ - "4cf515c3-31c7-4633-9512-d45a64aff1ac" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "b1feaf26-b462-4867-8645-0bef82667a03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "4cf515c3-31c7-4633-9512-d45a64aff1ac" - ], - "DataServiceVersion": [ - "3.0" - ], - "DataServiceId": [ - "https://pstests.eastus.batch.azure.com/pools/testPool" - ], - "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "ETag": [ - "0x8D2DEEB7F518F50" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/pools/testPool?upgradeos&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Content-Length": [ - "55" - ], - "client-request-id": [ - "4cf515c3-31c7-4633-9512-d45a64aff1ac" - ], - "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "b1feaf26-b462-4867-8645-0bef82667a03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "4cf515c3-31c7-4633-9512-d45a64aff1ac" - ], - "DataServiceVersion": [ - "3.0" - ], - "DataServiceId": [ - "https://pstests.eastus.batch.azure.com/pools/testPool" - ], - "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" - ], - "ETag": [ - "0x8D2DEEB7F518F50" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/pools/testPool?upgradeos&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?upgradeos&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3VwZ3JhZGVvcyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.22_201507-01\"\r\n}", + "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -899,47 +563,47 @@ "55" ], "client-request-id": [ - "4cf515c3-31c7-4633-9512-d45a64aff1ac" + "809b3610-1c78-48a0-9d90-060493c509f6" ], "ocp-date": [ - "Tue, 27 Oct 2015 16:27:24 GMT" + "Mon, 21 Dec 2015 18:17:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzBatch/2.0.2.0" + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 27 Oct 2015 16:27:24 GMT" + "Mon, 21 Dec 2015 18:17:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b1feaf26-b462-4867-8645-0bef82667a03" + "69e27891-79ee-4ecb-b605-1016e0d3220f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4cf515c3-31c7-4633-9512-d45a64aff1ac" + "809b3610-1c78-48a0-9d90-060493c509f6" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstests.eastus.batch.azure.com/pools/testPool" + "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Tue, 27 Oct 2015 16:27:23 GMT" + "Mon, 21 Dec 2015 18:17:08 GMT" ], "ETag": [ - "0x8D2DEEB7F518F50" + "0x8D30A32EF8BB264" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -950,6 +614,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json index 005266df2e08..60e1a390090a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "85bbff3d-09d4-48a3-abff-9ccc778d154d" + "7230b48a-9077-4199-aff9-decf2f17bca7" ], "x-ms-correlation-request-id": [ - "85bbff3d-09d4-48a3-abff-9ccc778d154d" + "7230b48a-9077-4199-aff9-decf2f17bca7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000946Z:85bbff3d-09d4-48a3-abff-9ccc778d154d" + "CENTRALUS:20151221T184810Z:7230b48a-9077-4199-aff9-decf2f17bca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:46 GMT" + "Mon, 21 Dec 2015 18:48:09 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "14e57fd4-cb71-41d0-a61e-c06f5f063b48" + "52ce3245-3aa3-40e8-b922-4af27ca87830" ], "x-ms-correlation-request-id": [ - "14e57fd4-cb71-41d0-a61e-c06f5f063b48" + "52ce3245-3aa3-40e8-b922-4af27ca87830" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000950Z:14e57fd4-cb71-41d0-a61e-c06f5f063b48" + "CENTRALUS:20151221T184815Z:52ce3245-3aa3-40e8-b922-4af27ca87830" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:50 GMT" + "Mon, 21 Dec 2015 18:48:14 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:46 GMT" + "Mon, 21 Dec 2015 18:48:10 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0e1231af-3b2d-4415-a6f0-e22cc21b59ac" + "9841bf3b-bb82-44e7-8946-0e297b448b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "a247fe9d-d42f-45ba-869b-f4803440cd31" + "e9b689a2-60aa-4fa2-a64f-34c91851225e" ], "x-ms-correlation-request-id": [ - "a247fe9d-d42f-45ba-869b-f4803440cd31" + "e9b689a2-60aa-4fa2-a64f-34c91851225e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000947Z:a247fe9d-d42f-45ba-869b-f4803440cd31" + "CENTRALUS:20151221T184811Z:e9b689a2-60aa-4fa2-a64f-34c91851225e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:47 GMT" + "Mon, 21 Dec 2015 18:48:11 GMT" ], "ETag": [ - "0x8D2EA2C68C634E2" + "0x8D30A3745D510AC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:50 GMT" + "Mon, 21 Dec 2015 18:48:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "cdea3d25-46a3-43e1-a8b2-6b53d42aac5a" + "c8a9fe50-85f9-496d-b21d-9afb7583b152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "5f5a7489-d88e-4d6d-a93b-dadf779f8d82" + "dce11ebe-3abc-4bdf-9f84-1723ef43bef4" ], "x-ms-correlation-request-id": [ - "5f5a7489-d88e-4d6d-a93b-dadf779f8d82" + "dce11ebe-3abc-4bdf-9f84-1723ef43bef4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000950Z:5f5a7489-d88e-4d6d-a93b-dadf779f8d82" + "CENTRALUS:20151221T184815Z:dce11ebe-3abc-4bdf-9f84-1723ef43bef4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:50 GMT" + "Mon, 21 Dec 2015 18:48:14 GMT" ], "ETag": [ - "0x8D2EA2C6B019557" + "0x8D30A3748172D0F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "6fce7ad0-9b0f-4fbd-b388-585971a6c1aa" + "9e8f17bc-f12f-40b9-9ae0-0de7134c049d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "db152391-c50c-4484-932a-14822502f987" + "76309d78-8a9e-4212-810f-f6e7fe8d21a4" ], "x-ms-correlation-request-id": [ - "db152391-c50c-4484-932a-14822502f987" + "76309d78-8a9e-4212-810f-f6e7fe8d21a4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000947Z:db152391-c50c-4484-932a-14822502f987" + "CENTRALUS:20151221T184811Z:76309d78-8a9e-4212-810f-f6e7fe8d21a4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:47 GMT" + "Mon, 21 Dec 2015 18:48:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "54cbcb83-3991-4459-ad61-e2c80d43b6a5" + "476709f7-64a2-4142-b046-2144c09e1958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1198" ], "x-ms-request-id": [ - "f01492bd-12c4-4911-a494-5715c776f394" + "08da2c6d-4e7f-48ef-8324-acbf58692b41" ], "x-ms-correlation-request-id": [ - "f01492bd-12c4-4911-a494-5715c776f394" + "08da2c6d-4e7f-48ef-8324-acbf58692b41" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000951Z:f01492bd-12c4-4911-a494-5715c776f394" + "CENTRALUS:20151221T184815Z:08da2c6d-4e7f-48ef-8324-acbf58692b41" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:51 GMT" + "Mon, 21 Dec 2015 18:48:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testDelete\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testDelete\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "135" + "161" ], "client-request-id": [ - "5915043d-2f6c-4470-b653-eabd46ed93b8" + "188616be-60a5-4c7e-ba08-b89a09051e28" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:47 GMT" + "Mon, 21 Dec 2015 18:48:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:48 GMT" + "Mon, 21 Dec 2015 18:48:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b81fcae2-29cd-4a67-8bb1-169999da32f3" + "e9422d50-19cf-4413-9ff8-21dbeb33c26e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5915043d-2f6c-4470-b653-eabd46ed93b8" + "188616be-60a5-4c7e-ba08-b89a09051e28" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testDelete" ], "Date": [ - "Wed, 11 Nov 2015 00:09:48 GMT" + "Mon, 21 Dec 2015 18:48:11 GMT" ], "ETag": [ - "0x8D2EA2C696DB7B5" + "0x8D30A3746302604" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testDelete" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testDelete?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testDelete?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6198c92d-7d80-4e0e-b1fa-ec96ad91c952" + "eb65aafe-be95-4dad-8c6e-313bd44cfa7d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:50 GMT" + "Mon, 21 Dec 2015 18:48:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testDelete\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testDelete\",\r\n \"eTag\": \"0x8D2EA2C696DB7B5\",\r\n \"lastModified\": \"2015-11-11T00:09:48.0919989Z\",\r\n \"creationTime\": \"2015-11-11T00:09:48.0919989Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:09:48.0919989Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:09:48.1960019Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testDelete\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testDelete\",\r\n \"eTag\": \"0x8D30A3746302604\",\r\n \"lastModified\": \"2015-12-21T18:48:10.6411524Z\",\r\n \"creationTime\": \"2015-12-21T18:48:10.6411524Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:48:10.6411524Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:48:10.9511293Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:48 GMT" + "Mon, 21 Dec 2015 18:48:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9660f88d-1b7c-46bc-a9fe-80bb4719f0ac" + "5f2f5bf1-419b-4f48-86f1-7343420fec80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6198c92d-7d80-4e0e-b1fa-ec96ad91c952" + "eb65aafe-be95-4dad-8c6e-313bd44cfa7d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:51 GMT" + "Mon, 21 Dec 2015 18:48:14 GMT" ], "ETag": [ - "0x8D2EA2C696DB7B5" + "0x8D30A3746302604" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,22 +456,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testDelete?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testDelete?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bd9149ad-5c31-4b2d-b92b-914947e38a6e" + "83a1f950-3de3-49c2-a583-fd36acd4cad3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:51 GMT" + "Mon, 21 Dec 2015 18:48:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -481,19 +481,19 @@ "chunked" ], "request-id": [ - "8a7fc045-09ce-4d92-b105-31397762a599" + "8f3b418e-50d7-433b-a4a7-fe0758de946d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bd9149ad-5c31-4b2d-b92b-914947e38a6e" + "83a1f950-3de3-49c2-a583-fd36acd4cad3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:51 GMT" + "Mon, 21 Dec 2015 18:48:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,22 +502,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testDelete'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REZWxldGUlMjcmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools?$filter=id%20eq%20'testDelete'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REZWxldGUlMjcmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8d31a415-ead5-4d21-9af2-ae765e6d8105" + "c7f39741-e208-42f7-b56f-55180967f4a4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:51 GMT" + "Mon, 21 Dec 2015 18:48:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -530,19 +530,19 @@ "chunked" ], "request-id": [ - "0ee110b7-c0c4-423e-93cd-2c1e2ea12607" + "888450a9-9675-4f87-9ec0-193c84a6e441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8d31a415-ead5-4d21-9af2-ae765e6d8105" + "c7f39741-e208-42f7-b56f-55180967f4a4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:51 GMT" + "Mon, 21 Dec 2015 18:48:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json index 17b929a5612c..95393575f4ea 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "f6e9c7b9-649f-4bda-8e2f-f715e11c8146" + "31ec19dc-3f47-449d-92ff-0b19278f8a0c" ], "x-ms-correlation-request-id": [ - "f6e9c7b9-649f-4bda-8e2f-f715e11c8146" + "31ec19dc-3f47-449d-92ff-0b19278f8a0c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000618Z:f6e9c7b9-649f-4bda-8e2f-f715e11c8146" + "WESTUS:20151221T183306Z:31ec19dc-3f47-449d-92ff-0b19278f8a0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:06:17 GMT" + "Mon, 21 Dec 2015 18:33:06 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "ac0d33aa-0cd2-432b-9011-c63762b89518" + "cdd8ff4a-1ecf-419a-b097-23be6e08e46c" ], "x-ms-correlation-request-id": [ - "ac0d33aa-0cd2-432b-9011-c63762b89518" + "cdd8ff4a-1ecf-419a-b097-23be6e08e46c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000623Z:ac0d33aa-0cd2-432b-9011-c63762b89518" + "WESTUS:20151221T183311Z:cdd8ff4a-1ecf-419a-b097-23be6e08e46c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:10 GMT" ] }, "StatusCode": 200 @@ -121,13 +121,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:06:20 GMT" + "Mon, 21 Dec 2015 18:33:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e48f5846-8531-4cd5-b67c-a2c2f6245b7c" + "10c42537-fe70-4e53-b4bb-5d135f35041c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,22 +136,22 @@ "14999" ], "x-ms-request-id": [ - "4e2d4d7b-132f-466b-b6d8-2b91df4d62aa" + "1adf8678-cdeb-4c87-8414-d038d35d82f5" ], "x-ms-correlation-request-id": [ - "4e2d4d7b-132f-466b-b6d8-2b91df4d62aa" + "1adf8678-cdeb-4c87-8414-d038d35d82f5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000619Z:4e2d4d7b-132f-466b-b6d8-2b91df4d62aa" + "WESTUS:20151221T183308Z:1adf8678-cdeb-4c87-8414-d038d35d82f5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:06:19 GMT" + "Mon, 21 Dec 2015 18:33:08 GMT" ], "ETag": [ - "0x8D2EA2BEDB97988" + "0x8D30A352B6AC6C1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:06:24 GMT" + "Mon, 21 Dec 2015 18:33:10 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "9f7ff4b8-d5e2-4a64-ad02-b5b8c20f2b21" + "7a154a5a-9cbc-498d-b0f7-7c996b1a6af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14998" ], "x-ms-request-id": [ - "40765fdb-fe43-4db1-95aa-d28fcc3a33c8" + "a9aad579-fbee-479d-a4ad-377d54724723" ], "x-ms-correlation-request-id": [ - "40765fdb-fe43-4db1-95aa-d28fcc3a33c8" + "a9aad579-fbee-479d-a4ad-377d54724723" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000623Z:40765fdb-fe43-4db1-95aa-d28fcc3a33c8" + "WESTUS:20151221T183311Z:a9aad579-fbee-479d-a4ad-377d54724723" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:11 GMT" ], "ETag": [ - "0x8D2EA2BEFF88390" + "0x8D30A352D868A9A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "3ed39676-960c-4ada-8a06-baf17eceea1b" + "1fc00435-6166-4cb7-9ca5-601a14a59253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "0a40ebb2-cd26-433a-b446-ce93781df066" + "de9fa927-ec2f-4dc6-ad69-09bfd4faf231" ], "x-ms-correlation-request-id": [ - "0a40ebb2-cd26-433a-b446-ce93781df066" + "de9fa927-ec2f-4dc6-ad69-09bfd4faf231" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000619Z:0a40ebb2-cd26-433a-b446-ce93781df066" + "WESTUS:20151221T183308Z:de9fa927-ec2f-4dc6-ad69-09bfd4faf231" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:06:19 GMT" + "Mon, 21 Dec 2015 18:33:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "43e03cbc-01cd-4305-8bd8-3f51f45834cd" + "920f98b8-7acb-49d7-a4cb-695996a90e75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1198" ], "x-ms-request-id": [ - "b64fadf9-92d7-40ec-98fd-200634186f37" + "02278113-32f5-4e03-93cc-817e3069b39d" ], "x-ms-correlation-request-id": [ - "b64fadf9-92d7-40ec-98fd-200634186f37" + "02278113-32f5-4e03-93cc-817e3069b39d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000623Z:b64fadf9-92d7-40ec-98fd-200634186f37" + "WESTUS:20151221T183311Z:02278113-32f5-4e03-93cc-817e3069b39d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testDeletePipe\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testDeletePipe\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "139" + "165" ], "client-request-id": [ - "693350d7-ee1c-42d4-b4fb-777ab998d493" + "e4f2e380-21c9-4316-b2dd-6aa8c12baf87" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:06:19 GMT" + "Mon, 21 Dec 2015 18:33:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:06:20 GMT" + "Mon, 21 Dec 2015 18:33:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "93b8f955-3ed2-49cf-9cf7-b709d65c6ce3" + "9431c43b-d4bd-484a-b94b-685b42ac17a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "693350d7-ee1c-42d4-b4fb-777ab998d493" + "e4f2e380-21c9-4316-b2dd-6aa8c12baf87" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testDeletePipe" ], "Date": [ - "Wed, 11 Nov 2015 00:06:21 GMT" + "Mon, 21 Dec 2015 18:33:08 GMT" ], "ETag": [ - "0x8D2EA2BEDB76CF1" + "0x8D30A352BC54C7F" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testDeletePipe" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testDeletePipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testDeletePipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "db4a33ae-758b-4b9a-be2d-ae4a98b5ca6d" + "0fe2f778-833b-45e1-8e7a-b0214e30df34" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testDeletePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testDeletePipe\",\r\n \"eTag\": \"0x8D2EA2BEDB76CF1\",\r\n \"lastModified\": \"2015-11-11T00:06:20.5375729Z\",\r\n \"creationTime\": \"2015-11-11T00:06:20.5375729Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:06:20.5375729Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:06:20.6167602Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testDeletePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testDeletePipe\",\r\n \"eTag\": \"0x8D30A352BC54C7F\",\r\n \"lastModified\": \"2015-12-21T18:33:07.3266815Z\",\r\n \"creationTime\": \"2015-12-21T18:33:07.3266815Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:07.3266815Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:07.4306351Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:06:20 GMT" + "Mon, 21 Dec 2015 18:33:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5339070b-1b25-4bab-a37f-78d564af993a" + "109acc95-204f-4c30-8d9c-4a54084344ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "db4a33ae-758b-4b9a-be2d-ae4a98b5ca6d" + "0fe2f778-833b-45e1-8e7a-b0214e30df34" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:06:24 GMT" + "Mon, 21 Dec 2015 18:33:10 GMT" ], "ETag": [ - "0x8D2EA2BEDB76CF1" + "0x8D30A352BC54C7F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testDeletePipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testDeletePipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f016bfea-df46-45c3-bc49-d76d99aabc9a" + "db86cb67-d762-4eb0-849f-835329fb1b4b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testDeletePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testDeletePipe\",\r\n \"eTag\": \"0x8D2EA2BEDB76CF1\",\r\n \"lastModified\": \"2015-11-11T00:06:20.5375729Z\",\r\n \"creationTime\": \"2015-11-11T00:06:20.5375729Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:06:20.5375729Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:06:20.6167602Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testDeletePipe\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testDeletePipe\",\r\n \"eTag\": \"0x8D30A352BC54C7F\",\r\n \"lastModified\": \"2015-12-21T18:33:07.3266815Z\",\r\n \"creationTime\": \"2015-12-21T18:33:07.3266815Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:07.3266815Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:07.4306351Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:06:20 GMT" + "Mon, 21 Dec 2015 18:33:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "866c9567-5866-49db-9c47-45378575db21" + "6a8802d0-88b5-42f1-8b2f-e556e86e69fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f016bfea-df46-45c3-bc49-d76d99aabc9a" + "db86cb67-d762-4eb0-849f-835329fb1b4b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:06:24 GMT" + "Mon, 21 Dec 2015 18:33:10 GMT" ], "ETag": [ - "0x8D2EA2BEDB76CF1" + "0x8D30A352BC54C7F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,22 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testDeletePipe?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testDeletePipe?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "be9ab036-b12c-4bbf-a016-201a1f651948" + "9126ade8-10aa-4e7f-b271-12c35cf14fe6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -536,19 +536,19 @@ "chunked" ], "request-id": [ - "a94058be-e6b4-4e4e-be9b-9a5541196ccb" + "02d0c6ff-6ed3-4a42-80ca-816da5c39127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "be9ab036-b12c-4bbf-a016-201a1f651948" + "9126ade8-10aa-4e7f-b271-12c35cf14fe6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:06:24 GMT" + "Mon, 21 Dec 2015 18:33:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,22 +557,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testDeletePipe'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REZWxldGVQaXBlJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testDeletePipe'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REZWxldGVQaXBlJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d2d7ea65-ef43-4c36-a9ce-7210b0a103a6" + "44cf4297-52de-4882-9816-60d6be1ea5d4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:06:23 GMT" + "Mon, 21 Dec 2015 18:33:12 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -585,19 +585,19 @@ "chunked" ], "request-id": [ - "28898e5c-0069-4981-af66-fb9bd3ae0158" + "3d99e770-7c87-43d3-ba5a-20759d2c210f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d2d7ea65-ef43-4c36-a9ce-7210b0a103a6" + "44cf4297-52de-4882-9816-60d6be1ea5d4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:06:24 GMT" + "Mon, 21 Dec 2015 18:33:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleById.json index 96a63418d46f..0b12318b6a3a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "f076f835-0938-4515-9e6e-26b17718dbe3" + "18cf9e0b-7c45-46b3-854f-1f4bdfb27785" ], "x-ms-correlation-request-id": [ - "f076f835-0938-4515-9e6e-26b17718dbe3" + "18cf9e0b-7c45-46b3-854f-1f4bdfb27785" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022903Z:f076f835-0938-4515-9e6e-26b17718dbe3" + "WESTUS:20151221T183219Z:18cf9e0b-7c45-46b3-854f-1f4bdfb27785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:03 GMT" + "Mon, 21 Dec 2015 18:32:19 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "d3ae1cd8-077f-4bc8-9ed9-455de587cd22" + "cd572364-2b36-4e3b-9613-2511f9f04768" ], "x-ms-correlation-request-id": [ - "d3ae1cd8-077f-4bc8-9ed9-455de587cd22" + "cd572364-2b36-4e3b-9613-2511f9f04768" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022913Z:d3ae1cd8-077f-4bc8-9ed9-455de587cd22" + "WESTUS:20151221T183229Z:cd572364-2b36-4e3b-9613-2511f9f04768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:13 GMT" + "Mon, 21 Dec 2015 18:32:29 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "55f31163-bcaa-42ea-a21e-3df9b4a3134e" + "6b9968e1-be2d-4724-a654-94bd61c39566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "95904c69-e264-4e1a-9bff-510bb6479348" + "2cae072f-92fb-4304-aea7-7b3c2e9235df" ], "x-ms-correlation-request-id": [ - "95904c69-e264-4e1a-9bff-510bb6479348" + "2cae072f-92fb-4304-aea7-7b3c2e9235df" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022905Z:95904c69-e264-4e1a-9bff-510bb6479348" + "WESTUS:20151221T183221Z:2cae072f-92fb-4304-aea7-7b3c2e9235df" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:04 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "ETag": [ - "0x8D2EA3FDF6DF23A" + "0x8D30A350F925961" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:15 GMT" + "Mon, 21 Dec 2015 18:32:28 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ced0583b-bea8-49da-ab3d-f019fa05738f" + "c69321d2-229f-43b5-8450-ba889d9df7ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "782c29b1-f04f-4698-8a69-0615fe6103ee" + "bf63d94c-4a76-4f92-8e9d-ea82b84bdef4" ], "x-ms-correlation-request-id": [ - "782c29b1-f04f-4698-8a69-0615fe6103ee" + "bf63d94c-4a76-4f92-8e9d-ea82b84bdef4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022913Z:782c29b1-f04f-4698-8a69-0615fe6103ee" + "WESTUS:20151221T183230Z:bf63d94c-4a76-4f92-8e9d-ea82b84bdef4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:13 GMT" + "Mon, 21 Dec 2015 18:32:29 GMT" ], "ETag": [ - "0x8D2EA3FE4A566F8" + "0x8D30A3514D6507E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "7c04b689-eb41-4722-abc9-7432e6d10595" + "a145a043-e253-4c83-ad12-a652ccad431c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "9c53837c-f33a-4843-bd36-b42915fc7eec" + "290f14f9-f223-494d-9de7-dd5ae54808bf" ], "x-ms-correlation-request-id": [ - "9c53837c-f33a-4843-bd36-b42915fc7eec" + "290f14f9-f223-494d-9de7-dd5ae54808bf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022905Z:9c53837c-f33a-4843-bd36-b42915fc7eec" + "WESTUS:20151221T183221Z:290f14f9-f223-494d-9de7-dd5ae54808bf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:05 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "9c3a630f-dc33-4260-8a85-6673775fd845" + "4854b69e-6dd0-48bd-8c08-d2c61c9cf363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "6edbdb83-aa5e-47e4-9021-31b73d31a28d" + "67995ec2-cea9-45d2-a19d-7ada41c8ad77" ], "x-ms-correlation-request-id": [ - "6edbdb83-aa5e-47e4-9021-31b73d31a28d" + "67995ec2-cea9-45d2-a19d-7ada41c8ad77" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022914Z:6edbdb83-aa5e-47e4-9021-31b73d31a28d" + "WESTUS:20151221T183230Z:67995ec2-cea9-45d2-a19d-7ada41c8ad77" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:14 GMT" + "Mon, 21 Dec 2015 18:32:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1b31b261-a2f8-4fda-8e18-35a6852ca394" + "0fb9a4fa-005d-4ec9-b9bb-b7dcf1fe7248" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:05 GMT" + "Mon, 21 Dec 2015 18:32:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FB29ACD0E\",\r\n \"lastModified\": \"2015-11-11T02:27:51.2989966Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:27:52.2919546Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3450E7AF86\",\r\n \"lastModified\": \"2015-12-21T18:27:00.1310086Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:27:00.1310086Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:27:01.1489094Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:51 GMT" + "Mon, 21 Dec 2015 18:27:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3ed345a4-d54e-4831-b61f-ceef1fbfda9b" + "2111bbab-48e0-4790-8132-4b906c037a12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1b31b261-a2f8-4fda-8e18-35a6852ca394" + "0fb9a4fa-005d-4ec9-b9bb-b7dcf1fe7248" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:05 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "ETag": [ - "0x8D2EA3FB29ACD0E" + "0x8D30A3450E7AF86" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e327779a-fe9a-47d6-8a86-502693a1d767" + "3dbb3328-7c89-44e0-8c8c-88d55b9387d7" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:05 GMT" + "Mon, 21 Dec 2015 18:32:22 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FDF61C09C\",\r\n \"lastModified\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A350FFB1EF7\",\r\n \"lastModified\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d9c5be67-f991-488b-b027-4f6bfca63118" + "4ce0e68e-821d-4901-a785-16c769ad157e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e327779a-fe9a-47d6-8a86-502693a1d767" + "3dbb3328-7c89-44e0-8c8c-88d55b9387d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "ETag": [ - "0x8D2EA3FDF61C09C" + "0x8D30A350FFB1EF7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "69ded21b-a52a-4a9b-b5ff-4b0be427612b" + "3e4faf38-d5ad-4f3f-8a19-1e548caebd72" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:10 GMT" + "Mon, 21 Dec 2015 18:32:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FDF61C09C\",\r\n \"lastModified\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:07.9647592Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A350FFB1EF7\",\r\n \"lastModified\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:32:22.7971874Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cf574e43-7cdd-4883-b74d-28bb50f085a9" + "42a9d71d-c142-4227-8d7a-e026cf36f541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "69ded21b-a52a-4a9b-b5ff-4b0be427612b" + "3e4faf38-d5ad-4f3f-8a19-1e548caebd72" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:12 GMT" + "Mon, 21 Dec 2015 18:32:26 GMT" ], "ETag": [ - "0x8D2EA3FDF61C09C" + "0x8D30A350FFB1EF7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,53 +502,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "45bb4533-524b-4c93-aa0b-d032e5f5cb3c" + "75c00ca4-d992-48b4-aadc-04d543151ff4" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:14 GMT" + "Mon, 21 Dec 2015 18:32:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FDF61C09C\",\r\n \"lastModified\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:07.9647592Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:29:06.4225948Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A350FFB1EF7\",\r\n \"lastModified\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:32:22.7971874Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:32:20.7032055Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e710537a-1866-41db-9cbf-14a3ade69ab1" + "f4ed93ef-c853-47e3-aabd-9c04dadc950f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "45bb4533-524b-4c93-aa0b-d032e5f5cb3c" + "75c00ca4-d992-48b4-aadc-04d543151ff4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:16 GMT" + "Mon, 21 Dec 2015 18:32:29 GMT" ], "ETag": [ - "0x8D2EA3FDF61C09C" + "0x8D30A350FFB1EF7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", "RequestHeaders": { @@ -569,35 +569,35 @@ "48" ], "client-request-id": [ - "0326de57-9eca-4702-8754-3afa2f53b27b" + "41c77ac2-3e81-4a9b-a4bc-f6d9ab7013de" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:05 GMT" + "Mon, 21 Dec 2015 18:32:21 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "752f862f-b535-431d-afc4-228a053f7faf" + "dfd87ddf-c8fe-49ac-919b-0d84e25a22ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0326de57-9eca-4702-8754-3afa2f53b27b" + "41c77ac2-3e81-4a9b-a4bc-f6d9ab7013de" ], "DataServiceVersion": [ "3.0" @@ -606,10 +606,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:29:06 GMT" + "Mon, 21 Dec 2015 18:32:20 GMT" ], "ETag": [ - "0x8D2EA3FDF61C09C" + "0x8D30A350FFB1EF7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,41 +618,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6233dada-79bf-4bde-abdd-c4cbb029e033" + "ef25c9de-dd12-4560-8924-53b2441ad5d8" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:14 GMT" + "Mon, 21 Dec 2015 18:32:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:15 GMT" + "Mon, 21 Dec 2015 18:32:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "05c1b82c-8bad-42fd-a768-e36977e518a1" + "95e1683b-3992-46ed-9bae-b7d8a325a986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6233dada-79bf-4bde-abdd-c4cbb029e033" + "ef25c9de-dd12-4560-8924-53b2441ad5d8" ], "DataServiceVersion": [ "3.0" @@ -661,10 +661,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:29:16 GMT" + "Mon, 21 Dec 2015 18:32:31 GMT" ], "ETag": [ - "0x8D2EA3FE5065703" + "0x8D30A351527F64F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,26 +673,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "687dc5cf-6019-47de-99f6-e43647efde5a" + "e511856c-3735-4483-9772-b268db520f94" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:15 GMT" + "Mon, 21 Dec 2015 18:32:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FE5065703\",\r\n \"lastModified\": \"2015-11-11T02:29:15.8898435Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:15.8898435Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A351527F64F\",\r\n \"lastModified\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -701,19 +701,19 @@ "chunked" ], "request-id": [ - "bf15fc3b-8834-4893-8d85-14275c08cd8b" + "b2d1cfb6-c04b-48b9-b2b3-9296b12941c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "687dc5cf-6019-47de-99f6-e43647efde5a" + "e511856c-3735-4483-9772-b268db520f94" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:16 GMT" + "Mon, 21 Dec 2015 18:32:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleByPipeline.json index a6bf439cdf52..f58ec7f84366 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDisableAutoScaleByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "278e9ec4-b934-4fd3-ad51-c7f48e4e2091" + "25317753-7056-4ad5-a825-a8d754d7601f" ], "x-ms-correlation-request-id": [ - "278e9ec4-b934-4fd3-ad51-c7f48e4e2091" + "25317753-7056-4ad5-a825-a8d754d7601f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023029Z:278e9ec4-b934-4fd3-ad51-c7f48e4e2091" + "CENTRALUS:20151221T214204Z:25317753-7056-4ad5-a825-a8d754d7601f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:30:28 GMT" + "Mon, 21 Dec 2015 21:42:03 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "b253c401-4592-4e49-b569-f358e4eaef58" + "e87ceb84-9709-42a1-9a58-f8b5be8c4147" ], "x-ms-correlation-request-id": [ - "b253c401-4592-4e49-b569-f358e4eaef58" + "e87ceb84-9709-42a1-9a58-f8b5be8c4147" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023104Z:b253c401-4592-4e49-b569-f358e4eaef58" + "CENTRALUS:20151221T214214Z:e87ceb84-9709-42a1-9a58-f8b5be8c4147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:04 GMT" + "Mon, 21 Dec 2015 21:42:14 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:30 GMT" + "Mon, 21 Dec 2015 21:42:03 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "afb81436-324a-4a69-a473-4647828a69fd" + "1e55fb93-201d-44fe-903b-c92739029ad8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "24e70c3d-68ab-4436-b01e-ec39101b7795" + "b9971bd6-d5fa-44c3-aa5a-70894ed698c1" ], "x-ms-correlation-request-id": [ - "24e70c3d-68ab-4436-b01e-ec39101b7795" + "b9971bd6-d5fa-44c3-aa5a-70894ed698c1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023030Z:24e70c3d-68ab-4436-b01e-ec39101b7795" + "CENTRALUS:20151221T214205Z:b9971bd6-d5fa-44c3-aa5a-70894ed698c1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:30:30 GMT" + "Mon, 21 Dec 2015 21:42:04 GMT" ], "ETag": [ - "0x8D2EA40117D4AC2" + "0x8D30A4F90BD93C8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:31:04 GMT" + "Mon, 21 Dec 2015 21:42:12 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7b7e49b2-8887-485b-8a19-949df1c70a59" + "2a41717c-193d-4854-bfed-fba9024e75e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "5a163c65-6047-4f6c-9593-e876f4d16c59" + "ab557725-3f85-4858-aad3-e51b8945be0b" ], "x-ms-correlation-request-id": [ - "5a163c65-6047-4f6c-9593-e876f4d16c59" + "ab557725-3f85-4858-aad3-e51b8945be0b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023104Z:5a163c65-6047-4f6c-9593-e876f4d16c59" + "CENTRALUS:20151221T214215Z:ab557725-3f85-4858-aad3-e51b8945be0b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:03 GMT" + "Mon, 21 Dec 2015 21:42:14 GMT" ], "ETag": [ - "0x8D2EA40260CD6B4" + "0x8D30A4F964BADEF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "612f51a1-6313-4fb1-89e0-c93cdd514c6d" + "09adc497-6af4-467e-a7d4-85305cfd3147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "d79d612a-f43a-4bc0-a502-b00530cb897a" + "40a72c91-e096-4c84-9c46-df9116488986" ], "x-ms-correlation-request-id": [ - "d79d612a-f43a-4bc0-a502-b00530cb897a" + "40a72c91-e096-4c84-9c46-df9116488986" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023030Z:d79d612a-f43a-4bc0-a502-b00530cb897a" + "CENTRALUS:20151221T214205Z:40a72c91-e096-4c84-9c46-df9116488986" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:30:30 GMT" + "Mon, 21 Dec 2015 21:42:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "a9826b0d-78cb-4558-8901-a42417575de4" + "b6faebf5-dbac-4266-b80b-5a2953b7ab62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "7ebf25bd-7508-4946-8351-9f9236e93eb2" + "e4b3d9b8-95cd-45f6-b8ba-9cd24ddc43ab" ], "x-ms-correlation-request-id": [ - "7ebf25bd-7508-4946-8351-9f9236e93eb2" + "e4b3d9b8-95cd-45f6-b8ba-9cd24ddc43ab" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T023104Z:7ebf25bd-7508-4946-8351-9f9236e93eb2" + "CENTRALUS:20151221T214215Z:e4b3d9b8-95cd-45f6-b8ba-9cd24ddc43ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:31:03 GMT" + "Mon, 21 Dec 2015 21:42:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1dc370ca-0321-4593-9e3c-e4c44445e74d" + "5ca36f5f-1836-4d71-9a80-a6514c733b84" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:30:30 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FFBEDAC9D\",\r\n \"lastModified\": \"2015-11-11T02:29:54.3157917Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:56.5471706Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4D8434C3A4\",\r\n \"lastModified\": \"2015-12-21T21:27:23.6181924Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:27:23.6181924Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:01:00.0640757Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:54 GMT" + "Mon, 21 Dec 2015 21:27:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "24f1442c-187d-47cb-913b-17f97ef5788a" + "0c2be0ee-2114-4a81-8f95-091ec3ba5b6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1dc370ca-0321-4593-9e3c-e4c44445e74d" + "5ca36f5f-1836-4d71-9a80-a6514c733b84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "ETag": [ - "0x8D2EA3FFBEDAC9D" + "0x8D30A4D8434C3A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bd2dc96d-053a-4c27-a601-c9b65a99fce2" + "72ef08be-055b-474d-a2bc-5696641f17a7" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:30:30 GMT" + "Mon, 21 Dec 2015 21:42:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4F91B234A1\",\r\n \"lastModified\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ac39eb07-6b47-4ec2-a4c9-b0aea6b073e4" + "ee01f12a-bf1f-46a8-aeb6-49b163198409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bd2dc96d-053a-4c27-a601-c9b65a99fce2" + "72ef08be-055b-474d-a2bc-5696641f17a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:06 GMT" ], "ETag": [ - "0x8D2EA401233B8EE" + "0x8D30A4F91B234A1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "381c2b7f-6d1c-4192-a3da-f3cb57dbef8e" + "cbb368b3-cc32-492e-b141-b34691871ecd" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:30:36 GMT" + "Mon, 21 Dec 2015 21:42:11 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4F91B234A1\",\r\n \"lastModified\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:42:07.2615177Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8b549200-8afc-4bec-a233-e37b8d10615c" + "c9da94be-1cf1-4fec-8f0b-1c904ac3c2cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "381c2b7f-6d1c-4192-a3da-f3cb57dbef8e" + "cbb368b3-cc32-492e-b141-b34691871ecd" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:30:37 GMT" + "Mon, 21 Dec 2015 21:42:10 GMT" ], "ETag": [ - "0x8D2EA401233B8EE" + "0x8D30A4F91B234A1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,53 +502,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3d6ee826-297a-4af8-a752-deecdd1a8329" + "a257a688-1606-4655-aa24-9cd69a3c51a7" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:30:41 GMT" + "Mon, 21 Dec 2015 21:42:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4F91B234A1\",\r\n \"lastModified\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:42:07.2615177Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "02d0d0d7-af00-48dd-aa47-47b0c32fe9eb" + "be3ce960-2230-47ca-b168-59a0b7c17b9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3d6ee826-297a-4af8-a752-deecdd1a8329" + "a257a688-1606-4655-aa24-9cd69a3c51a7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:30:42 GMT" + "Mon, 21 Dec 2015 21:42:16 GMT" ], "ETag": [ - "0x8D2EA401233B8EE" + "0x8D30A4F91B234A1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,53 +557,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e32d937f-999f-43bb-95df-4c2e5e396aed" + "e8bd11a6-0866-4710-958a-df7dc3396f69" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:30:46 GMT" + "Mon, 21 Dec 2015 21:42:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4F91B234A1\",\r\n \"lastModified\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:42:07.2615177Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:42:05.2441249Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "32231606-2a8b-4588-aec2-02d4462aa244" + "469d81b1-7643-4083-a2c1-6f934ec86417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e32d937f-999f-43bb-95df-4c2e5e396aed" + "e8bd11a6-0866-4710-958a-df7dc3396f69" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:30:47 GMT" + "Mon, 21 Dec 2015 21:42:16 GMT" ], "ETag": [ - "0x8D2EA401233B8EE" + "0x8D30A4F91B234A1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,283 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "4fa09b6e-d42a-4efe-b7e7-c4b5bb15fbc0" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 02:30:51 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "fd6b6ffb-4688-4d11-b3c1-96fdefe49894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "4fa09b6e-d42a-4efe-b7e7-c4b5bb15fbc0" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 02:30:52 GMT" - ], - "ETag": [ - "0x8D2EA401233B8EE" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "c2dd6bb9-c2ad-4759-bdac-f9b59d5d9946" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 02:30:56 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "2bca7c57-3ed3-402c-95cc-4d56161c5464" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "c2dd6bb9-c2ad-4759-bdac-f9b59d5d9946" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 02:30:57 GMT" - ], - "ETag": [ - "0x8D2EA401233B8EE" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "d5ad56a5-3ea1-4b63-a2d6-a8c5e7785877" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 02:31:01 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:31:00.7358996Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "d057013f-c085-43a4-8eb6-24d6811b083d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "d5ad56a5-3ea1-4b63-a2d6-a8c5e7785877" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 02:31:03 GMT" - ], - "ETag": [ - "0x8D2EA401233B8EE" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "8a6243eb-2342-4bd2-89c2-ac99c1656cde" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 02:31:04 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:31:00.7358996Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "0b4f3bd4-17ff-479f-acc6-0922402d18d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "8a6243eb-2342-4bd2-89c2-ac99c1656cde" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" - ], - "ETag": [ - "0x8D2EA401233B8EE" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "c59afdfe-9df1-4eb8-9162-ffe8629c0a95" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA401233B8EE\",\r\n \"lastModified\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:31:00.7358996Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:30:31.6847342Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "743888b1-8c48-4e49-95a6-8c94626cba2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "c59afdfe-9df1-4eb8-9162-ffe8629c0a95" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" - ], - "ETag": [ - "0x8D2EA401233B8EE" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", "RequestHeaders": { @@ -899,35 +624,35 @@ "48" ], "client-request-id": [ - "34bf7c9c-dbee-4f69-bf1b-cd8f68a1a238" + "7a4400da-380e-464c-a91c-f007393a7be4" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:30:30 GMT" + "Mon, 21 Dec 2015 21:42:06 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8d878002-aeea-4d3a-a3f9-8bae167735f5" + "65fc98b1-a3aa-4af1-a397-2ae52a0d930e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "34bf7c9c-dbee-4f69-bf1b-cd8f68a1a238" + "7a4400da-380e-464c-a91c-f007393a7be4" ], "DataServiceVersion": [ "3.0" @@ -936,10 +661,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:30:31 GMT" + "Mon, 21 Dec 2015 21:42:05 GMT" ], "ETag": [ - "0x8D2EA401233B8EE" + "0x8D30A4F91B234A1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -948,41 +673,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2c92ef0c-84c8-46c1-9fee-6f0949fc2d13" + "895b330a-8612-4fb0-9dd6-6fd653d94db3" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" + "Mon, 21 Dec 2015 21:42:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:31:06 GMT" + "Mon, 21 Dec 2015 21:42:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "218bff5b-966e-41c1-9fff-8bb4918924e7" + "4e2d3e6b-c498-49e4-bcee-356a359f8c10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2c92ef0c-84c8-46c1-9fee-6f0949fc2d13" + "895b330a-8612-4fb0-9dd6-6fd653d94db3" ], "DataServiceVersion": [ "3.0" @@ -991,10 +716,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" + "Mon, 21 Dec 2015 21:42:17 GMT" ], "ETag": [ - "0x8D2EA4026BCF809" + "0x8D30A4F972BB560" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1003,26 +728,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cca526fe-6973-4065-afbf-48237c7cfec4" + "3f509c83-96da-47d5-aac1-dac1c66c5a31" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" + "Mon, 21 Dec 2015 21:42:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA4026BCF809\",\r\n \"lastModified\": \"2015-11-11T02:31:06.1386249Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:31:06.1386249Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4F972BB560\",\r\n \"lastModified\": \"2015-12-21T21:42:14.4290144Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T21:42:14.4290144Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:42:14.4290144Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1031,19 +756,19 @@ "chunked" ], "request-id": [ - "350f54d1-99a1-410a-b36c-9a36fa739ae7" + "24964d31-0d20-49bc-b2eb-d9f0980f3f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cca526fe-6973-4065-afbf-48237c7cfec4" + "3f509c83-96da-47d5-aac1-dac1c66c5a31" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:31:05 GMT" + "Mon, 21 Dec 2015 21:42:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleById.json index 17e51a0e955a..b9a174ca419e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "81dc44c1-307e-4452-97d6-bf5912a61346" + "3425c540-cc73-4ede-b354-390a8be20967" ], "x-ms-correlation-request-id": [ - "81dc44c1-307e-4452-97d6-bf5912a61346" + "3425c540-cc73-4ede-b354-390a8be20967" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022948Z:81dc44c1-307e-4452-97d6-bf5912a61346" + "CENTRALUS:20151221T182615Z:3425c540-cc73-4ede-b354-390a8be20967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:47 GMT" + "Mon, 21 Dec 2015 18:26:14 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "f0a2967b-5f31-4871-9196-ea43b75a4033" + "1f602469-684d-4a72-94ee-9a071f1d7edf" ], "x-ms-correlation-request-id": [ - "f0a2967b-5f31-4871-9196-ea43b75a4033" + "1f602469-684d-4a72-94ee-9a071f1d7edf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022952Z:f0a2967b-5f31-4871-9196-ea43b75a4033" + "CENTRALUS:20151221T182619Z:1f602469-684d-4a72-94ee-9a071f1d7edf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:52 GMT" + "Mon, 21 Dec 2015 18:26:18 GMT" ] }, "StatusCode": 200 @@ -121,13 +121,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:14 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e5be71f1-0e80-4436-9af2-96122966fe17" + "41e13842-a61d-4750-8549-29600a183c26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,22 +136,22 @@ "14999" ], "x-ms-request-id": [ - "04da7c90-e2ba-4ee1-bb26-63b0754d8e10" + "e0969a69-2d0e-4493-9731-32053bf84dfe" ], "x-ms-correlation-request-id": [ - "04da7c90-e2ba-4ee1-bb26-63b0754d8e10" + "e0969a69-2d0e-4493-9731-32053bf84dfe" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022949Z:04da7c90-e2ba-4ee1-bb26-63b0754d8e10" + "CENTRALUS:20151221T182615Z:e0969a69-2d0e-4493-9731-32053bf84dfe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "ETag": [ - "0x8D2EA3FF9374440" + "0x8D30A3435DD7159" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,13 +184,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:53 GMT" + "Mon, 21 Dec 2015 18:26:18 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "878452d3-0292-4d82-a02a-5cdf48bc9e4f" + "79a600a3-7e78-40af-ab65-0dfc5dd98dd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,22 +199,22 @@ "14998" ], "x-ms-request-id": [ - "0889fe4a-4ecd-4760-bf03-a84ecffc8613" + "474adcd6-692e-40f6-bc53-13b7f0bbb886" ], "x-ms-correlation-request-id": [ - "0889fe4a-4ecd-4760-bf03-a84ecffc8613" + "474adcd6-692e-40f6-bc53-13b7f0bbb886" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022952Z:0889fe4a-4ecd-4760-bf03-a84ecffc8613" + "CENTRALUS:20151221T182619Z:474adcd6-692e-40f6-bc53-13b7f0bbb886" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:52 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "ETag": [ - "0x8D2EA3FFB47E015" + "0x8D30A3437F22C3F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "426f34b1-dad9-45f2-a518-1f1d470a35a0" + "d752cb37-d28d-4ac5-81cd-6bde4c359916" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "208b65ff-37b6-478e-8f34-d928f88c9994" + "df520d3f-0acc-4162-9595-f13acfd0a0bd" ], "x-ms-correlation-request-id": [ - "208b65ff-37b6-478e-8f34-d928f88c9994" + "df520d3f-0acc-4162-9595-f13acfd0a0bd" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022949Z:208b65ff-37b6-478e-8f34-d928f88c9994" + "CENTRALUS:20151221T182616Z:df520d3f-0acc-4162-9595-f13acfd0a0bd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "321cf9ed-05b3-4979-8a3d-33283e8cf425" + "ab013a72-5514-4bb0-8df2-9869e785779b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1198" ], "x-ms-request-id": [ - "ed2bd159-47bb-40de-b9f0-4f9ba216479b" + "f6dd7921-8159-45fb-9bc7-d55eef9535e3" ], "x-ms-correlation-request-id": [ - "ed2bd159-47bb-40de-b9f0-4f9ba216479b" + "f6dd7921-8159-45fb-9bc7-d55eef9535e3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022952Z:ed2bd159-47bb-40de-b9f0-4f9ba216479b" + "CENTRALUS:20151221T182619Z:f6dd7921-8159-45fb-9bc7-d55eef9535e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:29:52 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "da27d352-1656-44de-af4d-a542c4957e01" + "513bd9bd-26e3-416b-8458-21102a806fc5" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FE5065703\",\r\n \"lastModified\": \"2015-11-11T02:29:15.8898435Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:18.0485636Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A34077F7FB5\",\r\n \"lastModified\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:25:56.6123077Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:15 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0f4f24d7-6094-4ff4-b11f-c3002f09a5be" + "83a1f5a7-7136-480b-90e3-e1bf436ce0a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "da27d352-1656-44de-af4d-a542c4957e01" + "513bd9bd-26e3-416b-8458-21102a806fc5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "ETag": [ - "0x8D2EA3FE5065703" + "0x8D30A34077F7FB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6e452e9a-7300-4802-8c00-f9786d4c8c48" + "1b4b5f57-564c-411c-9ad7-81881ce6df6e" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FF9A01AE6\",\r\n \"lastModified\": \"2015-11-11T02:29:50.451991Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:18.0485636Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3436304B6B\",\r\n \"lastModified\": \"2015-12-21T18:26:15.3083755Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:15.3083755Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:25:56.6123077Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:50 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "eb023005-5da3-4aed-80dd-59297df1dc8c" + "de98c6f6-e886-4c30-bb41-f6f9b6a0db04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6e452e9a-7300-4802-8c00-f9786d4c8c48" + "1b4b5f57-564c-411c-9ad7-81881ce6df6e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "ETag": [ - "0x8D2EA3FF9A01AE6" + "0x8D30A3436304B6B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5b091111-624d-41a7-a16e-e48cc80a7540" + "d26a86db-cdec-4d78-971c-f090f73e1ada" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:52 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FF9A01AE6\",\r\n \"lastModified\": \"2015-11-11T02:29:50.451991Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:18.0485636Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3436304B6B\",\r\n \"lastModified\": \"2015-12-21T18:26:15.3083755Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:15.3083755Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:25:56.6123077Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:50 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4393d381-7005-4bb2-bb1e-40a4df5a1010" + "f11eb0f4-b037-4574-a5de-a40b02b0b87b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5b091111-624d-41a7-a16e-e48cc80a7540" + "d26a86db-cdec-4d78-971c-f090f73e1ada" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:55 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "ETag": [ - "0x8D2EA3FF9A01AE6" + "0x8D30A3436304B6B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,41 +502,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aca94727-801b-4328-a56d-725f0cb30ae9" + "2df30ffa-f340-49ae-b980-4fa577362f72" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:50 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5e650bd0-35b8-4e8f-9c1b-cd4c867bcda2" + "df5579ca-ff0e-4050-9aa6-090ce4915812" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "aca94727-801b-4328-a56d-725f0cb30ae9" + "2df30ffa-f340-49ae-b980-4fa577362f72" ], "DataServiceVersion": [ "3.0" @@ -545,10 +545,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:29:49 GMT" + "Mon, 21 Dec 2015 18:26:15 GMT" ], "ETag": [ - "0x8D2EA3FF9A01AE6" + "0x8D30A3436304B6B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,41 +557,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1aaffb9d-5fa8-473b-9086-952f195c2153" + "5450fd33-e242-4a7f-b9dc-e64985c4d001" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:53 GMT" + "Mon, 21 Dec 2015 18:26:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:54 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9827b86b-93d0-4465-af7f-b40852a416bc" + "b83141f5-cfa3-43c7-b05b-e31272bc118e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1aaffb9d-5fa8-473b-9086-952f195c2153" + "5450fd33-e242-4a7f-b9dc-e64985c4d001" ], "DataServiceVersion": [ "3.0" @@ -600,10 +600,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:29:53 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "ETag": [ - "0x8D2EA3FFBE93049" + "0x8D30A34388CDCCE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,47 +612,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", + "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "48" + "90" ], "client-request-id": [ - "c0cfd7fb-860f-416c-8164-56a33790d09d" + "c661e2e2-1eda-4ab3-84ac-8d15853b5f73" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:52 GMT" + "Mon, 21 Dec 2015 18:26:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:29:53 GMT" + "Mon, 21 Dec 2015 18:26:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "55c6ed1c-b10a-49dc-af18-b395fac011b2" + "86cd1b99-4260-463f-af9f-4b91de1ab7c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c0cfd7fb-860f-416c-8164-56a33790d09d" + "c661e2e2-1eda-4ab3-84ac-8d15853b5f73" ], "DataServiceVersion": [ "3.0" @@ -661,10 +661,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:29:55 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "ETag": [ - "0x8D2EA3FFBBD4FAA" + "0x8D30A3438566C97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,26 +673,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7229b9ae-74f2-4c1e-ba38-04c2531eeaa7" + "3a985bc8-91c6-4121-90d8-d512cf8650d4" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:29:53 GMT" + "Mon, 21 Dec 2015 18:26:20 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FFBBD4FAA\",\r\n \"lastModified\": \"2015-11-11T02:29:53.9988394Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:29:53.9988394Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:29:53.9988394Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3438566C97\",\r\n \"lastModified\": \"2015-12-21T18:26:18.9137047Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:18.9137047Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:26:18.9137047Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:26:18.9137047Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -701,19 +701,19 @@ "chunked" ], "request-id": [ - "a1a998cc-2206-4866-8444-c92c62289b8d" + "7c1c02d0-eeb4-4432-ae0b-b1f98672700d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7229b9ae-74f2-4c1e-ba38-04c2531eeaa7" + "3a985bc8-91c6-4121-90d8-d512cf8650d4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:29:55 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleByPipeline.json index 927fd07b4115..36b7470c7825 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEnableAutoScaleByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "2668356c-787a-4829-9b6c-e74ab86016f1" + "e9ce2c05-7b94-46d0-9320-6ea776db2c1b" ], "x-ms-correlation-request-id": [ - "2668356c-787a-4829-9b6c-e74ab86016f1" + "e9ce2c05-7b94-46d0-9320-6ea776db2c1b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022744Z:2668356c-787a-4829-9b6c-e74ab86016f1" + "CENTRALUS:20151221T182656Z:e9ce2c05-7b94-46d0-9320-6ea776db2c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:27:44 GMT" + "Mon, 21 Dec 2015 18:26:55 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "bf002b8f-9d46-4290-b06a-4ac644392869" + "0af9c854-3b29-4bc6-b7ba-be4012169b32" ], "x-ms-correlation-request-id": [ - "bf002b8f-9d46-4290-b06a-4ac644392869" + "0af9c854-3b29-4bc6-b7ba-be4012169b32" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022749Z:bf002b8f-9d46-4290-b06a-4ac644392869" + "CENTRALUS:20151221T182700Z:0af9c854-3b29-4bc6-b7ba-be4012169b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:27:48 GMT" + "Mon, 21 Dec 2015 18:27:00 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:45 GMT" + "Mon, 21 Dec 2015 18:26:55 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "5223d6a4-10f5-4326-a75f-c2b1107ee57f" + "12202951-b3cf-42eb-8fb4-b805e4210f58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "6cb9cd1e-d45c-4e92-b752-fbd0d7797027" + "8789b1fe-34ce-429b-9ea7-1c7bba887c27" ], "x-ms-correlation-request-id": [ - "6cb9cd1e-d45c-4e92-b752-fbd0d7797027" + "8789b1fe-34ce-429b-9ea7-1c7bba887c27" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022745Z:6cb9cd1e-d45c-4e92-b752-fbd0d7797027" + "CENTRALUS:20151221T182656Z:8789b1fe-34ce-429b-9ea7-1c7bba887c27" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:27:44 GMT" + "Mon, 21 Dec 2015 18:26:56 GMT" ], "ETag": [ - "0x8D2EA3FAF72236D" + "0x8D30A344E318201" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:49 GMT" + "Mon, 21 Dec 2015 18:26:59 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8469a88a-6350-477c-96b3-fbe686d5586e" + "745c9e75-9407-4b0c-8d7a-086e5a7492b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "971296ab-150a-44c2-ba5a-41a7f773416d" + "53cf3f4b-023b-4fc1-a42f-3ed928b94767" ], "x-ms-correlation-request-id": [ - "971296ab-150a-44c2-ba5a-41a7f773416d" + "53cf3f4b-023b-4fc1-a42f-3ed928b94767" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022749Z:971296ab-150a-44c2-ba5a-41a7f773416d" + "CENTRALUS:20151221T182700Z:53cf3f4b-023b-4fc1-a42f-3ed928b94767" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:27:49 GMT" + "Mon, 21 Dec 2015 18:26:59 GMT" ], "ETag": [ - "0x8D2EA3FB198EFDB" + "0x8D30A34503DD045" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "c94b8767-56c3-413d-8829-ff81567214e2" + "d3eb2e06-b67a-48cf-abbc-3ece22fa8c2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "c27f3845-1eb2-4682-9ed0-192ccbe59b03" + "8590176e-e4b2-413f-b113-076e414fc0e1" ], "x-ms-correlation-request-id": [ - "c27f3845-1eb2-4682-9ed0-192ccbe59b03" + "8590176e-e4b2-413f-b113-076e414fc0e1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022746Z:c27f3845-1eb2-4682-9ed0-192ccbe59b03" + "CENTRALUS:20151221T182656Z:8590176e-e4b2-413f-b113-076e414fc0e1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:27:45 GMT" + "Mon, 21 Dec 2015 18:26:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "c83ecc9c-5c63-4aa2-bda3-b10d719fccf7" + "3cd21f2f-3d13-4e59-8d11-effef4ae85d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "891559f1-7d59-4da9-a4b2-36a6f2bb022b" + "445ecda0-9f29-4cc2-9ff5-a5528662499e" ], "x-ms-correlation-request-id": [ - "891559f1-7d59-4da9-a4b2-36a6f2bb022b" + "445ecda0-9f29-4cc2-9ff5-a5528662499e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T022749Z:891559f1-7d59-4da9-a4b2-36a6f2bb022b" + "CENTRALUS:20151221T182700Z:445ecda0-9f29-4cc2-9ff5-a5528662499e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 02:27:49 GMT" + "Mon, 21 Dec 2015 18:26:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "36ef18c0-1f7a-4787-9eba-bbcaf0d45a41" + "e9093cf6-56ee-4fcf-8352-ee59be28cade" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:45 GMT" + "Mon, 21 Dec 2015 18:26:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D9B1791F4\",\r\n \"lastModified\": \"2015-11-11T00:18:20.9102324Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A34388CDCCE\",\r\n \"lastModified\": \"2015-12-21T18:26:19.2704718Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:19.2704718Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:26:24.062231Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 18:26:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1f0f6251-1034-4e5d-8fb4-ff66d584420a" + "c983ed45-e972-4783-bf32-b76601850d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "36ef18c0-1f7a-4787-9eba-bbcaf0d45a41" + "e9093cf6-56ee-4fcf-8352-ee59be28cade" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:27:46 GMT" + "Mon, 21 Dec 2015 18:26:58 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A34388CDCCE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bb39efbb-457a-48f3-a708-d5db135c7ea0" + "9e065d20-ff84-4013-a44b-e7032b9e26ca" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:46 GMT" + "Mon, 21 Dec 2015 18:26:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FB0184812\",\r\n \"lastModified\": \"2015-11-11T02:27:47.088181Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A344E8A977A\",\r\n \"lastModified\": \"2015-12-21T18:26:56.165465Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:56.165465Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:26:24.062231Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:47 GMT" + "Mon, 21 Dec 2015 18:26:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2d80776-f560-4269-9fd3-ee6a684588cc" + "802be8d7-7a17-45eb-ace2-3a6b1c84d69d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bb39efbb-457a-48f3-a708-d5db135c7ea0" + "9e065d20-ff84-4013-a44b-e7032b9e26ca" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:27:46 GMT" + "Mon, 21 Dec 2015 18:26:58 GMT" ], "ETag": [ - "0x8D2EA3FB0184812" + "0x8D30A344E8A977A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d5e6cdac-8b32-4162-b8a4-fdfdb1f4daaa" + "0918a0d8-1d89-4c2b-8ad9-9cc4b6d1c6db" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:49 GMT" + "Mon, 21 Dec 2015 18:27:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FB0184812\",\r\n \"lastModified\": \"2015-11-11T02:27:47.088181Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A344E8A977A\",\r\n \"lastModified\": \"2015-12-21T18:26:56.165465Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:56.165465Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:26:24.062231Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:47 GMT" + "Mon, 21 Dec 2015 18:26:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a8689f0e-2160-4647-8bc2-a61ef9ee4041" + "d9628970-e706-4637-abdf-18d260c2635a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d5e6cdac-8b32-4162-b8a4-fdfdb1f4daaa" + "0918a0d8-1d89-4c2b-8ad9-9cc4b6d1c6db" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:27:50 GMT" + "Mon, 21 Dec 2015 18:27:01 GMT" ], "ETag": [ - "0x8D2EA3FB0184812" + "0x8D30A344E8A977A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,53 +502,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8282610b-068c-4a6b-8b98-1e7b8f92996b" + "fe5c9fcb-8da6-4a24-ae6f-afeab0be6b1c" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:49 GMT" + "Mon, 21 Dec 2015 18:27:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FB0184812\",\r\n \"lastModified\": \"2015-11-11T02:27:47.088181Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:22.0700478Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A344E8A977A\",\r\n \"lastModified\": \"2015-12-21T18:26:56.165465Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:56.165465Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:26:24.062231Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:47 GMT" + "Mon, 21 Dec 2015 18:26:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "03d0f92b-2038-4f81-a8ea-e558397dfdcd" + "22b2dfb5-2863-4fb0-8504-d90a1d2534f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8282610b-068c-4a6b-8b98-1e7b8f92996b" + "fe5c9fcb-8da6-4a24-ae6f-afeab0be6b1c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:27:50 GMT" + "Mon, 21 Dec 2015 18:27:01 GMT" ], "ETag": [ - "0x8D2EA3FB0184812" + "0x8D30A344E8A977A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -557,41 +557,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "55bc77fe-e9f8-4669-97e3-6de46b6fd47a" + "9ecd3ec6-d6d4-4b7b-bccd-3dcbe351f316" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:46 GMT" + "Mon, 21 Dec 2015 18:26:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:47 GMT" + "Mon, 21 Dec 2015 18:26:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "67174ff1-148d-42c7-8d4a-3f351c6ff7c6" + "af468e22-00cc-409c-8faf-cc1baa99d0ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "55bc77fe-e9f8-4669-97e3-6de46b6fd47a" + "9ecd3ec6-d6d4-4b7b-bccd-3dcbe351f316" ], "DataServiceVersion": [ "3.0" @@ -600,10 +600,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:27:46 GMT" + "Mon, 21 Dec 2015 18:26:58 GMT" ], "ETag": [ - "0x8D2EA3FB0184812" + "0x8D30A344E8A977A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,41 +612,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a42c1fd6-4cea-4bc4-8095-590a51bafda7" + "6735bf9a-30a8-49ae-b6fa-704bc8b54652" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:50 GMT" + "Mon, 21 Dec 2015 18:27:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:51 GMT" + "Mon, 21 Dec 2015 18:27:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f90950cd-e4d3-4c18-a58b-10ff06e59620" + "488a08a7-cb48-436f-922f-279f4d470b57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a42c1fd6-4cea-4bc4-8095-590a51bafda7" + "6735bf9a-30a8-49ae-b6fa-704bc8b54652" ], "DataServiceVersion": [ "3.0" @@ -655,10 +655,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:27:50 GMT" + "Mon, 21 Dec 2015 18:27:02 GMT" ], "ETag": [ - "0x8D2EA3FB29581DC" + "0x8D30A3450E7AF86" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,47 +667,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", + "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "48" + "90" ], "client-request-id": [ - "7edd596b-1d92-487e-85ee-16f1c44e9517" + "c87c1557-95d6-411c-bf68-a762c0585110" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:49 GMT" + "Mon, 21 Dec 2015 18:27:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 02:27:50 GMT" + "Mon, 21 Dec 2015 18:26:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2b158dd5-2f25-4a23-95c7-289161b73145" + "6da18a95-6a48-4ded-928e-903001785704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7edd596b-1d92-487e-85ee-16f1c44e9517" + "c87c1557-95d6-411c-bf68-a762c0585110" ], "DataServiceVersion": [ "3.0" @@ -716,10 +716,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 02:27:51 GMT" + "Mon, 21 Dec 2015 18:27:01 GMT" ], "ETag": [ - "0x8D2EA3FB2597005" + "0x8D30A3450A535F9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -728,26 +728,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9708c932-1b7c-4857-beac-a8dcce8c1116" + "941058e9-18eb-42eb-85a8-031fa4441593" ], "ocp-date": [ - "Wed, 11 Nov 2015 02:27:50 GMT" + "Mon, 21 Dec 2015 18:27:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA3FB2597005\",\r\n \"lastModified\": \"2015-11-11T02:27:50.8706309Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T02:27:50.8706309Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T02:27:50.8706309Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3450A535F9\",\r\n \"lastModified\": \"2015-12-21T18:26:59.6953593Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:26:59.6953593Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:26:59.6953593Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:26:59.6953593Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -756,19 +756,19 @@ "chunked" ], "request-id": [ - "f8757849-9cd5-4e62-a7b9-21af5538f01a" + "5cf16b39-6412-416d-8c90-e80dbfb395de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9708c932-1b7c-4857-beac-a8dcce8c1116" + "941058e9-18eb-42eb-85a8-031fa4441593" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 02:27:51 GMT" + "Mon, 21 Dec 2015 18:27:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleById.json index 1436845c5064..3d5d1db101b5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14999" ], "x-ms-request-id": [ - "19919126-47ef-4d91-bdc0-982de8b81887" + "70dbffa5-3764-4cec-bf30-e07c355c4528" ], "x-ms-correlation-request-id": [ - "19919126-47ef-4d91-bdc0-982de8b81887" + "70dbffa5-3764-4cec-bf30-e07c355c4528" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001645Z:19919126-47ef-4d91-bdc0-982de8b81887" + "CENTRALUS:20151221T182406Z:70dbffa5-3764-4cec-bf30-e07c355c4528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:16:44 GMT" + "Mon, 21 Dec 2015 18:24:06 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14998" ], "x-ms-request-id": [ - "651e53fa-5c96-49a2-8230-30e14b82fe40" + "0017e229-8b2e-457e-8e17-f6d576eebb58" ], "x-ms-correlation-request-id": [ - "651e53fa-5c96-49a2-8230-30e14b82fe40" + "0017e229-8b2e-457e-8e17-f6d576eebb58" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001654Z:651e53fa-5c96-49a2-8230-30e14b82fe40" + "CENTRALUS:20151221T182416Z:0017e229-8b2e-457e-8e17-f6d576eebb58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:16:53 GMT" + "Mon, 21 Dec 2015 18:24:15 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:46 GMT" + "Mon, 21 Dec 2015 18:24:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "72e62457-7d9b-4185-af63-a24f20dad085" + "90d2f893-10b2-4c56-a3f3-35ef7aba0f4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "97ad2702-b960-43b1-8b7e-3428897fdd15" + "5180f795-3773-4ad7-9d16-d293f18286a9" ], "x-ms-correlation-request-id": [ - "97ad2702-b960-43b1-8b7e-3428897fdd15" + "5180f795-3773-4ad7-9d16-d293f18286a9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001645Z:97ad2702-b960-43b1-8b7e-3428897fdd15" + "CENTRALUS:20151221T182408Z:5180f795-3773-4ad7-9d16-d293f18286a9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:16:45 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "ETag": [ - "0x8D2EA2D629322F3" + "0x8D30A33E98B81A8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:54 GMT" + "Mon, 21 Dec 2015 18:24:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4123afa9-c01a-4e8c-a151-f07ad1c435e3" + "3ec9ca71-bc57-437f-8636-7feb9e142415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "40be9462-1ad2-4795-a7d4-2fef957c93ea" + "a23a5664-33fa-476d-abf3-7797e61cba7d" ], "x-ms-correlation-request-id": [ - "40be9462-1ad2-4795-a7d4-2fef957c93ea" + "a23a5664-33fa-476d-abf3-7797e61cba7d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001654Z:40be9462-1ad2-4795-a7d4-2fef957c93ea" + "CENTRALUS:20151221T182416Z:a23a5664-33fa-476d-abf3-7797e61cba7d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:16:54 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "ETag": [ - "0x8D2EA2D67DC879E" + "0x8D30A33EEB5A8EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "6dd5adce-7f16-404d-b527-b0731b410f24" + "f7b7c8c1-b106-409e-a9bb-3e67f87f6824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "693d570f-e79c-4245-a18c-a6718f1e1358" + "5966afb7-da5b-4495-8179-a15a81feb798" ], "x-ms-correlation-request-id": [ - "693d570f-e79c-4245-a18c-a6718f1e1358" + "5966afb7-da5b-4495-8179-a15a81feb798" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001645Z:693d570f-e79c-4245-a18c-a6718f1e1358" + "CENTRALUS:20151221T182408Z:5966afb7-da5b-4495-8179-a15a81feb798" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:16:45 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "0ab7121f-b9c9-429f-a917-702480f95e55" + "ab18a948-6060-4ad4-b91f-c9a381c1761e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "2d60f726-e645-46f6-8211-ce0f620218ed" + "cdf9a231-3baf-4e13-b633-e64f4dd50a53" ], "x-ms-correlation-request-id": [ - "2d60f726-e645-46f6-8211-ce0f620218ed" + "cdf9a231-3baf-4e13-b633-e64f4dd50a53" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001654Z:2d60f726-e645-46f6-8211-ce0f620218ed" + "CENTRALUS:20151221T182416Z:cdf9a231-3baf-4e13-b633-e64f4dd50a53" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:16:54 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "48" ], "client-request-id": [ - "dd9fee55-47c0-487a-9627-c7f3705bc269" + "0ca6fb3c-9e7e-4cd2-878f-ea36c1c2b352" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:16:45 GMT" + "Mon, 21 Dec 2015 18:24:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:46 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e7a1fc5d-8df5-4d1e-893f-cd22ada7e3cf" + "fefb6430-40dc-473a-b8e8-3af65826c309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dd9fee55-47c0-487a-9627-c7f3705bc269" + "0ca6fb3c-9e7e-4cd2-878f-ea36c1c2b352" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:16:47 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "ETag": [ - "0x8D2EA2D62DC25B9" + "0x8D30A33E9E2D54F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -398,53 +398,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "72388e25-205e-44e4-8f6b-2589cb196823" + "3fbef143-f763-402c-b1b4-fd64a963f0f6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:16:46 GMT" + "Mon, 21 Dec 2015 18:24:08 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D62DC25B9\",\r\n \"lastModified\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A33E9E2D54F\",\r\n \"lastModified\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:46 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f4f4e66b-f2eb-453b-83f3-4ee019673b50" + "dfc59a78-06ba-4531-b89e-d07e4054572e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "72388e25-205e-44e4-8f6b-2589cb196823" + "3fbef143-f763-402c-b1b4-fd64a963f0f6" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:16:47 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "ETag": [ - "0x8D2EA2D62DC25B9" + "0x8D30A33E9E2D54F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,53 +453,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2806bbb5-4ca5-4c69-8ff5-f343d1817740" + "8a192faa-bda2-40aa-8aa3-1074f2b20378" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:16:51 GMT" + "Mon, 21 Dec 2015 18:24:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D62DC25B9\",\r\n \"lastModified\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:16:48.4375773Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A33E9E2D54F\",\r\n \"lastModified\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:09.8492132Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:46 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b3fe398a-b2fb-4259-b937-d634b8bc28b5" + "d973334e-ead1-4a8e-ab11-76579ca4ae09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2806bbb5-4ca5-4c69-8ff5-f343d1817740" + "8a192faa-bda2-40aa-8aa3-1074f2b20378" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:16:52 GMT" + "Mon, 21 Dec 2015 18:24:11 GMT" ], "ETag": [ - "0x8D2EA2D62DC25B9" + "0x8D30A33E9E2D54F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -508,53 +508,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cca9652e-78f9-483c-ab90-d13cbe0023c0" + "fb4f804c-3378-41d3-8f7e-507e21627c72" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:16:54 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D62DC25B9\",\r\n \"lastModified\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:16:48.4375773Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:16:46.5683897Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A33E9E2D54F\",\r\n \"lastModified\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:09.8492132Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T18:24:07.2938831Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:46 GMT" + "Mon, 21 Dec 2015 18:24:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f20b600e-8e88-47fb-b6da-7c34d13e7f40" + "c7ac1cdc-349e-43d7-9057-751ada6f4ba7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cca9652e-78f9-483c-ab90-d13cbe0023c0" + "fb4f804c-3378-41d3-8f7e-507e21627c72" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:16:55 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "ETag": [ - "0x8D2EA2D62DC25B9" + "0x8D30A33E9E2D54F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?evaluateautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2V2YWx1YXRlYXV0b3NjYWxlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?evaluateautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2V2YWx1YXRlYXV0b3NjYWxlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", "RequestHeaders": { @@ -575,20 +575,20 @@ "48" ], "client-request-id": [ - "acdc69c9-d45b-4a1c-9ff9-2d4db90ed66e" + "b842a830-8229-44c3-9d41-0151438e9bc6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:16:54 GMT" + "Mon, 21 Dec 2015 18:24:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2015-11-11T00:16:55.34903Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2015-12-21T18:24:16.3444396Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -597,13 +597,13 @@ "chunked" ], "request-id": [ - "40d983c1-cf0d-4487-90aa-9b4741fc938f" + "5a7bd1de-0445-4b9f-bb28-785caacb39fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "acdc69c9-d45b-4a1c-9ff9-2d4db90ed66e" + "b842a830-8229-44c3-9d41-0151438e9bc6" ], "DataServiceVersion": [ "3.0" @@ -612,7 +612,7 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:16:55 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -621,41 +621,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8557f285-e8a0-47e4-a4d5-f3e47bea366c" + "fe7a90a0-58c3-44f9-9b6a-2d5483470094" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:16:55 GMT" + "Mon, 21 Dec 2015 18:24:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:16:55 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "26815653-7bd3-4d0d-805a-413e2bfd0e7a" + "87084215-3806-473f-afb2-2f0170546969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8557f285-e8a0-47e4-a4d5-f3e47bea366c" + "fe7a90a0-58c3-44f9-9b6a-2d5483470094" ], "DataServiceVersion": [ "3.0" @@ -664,10 +664,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:16:56 GMT" + "Mon, 21 Dec 2015 18:24:15 GMT" ], "ETag": [ - "0x8D2EA2D685A5436" + "0x8D30A33EF2EA950" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleByPipeline.json index b3e742240bf7..852a72fece90 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestEvaluateAutoScaleByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14999" ], "x-ms-request-id": [ - "50fff5f1-53ca-48aa-b912-b14bbaa939fc" + "64ef49e6-40d2-4578-aa68-2bacd1c98579" ], "x-ms-correlation-request-id": [ - "50fff5f1-53ca-48aa-b912-b14bbaa939fc" + "64ef49e6-40d2-4578-aa68-2bacd1c98579" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001809Z:50fff5f1-53ca-48aa-b912-b14bbaa939fc" + "WESTUS:20151221T214352Z:64ef49e6-40d2-4578-aa68-2bacd1c98579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:18:09 GMT" + "Mon, 21 Dec 2015 21:43:51 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14998" ], "x-ms-request-id": [ - "f916d00d-5fa3-4799-b7cb-5eef56f0351e" + "27b466a0-235a-409a-b872-1a48bdee0f3e" ], "x-ms-correlation-request-id": [ - "f916d00d-5fa3-4799-b7cb-5eef56f0351e" + "27b466a0-235a-409a-b872-1a48bdee0f3e" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001819Z:f916d00d-5fa3-4799-b7cb-5eef56f0351e" + "WESTUS:20151221T214402Z:27b466a0-235a-409a-b872-1a48bdee0f3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:18:19 GMT" + "Mon, 21 Dec 2015 21:44:01 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:10 GMT" + "Mon, 21 Dec 2015 21:43:52 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "724190a3-5014-4436-8a11-8b6635450b57" + "68a6974f-c1c1-443c-bc21-a7a0f7758e12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14999" ], "x-ms-request-id": [ - "4367fcde-4504-4aca-a337-496e907ab75e" + "49f848de-4798-402c-8dd1-66e85a96a71b" ], "x-ms-correlation-request-id": [ - "4367fcde-4504-4aca-a337-496e907ab75e" + "49f848de-4798-402c-8dd1-66e85a96a71b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001810Z:4367fcde-4504-4aca-a337-496e907ab75e" + "WESTUS:20151221T214353Z:49f848de-4798-402c-8dd1-66e85a96a71b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:18:10 GMT" + "Mon, 21 Dec 2015 21:43:53 GMT" ], "ETag": [ - "0x8D2EA2D952667E4" + "0x8D30A4FD186DB52" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:19 GMT" + "Mon, 21 Dec 2015 21:44:01 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d6fb86ec-e279-4ffe-9e8f-823b1d6dccdd" + "5ef9f8be-84d8-438d-9f28-943456682724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14998" ], "x-ms-request-id": [ - "ffecd770-9d96-43ac-98dd-c4ffa491bc40" + "130ccde5-1f26-4d8b-a850-b0559e879fc5" ], "x-ms-correlation-request-id": [ - "ffecd770-9d96-43ac-98dd-c4ffa491bc40" + "130ccde5-1f26-4d8b-a850-b0559e879fc5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001819Z:ffecd770-9d96-43ac-98dd-c4ffa491bc40" + "WESTUS:20151221T214402Z:130ccde5-1f26-4d8b-a850-b0559e879fc5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:18:18 GMT" + "Mon, 21 Dec 2015 21:44:02 GMT" ], "ETag": [ - "0x8D2EA2D9A852CF6" + "0x8D30A4FD71C7EC9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "07e82c14-5163-45bd-9269-dc913455c8cf" + "a815ce34-f0e9-49cc-b981-40daee2a8fc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "2d5a2a06-5f1b-409d-8ade-6beba3260ba8" + "79b3295d-612a-49c4-a5cc-00ff1d465ba7" ], "x-ms-correlation-request-id": [ - "2d5a2a06-5f1b-409d-8ade-6beba3260ba8" + "79b3295d-612a-49c4-a5cc-00ff1d465ba7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001810Z:2d5a2a06-5f1b-409d-8ade-6beba3260ba8" + "WESTUS:20151221T214353Z:79b3295d-612a-49c4-a5cc-00ff1d465ba7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:18:10 GMT" + "Mon, 21 Dec 2015 21:43:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "7a23f9d7-55c3-4079-a3d4-e3bcfa707dba" + "91cd9354-0a46-45d4-8942-6e053f9ceed3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "89ce916b-e2a5-4d8a-b264-c619b953b339" + "2c8fa5d5-bf33-455d-a975-3c77727619f3" ], "x-ms-correlation-request-id": [ - "89ce916b-e2a5-4d8a-b264-c619b953b339" + "2c8fa5d5-bf33-455d-a975-3c77727619f3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001819Z:89ce916b-e2a5-4d8a-b264-c619b953b339" + "WESTUS:20151221T214402Z:2c8fa5d5-bf33-455d-a975-3c77727619f3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:18:19 GMT" + "Mon, 21 Dec 2015 21:44:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?enableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2VuYWJsZWF1dG9zY2FsZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "48" ], "client-request-id": [ - "f901d4d5-459d-42f5-af0f-7f18d444b295" + "7f1ff901-172d-43a9-b4ad-49b5ea58314d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:10 GMT" + "Mon, 21 Dec 2015 21:43:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2d93049c-fe4e-4623-963b-810dac17bc6e" + "d3bc84da-24c1-4d59-b3f4-28aadb82c5d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f901d4d5-459d-42f5-af0f-7f18d444b295" + "7f1ff901-172d-43a9-b4ad-49b5ea58314d" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:55 GMT" ], "ETag": [ - "0x8D2EA2D95786D31" + "0x8D30A4FD1D120EB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -398,53 +398,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f02db23a-93d2-40f6-a8e4-3f26d69ae240" + "2ff1dab5-db24-4cc5-a3f4-43a3477de533" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D95786D31\",\r\n \"lastModified\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4FD1D120EB\",\r\n \"lastModified\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "382bcecd-26a6-4d62-b331-9ff3b63b961d" + "7c2ef276-89f6-43c6-999d-a6ad3d0af9d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f02db23a-93d2-40f6-a8e4-3f26d69ae240" + "2ff1dab5-db24-4cc5-a3f4-43a3477de533" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:55 GMT" ], "ETag": [ - "0x8D2EA2D95786D31" + "0x8D30A4FD1D120EB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,53 +453,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c241813d-5995-4fda-bb35-2417099ee481" + "5cf9ee51-1e30-453d-9ed9-7e75fa158e22" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:16 GMT" + "Mon, 21 Dec 2015 21:43:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D95786D31\",\r\n \"lastModified\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:13.0540288Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4FD1D120EB\",\r\n \"lastModified\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:43:54.078218Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "915ba6e0-e501-4f43-b989-d1eb4051d0ed" + "ee32429c-de7b-4676-b148-e766f7c5efa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c241813d-5995-4fda-bb35-2417099ee481" + "5cf9ee51-1e30-453d-9ed9-7e75fa158e22" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:18:17 GMT" + "Mon, 21 Dec 2015 21:44:00 GMT" ], "ETag": [ - "0x8D2EA2D95786D31" + "0x8D30A4FD1D120EB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -508,53 +508,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "edcedf78-1f4d-4f67-9385-791535ffd80d" + "2c436384-0abc-4f94-a7fc-e71d234c0810" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:19 GMT" + "Mon, 21 Dec 2015 21:44:02 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D95786D31\",\r\n \"lastModified\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:13.0540288Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4FD1D120EB\",\r\n \"lastModified\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:43:54.078218Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "15fe07b6-b09d-4b48-8afd-fc23db9825ef" + "2ad5e8e6-16b6-4148-a396-869a339375e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "edcedf78-1f4d-4f67-9385-791535ffd80d" + "2c436384-0abc-4f94-a7fc-e71d234c0810" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:18:19 GMT" + "Mon, 21 Dec 2015 21:44:01 GMT" ], "ETag": [ - "0x8D2EA2D95786D31" + "0x8D30A4FD1D120EB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,53 +563,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b8b3cf4e-57c0-4db9-a1d1-da83f8b60c95" + "e97c7192-68ce-4813-9b4d-d8ee599750fc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:19 GMT" + "Mon, 21 Dec 2015 21:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D95786D31\",\r\n \"lastModified\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:18:13.0540288Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:18:11.4786609Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4FD1D120EB\",\r\n \"lastModified\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:43:54.078218Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T21:43:52.8209643Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:11 GMT" + "Mon, 21 Dec 2015 21:43:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab7341da-44c8-4b00-a294-c273546cf953" + "227ca638-2789-4171-9f78-77c0eb78ead7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b8b3cf4e-57c0-4db9-a1d1-da83f8b60c95" + "e97c7192-68ce-4813-9b4d-d8ee599750fc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 21:44:01 GMT" ], "ETag": [ - "0x8D2EA2D95786D31" + "0x8D30A4FD1D120EB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,8 +618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?evaluateautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2V2YWx1YXRlYXV0b3NjYWxlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?evaluateautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2V2YWx1YXRlYXV0b3NjYWxlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicated=2\"\r\n}", "RequestHeaders": { @@ -630,20 +630,20 @@ "48" ], "client-request-id": [ - "89bec8e6-ac64-4069-82e6-fc0a664a182e" + "57313a52-2a06-4027-b3dd-bf093c585105" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 21:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2015-11-11T00:18:21.0153484Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2015-12-21T21:44:02.6017833Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -652,13 +652,13 @@ "chunked" ], "request-id": [ - "c03ad824-b842-4e5a-bf34-085a9fcbee17" + "5601ac1e-59b7-4990-af0b-16b3b3c67bb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "89bec8e6-ac64-4069-82e6-fc0a664a182e" + "57313a52-2a06-4027-b3dd-bf093c585105" ], "DataServiceVersion": [ "3.0" @@ -667,7 +667,7 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 21:44:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -676,41 +676,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?disableautoscale&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2Rpc2FibGVhdXRvc2NhbGUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1947295f-a8bb-4266-89ef-2784984e8d93" + "7c0bd288-e902-47fd-982f-29cc6b8b4c22" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 21:44:03 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:18:20 GMT" + "Mon, 21 Dec 2015 21:44:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3447de1b-8186-49db-8886-d584abe5d5e2" + "ea14e999-2ac8-4ffd-8f79-7e70a90c2ac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1947295f-a8bb-4266-89ef-2784984e8d93" + "7c0bd288-e902-47fd-982f-29cc6b8b4c22" ], "DataServiceVersion": [ "3.0" @@ -719,10 +719,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:18:21 GMT" + "Mon, 21 Dec 2015 21:44:05 GMT" ], "ETag": [ - "0x8D2EA2D9B1791F4" + "0x8D30A4FD7989BC8" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetAndListPoolsWithSelect.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetAndListPoolsWithSelect.json index baa985bb9b68..712ef28b5545 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetAndListPoolsWithSelect.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetAndListPoolsWithSelect.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "45991c77-c1fa-4a2a-9597-dff0c3478e9c" + "bc0ad7be-8471-4ed2-9418-925cc32438e4" ], "x-ms-correlation-request-id": [ - "45991c77-c1fa-4a2a-9597-dff0c3478e9c" + "bc0ad7be-8471-4ed2-9418-925cc32438e4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000702Z:45991c77-c1fa-4a2a-9597-dff0c3478e9c" + "CENTRALUS:20151221T182537Z:bc0ad7be-8471-4ed2-9418-925cc32438e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:01 GMT" + "Mon, 21 Dec 2015 18:25:37 GMT" ] }, "StatusCode": 200 @@ -73,13 +73,13 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:04 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c5b8f2a8-c238-4808-9dd7-747dca77e5d3" + "4a50ca05-3a91-479d-b5fe-16bf1f73174d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -88,22 +88,22 @@ "14999" ], "x-ms-request-id": [ - "e115adad-e1c4-45de-912f-3b07c4e9e267" + "0d6e5e53-3a40-4b1c-b7c3-4b3777dccea3" ], "x-ms-correlation-request-id": [ - "e115adad-e1c4-45de-912f-3b07c4e9e267" + "0d6e5e53-3a40-4b1c-b7c3-4b3777dccea3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000703Z:e115adad-e1c4-45de-912f-3b07c4e9e267" + "CENTRALUS:20151221T182538Z:0d6e5e53-3a40-4b1c-b7c3-4b3777dccea3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:03 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "ETag": [ - "0x8D2EA2C07AA75F6" + "0x8D30A34204A73B7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,7 +139,7 @@ "no-cache" ], "request-id": [ - "e24d401c-c54b-41d1-b1b2-9333c175ba37" + "aa948f07-0760-4491-aa1e-24820047de1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "1199" ], "x-ms-request-id": [ - "f547b0a2-b949-46ef-aed1-95fcec51e2ed" + "d339c7cd-029b-474d-8b85-2aa9208617c0" ], "x-ms-correlation-request-id": [ - "f547b0a2-b949-46ef-aed1-95fcec51e2ed" + "d339c7cd-029b-474d-8b85-2aa9208617c0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000703Z:f547b0a2-b949-46ef-aed1-95fcec51e2ed" + "CENTRALUS:20151221T182539Z:d339c7cd-029b-474d-8b85-2aa9208617c0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:03 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,53 +169,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1265914-5e9b-4347-9a29-a19a657989c2" + "b4033e32-1997-4794-a711-d5d219f39deb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:03 GMT" + "Mon, 21 Dec 2015 18:25:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A34077F7FB5\",\r\n \"lastModified\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ecd591ce-c2b8-4066-b98b-cb204fe4c273" + "9672ef30-8994-47f7-a3bb-340b89620831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e1265914-5e9b-4347-9a29-a19a657989c2" + "b4033e32-1997-4794-a711-d5d219f39deb" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:05 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A34077F7FB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -224,53 +224,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sPyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sPyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "246c3e9d-10ce-4eda-9355-771afe03a17c" + "c16ac341-9f38-4efe-97c4-04ce666daf06" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:04 GMT" + "Mon, 21 Dec 2015 18:25:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"state\": \"active\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"state\": \"upgrading\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9c0339e3-64e4-49a2-8278-10ff65edb76e" + "c265baa5-b1d8-4451-bb33-88829ac27861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "246c3e9d-10ce-4eda-9355-771afe03a17c" + "c16ac341-9f38-4efe-97c4-04ce666daf06" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:05 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A34077F7FB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -279,26 +279,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f00bccc-06a8-4ff5-a7c6-203f45d9e099" + "66c08d9d-4f0a-4d1a-8a0f-e72fd756a776" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:04 GMT" + "Mon, 21 Dec 2015 18:25:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A34077F7FB5\",\r\n \"lastModified\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -307,19 +307,19 @@ "chunked" ], "request-id": [ - "129eface-d779-4dd1-b22e-ece365c41a6a" + "e74ea982-d42d-433c-800f-9b504778da60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f00bccc-06a8-4ff5-a7c6-203f45d9e099" + "66c08d9d-4f0a-4d1a-8a0f-e72fd756a776" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:05 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -328,26 +328,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?$filter=id%20eq%20'testPool'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools?$filter=id%20eq%20'testPool'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RQb29sJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a975d745-e1ab-4001-b3de-a87bf0decbb1" + "a1547d7f-fc35-4e86-86f7-0cd0164afba5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:04 GMT" + "Mon, 21 Dec 2015 18:25:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"state\": \"upgrading\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -356,19 +356,19 @@ "chunked" ], "request-id": [ - "00d90cbd-fb2a-4431-97a4-4ef8fbd7bb02" + "6e504125-feb6-424e-8976-8b1e9492758d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a975d745-e1ab-4001-b3de-a87bf0decbb1" + "a1547d7f-fc35-4e86-86f7-0cd0164afba5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:05 GMT" + "Mon, 21 Dec 2015 18:25:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolById.json index fa99aa48038e..50a95ce1a18e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "630de67f-83b9-4ddd-8041-f4661f9e52eb" + "508add58-9445-46eb-8af1-c28f635befe6" ], "x-ms-correlation-request-id": [ - "630de67f-83b9-4ddd-8041-f4661f9e52eb" + "508add58-9445-46eb-8af1-c28f635befe6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001730Z:630de67f-83b9-4ddd-8041-f4661f9e52eb" + "CENTRALUS:20151221T182737Z:508add58-9445-46eb-8af1-c28f635befe6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:17:30 GMT" + "Mon, 21 Dec 2015 18:27:36 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14996" ], "x-ms-request-id": [ - "f9943981-1330-48aa-8caf-cbccd65f6711" + "f0fa3324-5d8b-43fc-acbb-aa0b0b88afb1" ], "x-ms-correlation-request-id": [ - "f9943981-1330-48aa-8caf-cbccd65f6711" + "f0fa3324-5d8b-43fc-acbb-aa0b0b88afb1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001735Z:f9943981-1330-48aa-8caf-cbccd65f6711" + "CENTRALUS:20151221T182741Z:f0fa3324-5d8b-43fc-acbb-aa0b0b88afb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:17:34 GMT" + "Mon, 21 Dec 2015 18:27:41 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:17:32 GMT" + "Mon, 21 Dec 2015 18:27:37 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ce2f7b95-ec7a-427e-b9be-a909e06e4c4b" + "40b54d27-0a63-4c3a-a3bf-b53522bd6f33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "4d7610db-01cf-4bf1-aa0d-0ea1e60a4fc7" + "301612c1-e785-4a85-92c7-9108615f5432" ], "x-ms-correlation-request-id": [ - "4d7610db-01cf-4bf1-aa0d-0ea1e60a4fc7" + "301612c1-e785-4a85-92c7-9108615f5432" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001731Z:4d7610db-01cf-4bf1-aa0d-0ea1e60a4fc7" + "CENTRALUS:20151221T182738Z:301612c1-e785-4a85-92c7-9108615f5432" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:17:30 GMT" + "Mon, 21 Dec 2015 18:27:37 GMT" ], "ETag": [ - "0x8D2EA2D7DF681C7" + "0x8D30A34671BD2DD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:17:35 GMT" + "Mon, 21 Dec 2015 18:27:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a6cadf98-5728-46dd-a7ce-4fe149f8ee69" + "5bd74244-ba5b-408f-bcef-040ddf7dce8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "cd43f939-4b22-4c79-9ed4-4d8db0480509" + "05553252-7e0c-4857-923c-1cf9ddfc2eef" ], "x-ms-correlation-request-id": [ - "cd43f939-4b22-4c79-9ed4-4d8db0480509" + "05553252-7e0c-4857-923c-1cf9ddfc2eef" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001735Z:cd43f939-4b22-4c79-9ed4-4d8db0480509" + "CENTRALUS:20151221T182741Z:05553252-7e0c-4857-923c-1cf9ddfc2eef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:17:34 GMT" + "Mon, 21 Dec 2015 18:27:41 GMT" ], "ETag": [ - "0x8D2EA2D80273585" + "0x8D30A34692111BA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "53310883-6f03-4fc3-ac4b-1ddcd535c710" + "72ade4bf-bd45-4a26-a6ee-fa0ce005369b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1197" ], "x-ms-request-id": [ - "ae7fd4c4-3770-4757-b5e2-3612eabda056" + "b20f9af0-895d-4571-be2c-08ced75398e8" ], "x-ms-correlation-request-id": [ - "ae7fd4c4-3770-4757-b5e2-3612eabda056" + "b20f9af0-895d-4571-be2c-08ced75398e8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001731Z:ae7fd4c4-3770-4757-b5e2-3612eabda056" + "CENTRALUS:20151221T182738Z:b20f9af0-895d-4571-be2c-08ced75398e8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:17:31 GMT" + "Mon, 21 Dec 2015 18:27:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "c55ee66c-ab1b-41ac-a7d3-43e7223b7ed0" + "14c030a5-4c96-492f-8946-b42b9116f582" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1196" ], "x-ms-request-id": [ - "ea344e9e-9fcd-47ec-8bfb-a1772dc33c93" + "9dc01c5c-5daa-4af0-afce-c5cf9bb90a16" ], "x-ms-correlation-request-id": [ - "ea344e9e-9fcd-47ec-8bfb-a1772dc33c93" + "9dc01c5c-5daa-4af0-afce-c5cf9bb90a16" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001735Z:ea344e9e-9fcd-47ec-8bfb-a1772dc33c93" + "CENTRALUS:20151221T182742Z:9dc01c5c-5daa-4af0-afce-c5cf9bb90a16" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:17:34 GMT" + "Mon, 21 Dec 2015 18:27:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testGetPool\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testGetPool\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "136" + "162" ], "client-request-id": [ - "af422dfc-bd20-451f-a37b-59d645063927" + "f0c0ec5a-714d-42f3-b8df-fba49b4b0126" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:17:31 GMT" + "Mon, 21 Dec 2015 18:27:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:17:32 GMT" + "Mon, 21 Dec 2015 18:27:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "29f45dd5-146a-4320-a86e-b52ab42d8d4c" + "e896589b-0c34-406d-aee6-dce61d79ada0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "af422dfc-bd20-451f-a37b-59d645063927" + "f0c0ec5a-714d-42f3-b8df-fba49b4b0126" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testGetPool" ], "Date": [ - "Wed, 11 Nov 2015 00:17:34 GMT" + "Mon, 21 Dec 2015 18:27:38 GMT" ], "ETag": [ - "0x8D2EA2D7E4CA0F3" + "0x8D30A3467486867" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testGetPool" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testGetPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RHZXRQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testGetPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RHZXRQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cd5a0679-6973-4686-863b-b992a0e655e9" + "cf69a7ef-b75b-427a-97de-bf0d1909b29d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:17:35 GMT" + "Mon, 21 Dec 2015 18:27:41 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testGetPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testGetPool\",\r\n \"eTag\": \"0x8D2EA2D7E4CA0F3\",\r\n \"lastModified\": \"2015-11-11T00:17:32.6040307Z\",\r\n \"creationTime\": \"2015-11-11T00:17:32.6040307Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:17:32.6040307Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:17:32.7010352Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testGetPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testGetPool\",\r\n \"eTag\": \"0x8D30A3467486867\",\r\n \"lastModified\": \"2015-12-21T18:27:37.6747623Z\",\r\n \"creationTime\": \"2015-12-21T18:27:37.6747623Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:27:37.6747623Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:27:37.792628Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:17:32 GMT" + "Mon, 21 Dec 2015 18:27:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9dc5accc-dda7-4f98-be1e-00b11ace0c96" + "a4b9219b-3c00-4259-808c-95ba1bf97e5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "cd5a0679-6973-4686-863b-b992a0e655e9" + "cf69a7ef-b75b-427a-97de-bf0d1909b29d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:17:36 GMT" + "Mon, 21 Dec 2015 18:27:42 GMT" ], "ETag": [ - "0x8D2EA2D7E4CA0F3" + "0x8D30A3467486867" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,22 +456,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testGetPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RHZXRQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testGetPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RHZXRQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "83d66128-404f-47ea-aa22-d0e3891f65e1" + "242a0314-d768-4b36-a060-1ebe650337ea" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:17:35 GMT" + "Mon, 21 Dec 2015 18:27:42 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -481,19 +481,19 @@ "chunked" ], "request-id": [ - "b684f48c-a607-4d48-acb3-8c4a9328c62b" + "ba7cfbad-9c07-469e-bb51-b8409166b62b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "83d66128-404f-47ea-aa22-d0e3891f65e1" + "242a0314-d768-4b36-a060-1ebe650337ea" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:17:37 GMT" + "Mon, 21 Dec 2015 18:27:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json index f3725a6281f6..99e3d7ce68f3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "a65af2dc-6a88-4287-9710-a6f9962d594e" + "ca18f845-2bb1-42a2-8438-a2b30ebbef5d" ], "x-ms-correlation-request-id": [ - "a65af2dc-6a88-4287-9710-a6f9962d594e" + "ca18f845-2bb1-42a2-8438-a2b30ebbef5d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001319Z:a65af2dc-6a88-4287-9710-a6f9962d594e" + "CENTRALUS:20151221T184933Z:ca18f845-2bb1-42a2-8438-a2b30ebbef5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:13:19 GMT" + "Mon, 21 Dec 2015 18:49:32 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "e02c349d-c18f-4956-b1ec-47e1ddf0f7ce" + "5d2d9283-1267-45b3-a1a8-5720670cbfa5" ], "x-ms-correlation-request-id": [ - "e02c349d-c18f-4956-b1ec-47e1ddf0f7ce" + "5d2d9283-1267-45b3-a1a8-5720670cbfa5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001325Z:e02c349d-c18f-4956-b1ec-47e1ddf0f7ce" + "CENTRALUS:20151221T184938Z:5d2d9283-1267-45b3-a1a8-5720670cbfa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:13:24 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:13:20 GMT" + "Mon, 21 Dec 2015 18:49:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "81e5d3f7-888a-4f16-bbb2-2e3c39abb603" + "724ba72e-ce07-4e3f-86cc-f0eba3928b7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-request-id": [ - "e9362194-7de1-4030-abe2-5af8030eddd9" + "3c1e5e0f-2243-4e10-9088-d7977ee99542" ], "x-ms-correlation-request-id": [ - "e9362194-7de1-4030-abe2-5af8030eddd9" + "3c1e5e0f-2243-4e10-9088-d7977ee99542" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001320Z:e9362194-7de1-4030-abe2-5af8030eddd9" + "CENTRALUS:20151221T184934Z:3c1e5e0f-2243-4e10-9088-d7977ee99542" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:13:20 GMT" + "Mon, 21 Dec 2015 18:49:34 GMT" ], "ETag": [ - "0x8D2EA2CE823AB02" + "0x8D30A377736075A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:13:25 GMT" + "Mon, 21 Dec 2015 18:49:37 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "fc2a8078-e3c2-457d-ac6d-73fbcc9c7e88" + "7087a7b8-b692-4726-a299-79db26283a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-request-id": [ - "29e9d7bb-8516-430a-a539-28b89cf3f20b" + "118769bc-a5a9-46b6-87c4-443ca658f122" ], "x-ms-correlation-request-id": [ - "29e9d7bb-8516-430a-a539-28b89cf3f20b" + "118769bc-a5a9-46b6-87c4-443ca658f122" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001325Z:29e9d7bb-8516-430a-a539-28b89cf3f20b" + "CENTRALUS:20151221T184938Z:118769bc-a5a9-46b6-87c4-443ca658f122" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:13:25 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ], "ETag": [ - "0x8D2EA2CEB0067B4" + "0x8D30A3779AAC903" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "4a2e47de-adba-4c61-82b9-80e16ee6d464" + "81efba69-57e7-40ed-865a-dce4fcf2c97e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "68aea489-bd4a-45eb-9e97-12e7722ed79c" + "e8393179-9446-4f62-a711-4d8437be3fb9" ], "x-ms-correlation-request-id": [ - "68aea489-bd4a-45eb-9e97-12e7722ed79c" + "e8393179-9446-4f62-a711-4d8437be3fb9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001321Z:68aea489-bd4a-45eb-9e97-12e7722ed79c" + "CENTRALUS:20151221T184934Z:e8393179-9446-4f62-a711-4d8437be3fb9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:13:20 GMT" + "Mon, 21 Dec 2015 18:49:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "9a5d8dd3-2d37-472c-b29f-debcda6c23a0" + "0e1a9856-2a35-4b95-a60f-5af2e118e53f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "2e66f31d-93f7-4d2b-b104-892869fa110b" + "cb86752d-511c-45dc-9602-bcc8ff0a0862" ], "x-ms-correlation-request-id": [ - "2e66f31d-93f7-4d2b-b104-892869fa110b" + "cb86752d-511c-45dc-9602-bcc8ff0a0862" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001325Z:2e66f31d-93f7-4d2b-b104-892869fa110b" + "CENTRALUS:20151221T184938Z:cb86752d-511c-45dc-9602-bcc8ff0a0862" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:13:25 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,26 +337,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1764ca67-e2aa-417f-9783-a9b6170e0958" + "b3cdf245-c42d-4b25-b06b-4f84ffbb5054" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:20 GMT" + "Mon, 21 Dec 2015 18:49:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2CD1A53BA8\",\r\n \"lastModified\": \"2015-11-11T00:12:42.9388712Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:12:45.5024355Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A373076BF82\",\r\n \"lastModified\": \"2015-12-21T18:47:34.1939586Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:48:13.7562352Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -365,19 +365,19 @@ "chunked" ], "request-id": [ - "96052757-c22a-4e34-9a4f-7651f913230d" + "e8e4838e-101c-45b2-89a1-3a794bd2b915" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1764ca67-e2aa-417f-9783-a9b6170e0958" + "b3cdf245-c42d-4b25-b06b-4f84ffbb5054" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -386,26 +386,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "92d48b1e-663b-4a91-99da-5a9b49caee8a" + "cb046ba4-047b-4dbd-bb27-0ff6024b7f9d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:25 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testList1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testList1\",\r\n \"eTag\": \"0x8D2EA2CE916CB8A\",\r\n \"lastModified\": \"2015-11-11T00:13:22.2707082Z\",\r\n \"creationTime\": \"2015-11-11T00:13:22.2707082Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:13:22.2707082Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:13:22.3621349Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testList2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testList2\",\r\n \"eTag\": \"0x8D2EA2CE944A847\",\r\n \"lastModified\": \"2015-11-11T00:13:22.5712711Z\",\r\n \"creationTime\": \"2015-11-11T00:13:22.5712711Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:13:22.5712711Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:13:22.6963126Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2CD1A53BA8\",\r\n \"lastModified\": \"2015-11-11T00:12:42.9388712Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:12:45.5024355Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdTestList\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/thirdTestList\",\r\n \"eTag\": \"0x8D2EA2CE9776F64\",\r\n \"lastModified\": \"2015-11-11T00:13:22.9040484Z\",\r\n \"creationTime\": \"2015-11-11T00:13:22.9040484Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:13:22.9040484Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:13:23.0219199Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testList1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testList1\",\r\n \"eTag\": \"0x8D30A3777871C1E\",\r\n \"lastModified\": \"2015-12-21T18:49:33.4194206Z\",\r\n \"creationTime\": \"2015-12-21T18:49:33.4194206Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:49:33.4194206Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:49:33.5314184Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testList2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testList2\",\r\n \"eTag\": \"0x8D30A3777BA8C3C\",\r\n \"lastModified\": \"2015-12-21T18:49:33.7565244Z\",\r\n \"creationTime\": \"2015-12-21T18:49:33.7565244Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:49:33.7565244Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:49:33.8695309Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A373076BF82\",\r\n \"lastModified\": \"2015-12-21T18:47:34.1939586Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:48:13.7562352Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdTestList\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/thirdTestList\",\r\n \"eTag\": \"0x8D30A3777ECDAA3\",\r\n \"lastModified\": \"2015-12-21T18:49:34.0862115Z\",\r\n \"creationTime\": \"2015-12-21T18:49:34.0862115Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:49:34.0862115Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:49:34.1777539Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -414,19 +414,19 @@ "chunked" ], "request-id": [ - "4d5ef283-c002-41e3-b670-194d8942c4f4" + "66b2eadd-26f0-4feb-a9ae-a078bf794416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "92d48b1e-663b-4a91-99da-5a9b49caee8a" + "cb046ba4-047b-4dbd-bb27-0ff6024b7f9d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:13:26 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,47 +435,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testList1\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testList1\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "134" + "160" ], "client-request-id": [ - "37873e8f-6c52-4e5b-a355-95aa25a27182" + "8c84144e-bc4e-4858-8d6a-067daef34861" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:21 GMT" + "Mon, 21 Dec 2015 18:49:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a7614a18-8400-44ce-9431-02599323b8d0" + "b3ed7185-cdcd-4428-8e24-0151673424cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "37873e8f-6c52-4e5b-a355-95aa25a27182" + "8c84144e-bc4e-4858-8d6a-067daef34861" ], "DataServiceVersion": [ "3.0" @@ -484,10 +484,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testList1" ], "Date": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:36 GMT" ], "ETag": [ - "0x8D2EA2CE916CB8A" + "0x8D30A3777871C1E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testList1" @@ -499,47 +499,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testList2\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testList2\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "134" + "160" ], "client-request-id": [ - "be2dc3d7-11ff-422a-94e3-4690558e2029" + "6df9fd6c-30a1-4bf6-9452-4d356be89ee3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:21 GMT" + "Mon, 21 Dec 2015 18:49:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7e86b5c1-3dcd-41b4-a4d0-3768660454f4" + "ff3d8b74-8e28-41b2-9217-0701e51280ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "be2dc3d7-11ff-422a-94e3-4690558e2029" + "6df9fd6c-30a1-4bf6-9452-4d356be89ee3" ], "DataServiceVersion": [ "3.0" @@ -548,10 +548,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testList2" ], "Date": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:36 GMT" ], "ETag": [ - "0x8D2EA2CE944A847" + "0x8D30A3777BA8C3C" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testList2" @@ -563,47 +563,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"thirdTestList\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"thirdTestList\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "138" + "164" ], "client-request-id": [ - "4a2b5317-e003-4d07-8d7f-cb327943f22c" + "b55f9408-3996-4b77-a81d-22a6da37e594" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:13:22 GMT" + "Mon, 21 Dec 2015 18:49:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9c39edf5-d71b-4a9c-99f8-25fd2b912537" + "780433eb-21b7-48e9-8c22-14caa377ccb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4a2b5317-e003-4d07-8d7f-cb327943f22c" + "b55f9408-3996-4b77-a81d-22a6da37e594" ], "DataServiceVersion": [ "3.0" @@ -612,10 +612,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/thirdTestList" ], "Date": [ - "Wed, 11 Nov 2015 00:13:23 GMT" + "Mon, 21 Dec 2015 18:49:36 GMT" ], "ETag": [ - "0x8D2EA2CE9776F64" + "0x8D30A3777ECDAA3" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/thirdTestList" @@ -627,22 +627,22 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testList1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RMaXN0MT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testList1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RMaXN0MT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "720d984e-bfd6-4a21-bf41-014bcf67143b" + "8219407f-4932-4102-85cc-0d62c8ec74b9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:25 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -652,19 +652,19 @@ "chunked" ], "request-id": [ - "0f279a62-2720-42a9-8772-abac8d8bb97b" + "0f00a5d4-b161-40f0-b9cd-914066ad2e4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "720d984e-bfd6-4a21-bf41-014bcf67143b" + "8219407f-4932-4102-85cc-0d62c8ec74b9" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:13:27 GMT" + "Mon, 21 Dec 2015 18:49:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,22 +673,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testList2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RMaXN0Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testList2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RMaXN0Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e495b842-7162-41b2-9834-c37058a66f0a" + "6986dc38-9e5e-4aa7-8f87-6e9144002da4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:26 GMT" + "Mon, 21 Dec 2015 18:49:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -698,19 +698,19 @@ "chunked" ], "request-id": [ - "37a9a9eb-4b33-4da8-8e8f-01a0476d7cf1" + "91eb428b-4c6f-4929-92bd-4fad0473ed35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e495b842-7162-41b2-9834-c37058a66f0a" + "6986dc38-9e5e-4aa7-8f87-6e9144002da4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:13:27 GMT" + "Mon, 21 Dec 2015 18:49:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -719,22 +719,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/thirdTestList?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3RoaXJkVGVzdExpc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/thirdTestList?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3RoaXJkVGVzdExpc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f2e42ac8-d48e-4b87-aeed-fc75e7ff3831" + "b9946326-ca6f-4cd0-909b-da9260c8ecb4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:13:26 GMT" + "Mon, 21 Dec 2015 18:49:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -744,19 +744,19 @@ "chunked" ], "request-id": [ - "bd656abf-88ca-417f-941e-d10bb64580ca" + "28197b6c-58e6-4485-941c-a968c67d0685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f2e42ac8-d48e-4b87-aeed-fc75e7ff3831" + "b9946326-ca6f-4cd0-909b-da9260c8ecb4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:13:27 GMT" + "Mon, 21 Dec 2015 18:49:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json index f61cfe35ce75..d90d033aa419 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "c1355aed-fed4-4dcc-a581-e6b43d5cb54d" + "eb4c136d-dbcd-48e7-b877-65fa93a34052" ], "x-ms-correlation-request-id": [ - "c1355aed-fed4-4dcc-a581-e6b43d5cb54d" + "eb4c136d-dbcd-48e7-b877-65fa93a34052" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001110Z:c1355aed-fed4-4dcc-a581-e6b43d5cb54d" + "CENTRALUS:20151221T182324Z:eb4c136d-dbcd-48e7-b877-65fa93a34052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:09 GMT" + "Mon, 21 Dec 2015 18:23:23 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14998" ], "x-ms-request-id": [ - "c98b814f-2965-450f-b143-0e21f58fbb8a" + "9e26d70b-1354-4cf8-8269-ab20600e266b" ], "x-ms-correlation-request-id": [ - "c98b814f-2965-450f-b143-0e21f58fbb8a" + "9e26d70b-1354-4cf8-8269-ab20600e266b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001116Z:c98b814f-2965-450f-b143-0e21f58fbb8a" + "CENTRALUS:20151221T182331Z:9e26d70b-1354-4cf8-8269-ab20600e266b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:15 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:12 GMT" + "Mon, 21 Dec 2015 18:23:25 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c6c193e6-75ed-4f97-a53f-763bdf063b00" + "1d132f93-2f8e-436f-b7d2-4c5c07fe9893" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "cef71622-8441-4f3b-96e9-6ac2ea27aae9" + "efd0072e-95b2-487f-ad65-37327ee987d9" ], "x-ms-correlation-request-id": [ - "cef71622-8441-4f3b-96e9-6ac2ea27aae9" + "efd0072e-95b2-487f-ad65-37327ee987d9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001111Z:cef71622-8441-4f3b-96e9-6ac2ea27aae9" + "CENTRALUS:20151221T182327Z:efd0072e-95b2-487f-ad65-37327ee987d9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:10 GMT" + "Mon, 21 Dec 2015 18:23:26 GMT" ], "ETag": [ - "0x8D2EA2C9BE125C0" + "0x8D30A33D12D0CCA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:17 GMT" + "Mon, 21 Dec 2015 18:23:30 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e5898ccf-5dfb-434e-bbe7-db63daee3968" + "3f737789-8e0a-46da-83c2-bdc1da905627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "f245afd5-9c07-4276-aaee-1c5c47d9e40a" + "f193a8df-2b23-480f-a4f4-10faca176c79" ], "x-ms-correlation-request-id": [ - "f245afd5-9c07-4276-aaee-1c5c47d9e40a" + "f193a8df-2b23-480f-a4f4-10faca176c79" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001116Z:f245afd5-9c07-4276-aaee-1c5c47d9e40a" + "CENTRALUS:20151221T182331Z:f193a8df-2b23-480f-a4f4-10faca176c79" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:16 GMT" + "Mon, 21 Dec 2015 18:23:30 GMT" ], "ETag": [ - "0x8D2EA2C9EA7D677" + "0x8D30A33D3A89829" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "9b2dda6c-662e-40f9-b350-23cbbe885f97" + "9414d421-2785-49fe-a5b3-58f18ee19276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "3edc1cdb-dd23-4214-b685-e4e39d48e59b" + "75333ebd-49ab-4d0c-a6f0-4aa9729dfdff" ], "x-ms-correlation-request-id": [ - "3edc1cdb-dd23-4214-b685-e4e39d48e59b" + "75333ebd-49ab-4d0c-a6f0-4aa9729dfdff" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001111Z:3edc1cdb-dd23-4214-b685-e4e39d48e59b" + "CENTRALUS:20151221T182327Z:75333ebd-49ab-4d0c-a6f0-4aa9729dfdff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:10 GMT" + "Mon, 21 Dec 2015 18:23:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "f1f471a8-4f4d-4c82-85bd-1b67033667e5" + "3cabaaca-07d6-49ef-ad45-15b4400ae371" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "b3a8b285-0c9a-4700-bb0d-b4040e799157" + "ab0636ca-b683-4ed5-a6a6-90bc9ff334e0" ], "x-ms-correlation-request-id": [ - "b3a8b285-0c9a-4700-bb0d-b4040e799157" + "ab0636ca-b683-4ed5-a6a6-90bc9ff334e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001117Z:b3a8b285-0c9a-4700-bb0d-b4040e799157" + "CENTRALUS:20151221T182331Z:ab0636ca-b683-4ed5-a6a6-90bc9ff334e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:16 GMT" + "Mon, 21 Dec 2015 18:23:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testFilter1\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testFilter1\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "136" + "162" ], "client-request-id": [ - "eb13af6e-22eb-4de3-ba35-3956f4beb1ec" + "6a3c1928-e8ce-492e-9c98-22de520ba514" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:11 GMT" + "Mon, 21 Dec 2015 18:23:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:12 GMT" + "Mon, 21 Dec 2015 18:23:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f31e20bc-4d3c-4dc7-992f-3e8a304c7a35" + "ef8c4b22-70cb-4ccf-8317-9876cebc5ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "eb13af6e-22eb-4de3-ba35-3956f4beb1ec" + "6a3c1928-e8ce-492e-9c98-22de520ba514" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testFilter1" ], "Date": [ - "Wed, 11 Nov 2015 00:11:14 GMT" + "Mon, 21 Dec 2015 18:23:27 GMT" ], "ETag": [ - "0x8D2EA2C9BFD3405" + "0x8D30A33D17DA084" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testFilter1" @@ -401,47 +401,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testFilter2\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testFilter2\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "136" + "162" ], "client-request-id": [ - "60754547-b682-4303-9256-12793aa4b580" + "43bb977b-485f-4d75-a821-e808c54094ef" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:12 GMT" + "Mon, 21 Dec 2015 18:23:27 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:13 GMT" + "Mon, 21 Dec 2015 18:23:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c7ec7c8c-ac90-4593-b76b-092798ff7dd2" + "ba5cfd19-0583-4bef-9a50-1a5f31c21bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "60754547-b682-4303-9256-12793aa4b580" + "43bb977b-485f-4d75-a821-e808c54094ef" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testFilter2" ], "Date": [ - "Wed, 11 Nov 2015 00:11:14 GMT" + "Mon, 21 Dec 2015 18:23:27 GMT" ], "ETag": [ - "0x8D2EA2C9C2D324B" + "0x8D30A33D1A9E0C3" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testFilter2" @@ -465,47 +465,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"thirdFilterTest\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"thirdFilterTest\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "140" + "166" ], "client-request-id": [ - "734473c1-96a1-41b5-b536-ba79448ed65f" + "2056ce60-09ba-4236-8ff9-abe3420a926a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:12 GMT" + "Mon, 21 Dec 2015 18:23:28 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:13 GMT" + "Mon, 21 Dec 2015 18:23:27 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3c54c335-6ab1-4ab7-b361-1dc6aee0a75a" + "affaeb83-c584-4a54-8cda-02030e1b8bc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "734473c1-96a1-41b5-b536-ba79448ed65f" + "2056ce60-09ba-4236-8ff9-abe3420a926a" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/thirdFilterTest" ], "Date": [ - "Wed, 11 Nov 2015 00:11:14 GMT" + "Mon, 21 Dec 2015 18:23:27 GMT" ], "ETag": [ - "0x8D2EA2C9C60D19E" + "0x8D30A33D1E4EDA3" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/thirdFilterTest" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?$filter=startswith(id%2C'testFilter')&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGlkJTJDJTI3dGVzdEZpbHRlciUyNyUyOSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools?$filter=startswith(id%2C'testFilter')&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGlkJTJDJTI3dGVzdEZpbHRlciUyNyUyOSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c1307d93-227e-452a-96f4-eea57e043a0d" + "c8abbbad-3c59-44da-bdb2-ea8e619a00cd" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:16 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testFilter1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testFilter1\",\r\n \"eTag\": \"0x8D2EA2C9BFD3405\",\r\n \"lastModified\": \"2015-11-11T00:11:12.9184261Z\",\r\n \"creationTime\": \"2015-11-11T00:11:12.9184261Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:11:12.9184261Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:11:13.0060283Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testFilter2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testFilter2\",\r\n \"eTag\": \"0x8D2EA2C9C2D324B\",\r\n \"lastModified\": \"2015-11-11T00:11:13.2329547Z\",\r\n \"creationTime\": \"2015-11-11T00:11:13.2329547Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:11:13.2329547Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:11:13.3629173Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testFilter1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testFilter1\",\r\n \"eTag\": \"0x8D30A33D17DA084\",\r\n \"lastModified\": \"2015-12-21T18:23:26.3652996Z\",\r\n \"creationTime\": \"2015-12-21T18:23:26.3652996Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:23:26.3652996Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:23:26.4582985Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testFilter2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testFilter2\",\r\n \"eTag\": \"0x8D30A33D1A9E0C3\",\r\n \"lastModified\": \"2015-12-21T18:23:26.6553027Z\",\r\n \"creationTime\": \"2015-12-21T18:23:26.6553027Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:23:26.6553027Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:23:26.7502948Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "56965517-6b91-49aa-9079-0a9396155f99" + "ad46c5af-a23b-42c0-a102-5988966c2f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c1307d93-227e-452a-96f4-eea57e043a0d" + "c8abbbad-3c59-44da-bdb2-ea8e619a00cd" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:17 GMT" + "Mon, 21 Dec 2015 18:23:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testFilter1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RGaWx0ZXIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testFilter1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RGaWx0ZXIxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "76de8eb3-51d4-4248-8dae-132beead795e" + "1456d8e5-c725-4d60-9aed-794200bb5a99" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:17 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "bff4415f-dbde-4094-bb43-3bd58ced4da4" + "116c2aa2-7675-4d4c-9b6e-57e9c3f10983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "76de8eb3-51d4-4248-8dae-132beead795e" + "1456d8e5-c725-4d60-9aed-794200bb5a99" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:18 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testFilter2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RGaWx0ZXIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testFilter2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RGaWx0ZXIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2cff040a-332d-44b2-aaa2-a1239ed4c3c2" + "32817cef-1f25-45ac-99ed-1a0964668a0c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:17 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "e71ce101-b751-4f80-8e5c-0a08d525edd0" + "ecc156db-1295-4254-986d-9afc2c20aa06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2cff040a-332d-44b2-aaa2-a1239ed4c3c2" + "32817cef-1f25-45ac-99ed-1a0964668a0c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:18 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/thirdFilterTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3RoaXJkRmlsdGVyVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/thirdFilterTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3RoaXJkRmlsdGVyVGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e3d53b19-5282-4c53-be7d-765a6ab8102f" + "995c7d9b-a4f4-45af-9761-bc46f483c97f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:17 GMT" + "Mon, 21 Dec 2015 18:23:32 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "686e9ac8-4b21-4e90-84b3-a3d7eab56dfe" + "0743d75a-663e-4c03-88eb-bfd23dbe584e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e3d53b19-5282-4c53-be7d-765a6ab8102f" + "995c7d9b-a4f4-45af-9761-bc46f483c97f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:18 GMT" + "Mon, 21 Dec 2015 18:23:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json index 3e9aa1d08dc4..a9b4f28cbc17 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "133f6c4c-7bc4-4681-9f93-f7d5261a9384" + "4bb0559d-9a43-4ca4-b08a-ea49d03cc868" ], "x-ms-correlation-request-id": [ - "133f6c4c-7bc4-4681-9f93-f7d5261a9384" + "4bb0559d-9a43-4ca4-b08a-ea49d03cc868" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001027Z:133f6c4c-7bc4-4681-9f93-f7d5261a9384" + "CENTRALUS:20151221T182859Z:4bb0559d-9a43-4ca4-b08a-ea49d03cc868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:10:26 GMT" + "Mon, 21 Dec 2015 18:28:58 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-request-id": [ - "9ba8c488-12b8-4ea4-9f6b-8dc42cd79b1a" + "ffcc8033-aca9-469c-9964-aae6caf4ef86" ], "x-ms-correlation-request-id": [ - "9ba8c488-12b8-4ea4-9f6b-8dc42cd79b1a" + "ffcc8033-aca9-469c-9964-aae6caf4ef86" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001033Z:9ba8c488-12b8-4ea4-9f6b-8dc42cd79b1a" + "CENTRALUS:20151221T182904Z:ffcc8033-aca9-469c-9964-aae6caf4ef86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:10:32 GMT" + "Mon, 21 Dec 2015 18:29:04 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:10:29 GMT" + "Mon, 21 Dec 2015 18:28:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "27be4eb2-c2f8-4bc3-ae88-aa6a2722534d" + "a0f45cb1-a5b9-4f19-905a-21ad2d8664a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14925" ], "x-ms-request-id": [ - "62ed2181-49ee-4df5-8364-6a4effe93960" + "b9c3d209-7649-4dbf-89d6-23aaf30641ad" ], "x-ms-correlation-request-id": [ - "62ed2181-49ee-4df5-8364-6a4effe93960" + "b9c3d209-7649-4dbf-89d6-23aaf30641ad" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001028Z:62ed2181-49ee-4df5-8364-6a4effe93960" + "CENTRALUS:20151221T182900Z:b9c3d209-7649-4dbf-89d6-23aaf30641ad" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:10:27 GMT" + "Mon, 21 Dec 2015 18:28:59 GMT" ], "ETag": [ - "0x8D2EA2C81DDD218" + "0x8D30A3497A9BF48" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:02 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e7350104-07d4-46d8-9410-3ec6799e5c14" + "194ecc9b-b651-4a83-9608-1cbfa5db8354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14924" ], "x-ms-request-id": [ - "d5466438-b460-40e9-b20c-7420669210ce" + "f9cb89df-617c-4100-bdad-a6bd04b09196" ], "x-ms-correlation-request-id": [ - "d5466438-b460-40e9-b20c-7420669210ce" + "f9cb89df-617c-4100-bdad-a6bd04b09196" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001033Z:d5466438-b460-40e9-b20c-7420669210ce" + "CENTRALUS:20151221T182904Z:f9cb89df-617c-4100-bdad-a6bd04b09196" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:03 GMT" ], "ETag": [ - "0x8D2EA2C848C0A2C" + "0x8D30A349A1B86AA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "b12cd7d3-948c-4c62-9458-018538956c2c" + "a2037bc7-7961-4843-a07c-ed404ef2264b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "4fc64f5c-d8ab-408e-9732-474ce06aa9cd" + "9238601d-4f39-41af-adc4-0ed3c7ef6325" ], "x-ms-correlation-request-id": [ - "4fc64f5c-d8ab-408e-9732-474ce06aa9cd" + "9238601d-4f39-41af-adc4-0ed3c7ef6325" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001028Z:4fc64f5c-d8ab-408e-9732-474ce06aa9cd" + "CENTRALUS:20151221T182900Z:9238601d-4f39-41af-adc4-0ed3c7ef6325" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:10:28 GMT" + "Mon, 21 Dec 2015 18:28:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "1d114bac-5505-46ad-8900-09ab6db4e8c0" + "768904ed-acf5-4060-9087-48d7bcdd190b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "da93c90c-e040-42df-b4f6-d6322f275423" + "baa991d6-50f4-44a1-99f5-b2af688190de" ], "x-ms-correlation-request-id": [ - "da93c90c-e040-42df-b4f6-d6322f275423" + "baa991d6-50f4-44a1-99f5-b2af688190de" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001033Z:da93c90c-e040-42df-b4f6-d6322f275423" + "CENTRALUS:20151221T182904Z:baa991d6-50f4-44a1-99f5-b2af688190de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testMaxCount1\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testMaxCount1\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "138" + "164" ], "client-request-id": [ - "17f89a4f-7a66-416d-96a4-349174d0f4f2" + "5df168d8-2f39-40a5-bf4a-6a36ae40af9c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:28 GMT" + "Mon, 21 Dec 2015 18:29:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:10:29 GMT" + "Mon, 21 Dec 2015 18:28:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8f13e5f9-400b-4491-9afa-ce10d97969a3" + "7a53c316-8106-4dbf-860e-73449916cef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "17f89a4f-7a66-416d-96a4-349174d0f4f2" + "5df168d8-2f39-40a5-bf4a-6a36ae40af9c" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount1" ], "Date": [ - "Wed, 11 Nov 2015 00:10:30 GMT" + "Mon, 21 Dec 2015 18:28:59 GMT" ], "ETag": [ - "0x8D2EA2C8240601C" + "0x8D30A3497F18D90" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount1" @@ -401,47 +401,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testMaxCount2\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testMaxCount2\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "138" + "164" ], "client-request-id": [ - "90e61c09-c81f-489a-9313-beee2552c981" + "27bcfdad-7fc6-4854-816d-b2a8a82dd92d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:29 GMT" + "Mon, 21 Dec 2015 18:29:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:10:30 GMT" + "Mon, 21 Dec 2015 18:28:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7d5acce1-5b52-4100-bd19-6dac9ffc520b" + "1e7e12c6-8486-4f45-8459-5d6be0526643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "90e61c09-c81f-489a-9313-beee2552c981" + "27bcfdad-7fc6-4854-816d-b2a8a82dd92d" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount2" ], "Date": [ - "Wed, 11 Nov 2015 00:10:30 GMT" + "Mon, 21 Dec 2015 18:29:00 GMT" ], "ETag": [ - "0x8D2EA2C826F7A0A" + "0x8D30A349824BC7B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount2" @@ -465,47 +465,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"thirdMaxCount\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"thirdMaxCount\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "138" + "164" ], "client-request-id": [ - "6a762d49-e84c-4279-9284-b40e1859c24c" + "284f76ff-7194-45bb-ba12-96fafa0c3337" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:29 GMT" + "Mon, 21 Dec 2015 18:29:01 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:10:30 GMT" + "Mon, 21 Dec 2015 18:29:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1bcabb78-5f47-48cb-961e-6108e426589b" + "2783dd1b-da97-4640-9edd-4e0fa6a4cb53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6a762d49-e84c-4279-9284-b40e1859c24c" + "284f76ff-7194-45bb-ba12-96fafa0c3337" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/thirdMaxCount" ], "Date": [ - "Wed, 11 Nov 2015 00:10:30 GMT" + "Mon, 21 Dec 2015 18:29:00 GMT" ], "ETag": [ - "0x8D2EA2C82A53FF9" + "0x8D30A34986016F2" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/thirdMaxCount" @@ -529,26 +529,26 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "33f6224a-d0c4-416d-bc29-7f6396e9717f" + "ab74e4b0-869d-4d5f-b713-4d19b8edc143" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"testMaxCount1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount1\",\r\n \"eTag\": \"0x8D2EA2C8240601C\",\r\n \"lastModified\": \"2015-11-11T00:10:29.7378844Z\",\r\n \"creationTime\": \"2015-11-11T00:10:29.7378844Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:10:29.7378844Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:10:29.8427355Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testMaxCount2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount2\",\r\n \"eTag\": \"0x8D2EA2C826F7A0A\",\r\n \"lastModified\": \"2015-11-11T00:10:30.0465674Z\",\r\n \"creationTime\": \"2015-11-11T00:10:30.0465674Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:10:30.0465674Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:10:30.1295582Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2C3CFF1EC4\",\r\n \"lastModified\": \"2015-11-11T00:08:33.5474372Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:09:18.0782632Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 6,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdMaxCount\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/thirdMaxCount\",\r\n \"eTag\": \"0x8D2EA2C82A53FF9\",\r\n \"lastModified\": \"2015-11-11T00:10:30.3989753Z\",\r\n \"creationTime\": \"2015-11-11T00:10:30.3989753Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:10:30.3989753Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:10:30.4820079Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/simple\",\r\n \"eTag\": \"0x8D30A3481C5B12D\",\r\n \"lastModified\": \"2015-12-21T18:28:22.1165869Z\",\r\n \"creationTime\": \"2015-12-21T18:28:20.8251122Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-12-21T18:28:22.1165869Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:29:02.3751889Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testMaxCount1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount1\",\r\n \"eTag\": \"0x8D30A3497F18D90\",\r\n \"lastModified\": \"2015-12-21T18:28:59.3139088Z\",\r\n \"creationTime\": \"2015-12-21T18:28:59.3139088Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:28:59.3139088Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:28:59.433208Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testMaxCount2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testMaxCount2\",\r\n \"eTag\": \"0x8D30A349824BC7B\",\r\n \"lastModified\": \"2015-12-21T18:28:59.6493435Z\",\r\n \"creationTime\": \"2015-12-21T18:28:59.6493435Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:28:59.6493435Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:28:59.7392366Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3450E7AF86\",\r\n \"lastModified\": \"2015-12-21T18:27:00.1310086Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:27:00.1310086Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:27:01.1489094Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdMaxCount\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/thirdMaxCount\",\r\n \"eTag\": \"0x8D30A34986016F2\",\r\n \"lastModified\": \"2015-12-21T18:29:00.0383218Z\",\r\n \"creationTime\": \"2015-12-21T18:29:00.0383218Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:29:00.0383218Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:29:00.1247702Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -557,19 +557,19 @@ "chunked" ], "request-id": [ - "37b5babc-e032-4848-9f8f-84d558d9a0ba" + "cc974603-b382-4064-a36b-1abcafe0259c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "33f6224a-d0c4-416d-bc29-7f6396e9717f" + "ab74e4b0-869d-4d5f-b713-4d19b8edc143" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:10:34 GMT" + "Mon, 21 Dec 2015 18:29:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,22 +578,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testMaxCount1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RNYXhDb3VudDE/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testMaxCount1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RNYXhDb3VudDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "760c67c7-c71a-4a2e-bf19-ab54376392fe" + "b8777553-9e95-4065-bfd6-53d7c627c979" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -603,19 +603,19 @@ "chunked" ], "request-id": [ - "fd7cbbc3-aa9d-496b-b7e5-ea6f6ca6dc2b" + "7842ed24-824f-422f-b058-484de3368cfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "760c67c7-c71a-4a2e-bf19-ab54376392fe" + "b8777553-9e95-4065-bfd6-53d7c627c979" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:10:34 GMT" + "Mon, 21 Dec 2015 18:29:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,22 +624,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testMaxCount2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RNYXhDb3VudDI/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testMaxCount2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RNYXhDb3VudDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d23ada6d-3621-44e5-ac8e-d00c1eea40dc" + "b22e555c-6c3d-4c92-8307-e641b4ca2808" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -649,19 +649,19 @@ "chunked" ], "request-id": [ - "5fdcb709-651e-4e9a-a5e6-171b3710be7d" + "bebd9877-e898-4505-a2fb-c58ea0d1c8d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d23ada6d-3621-44e5-ac8e-d00c1eea40dc" + "b22e555c-6c3d-4c92-8307-e641b4ca2808" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:10:34 GMT" + "Mon, 21 Dec 2015 18:29:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +670,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/thirdMaxCount?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3RoaXJkTWF4Q291bnQ/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/thirdMaxCount?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3RoaXJkTWF4Q291bnQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b45be8aa-199f-4084-beef-ab344d8ed0dc" + "b8c51ef9-fcf0-41aa-8ca1-c36a95df42e5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:10:33 GMT" + "Mon, 21 Dec 2015 18:29:04 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -695,19 +695,19 @@ "chunked" ], "request-id": [ - "2476994c-e6c3-4f24-95b0-273ecbcbeb10" + "0822d746-b9ab-4f77-b94a-388277deb819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b45be8aa-199f-4084-beef-ab344d8ed0dc" + "b8c51ef9-fcf0-41aa-8ca1-c36a95df42e5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:10:34 GMT" + "Mon, 21 Dec 2015 18:29:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json index 14bdaf4dc2bc..5b2f5856ea52 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-request-id": [ - "bc928147-f29d-4107-b666-6dff3584c6e0" + "411e5460-f3a1-4a78-9614-2db3e04f52a6" ], "x-ms-correlation-request-id": [ - "bc928147-f29d-4107-b666-6dff3584c6e0" + "411e5460-f3a1-4a78-9614-2db3e04f52a6" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000909Z:bc928147-f29d-4107-b666-6dff3584c6e0" + "WESTUS:20151221T234521Z:411e5460-f3a1-4a78-9614-2db3e04f52a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:09 GMT" + "Mon, 21 Dec 2015 23:45:20 GMT" ] }, "StatusCode": 200 @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:10 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b00fb5e4-07ab-4fcf-b8bf-194f2f045408" + "4ca604e9-b09b-4381-ad45-8bbb28ea7ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "ced721e0-22ed-4d37-9496-1a0869eebe91" + "0fb6e2de-d439-46d9-9e92-4ac7f42fc327" ], "x-ms-correlation-request-id": [ - "ced721e0-22ed-4d37-9496-1a0869eebe91" + "0fb6e2de-d439-46d9-9e92-4ac7f42fc327" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000910Z:ced721e0-22ed-4d37-9496-1a0869eebe91" + "WESTUS:20151221T234522Z:0fb6e2de-d439-46d9-9e92-4ac7f42fc327" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:09 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "ETag": [ - "0x8D2EA2C5339F921" + "0x8D30A60CA9B68F3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"WgaHCoE/nvIMWf07e9UBA5YijxVd2YKvEisyA790Bl0X0zx6x8BMstyNJfKpGr0ibTUMJSpEL8/PFxo8qJmABg==\",\r\n \"secondary\": \"7Pp1b3WnEQKbDOdxaTDU/Ikn62nKv9A7pVeW9Cl57J6Z/aCEWEBvASX9cmAxLiKWPYZqZKnIl6DrNVSxT0AErg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "9c257b25-63cf-442a-8f3e-af2bd017a61a" + "d30b2d93-33a3-4d56-9729-cea5a045a1d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "0ac73d58-35b1-4aad-a2f1-cffbd36efcf0" + "6335836b-acb2-4b98-ae2a-c1b3fa18f285" ], "x-ms-correlation-request-id": [ - "0ac73d58-35b1-4aad-a2f1-cffbd36efcf0" + "6335836b-acb2-4b98-ae2a-c1b3fa18f285" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000910Z:0ac73d58-35b1-4aad-a2f1-cffbd36efcf0" + "WESTUS:20151221T234522Z:6335836b-acb2-4b98-ae2a-c1b3fa18f285" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:09:09 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,47 +169,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"simple\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"targetDedicated\": 1,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"simple\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"targetDedicated\": 1,\r\n \"enableInterNodeCommunication\": false\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "160" + "187" ], "client-request-id": [ - "44cd3c4a-d074-4fec-b4fb-e997d0a3b6a7" + "da86bcb4-e617-4b46-9706-196cf1d1f9ca" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:10 GMT" + "Mon, 21 Dec 2015 23:45:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:11 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "17cd6731-cf78-4317-a2b0-6a2ae757cfee" + "b6d8c13d-ae17-4f57-a5dd-fa06313de2da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "44cd3c4a-d074-4fec-b4fb-e997d0a3b6a7" + "da86bcb4-e617-4b46-9706-196cf1d1f9ca" ], "DataServiceVersion": [ "3.0" @@ -218,10 +218,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/simple" ], "Date": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "ETag": [ - "0x8D2EA2C53B1B2C6" + "0x8D30A60CA99FCCB" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/simple" @@ -233,47 +233,47 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ]\r\n },\r\n \"maxTasksPerNode\": 2,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT7M\",\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ]\r\n },\r\n \"maxTasksPerNode\": 2,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "779" + "848" ], "client-request-id": [ - "b2c49cfe-bf53-4503-8e8a-2d1d99017fcd" + "39f1a8f1-a73f-409b-a877-edff393c288a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:11 GMT" + "Mon, 21 Dec 2015 23:45:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53c17204-34a9-4b60-864a-a33f66b6a6e6" + "b979ff59-9671-4cf7-ae92-a467911c4173" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b2c49cfe-bf53-4503-8e8a-2d1d99017fcd" + "39f1a8f1-a73f-409b-a877-edff393c288a" ], "DataServiceVersion": [ "3.0" @@ -282,10 +282,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/complex" ], "Date": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "ETag": [ - "0x8D2EA2C5400C49F" + "0x8D30A60CAF09CBB" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/complex" @@ -297,53 +297,53 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3NpbXBsZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3NpbXBsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b5f853b5-e9d6-405c-b13c-887d5889c144" + "58fa4c9d-2eea-4f4a-9c24-4e5c5cb9e80f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:11 GMT" + "Mon, 21 Dec 2015 23:45:23 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/simple\",\r\n \"eTag\": \"0x8D2EA2C53B1B2C6\",\r\n \"lastModified\": \"2015-11-11T00:09:11.6276422Z\",\r\n \"creationTime\": \"2015-11-11T00:09:11.6276422Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:09:11.6276422Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:09:11.6276422Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/simple\",\r\n \"eTag\": \"0x8D30A60CA99FCCB\",\r\n \"lastModified\": \"2015-12-21T23:45:22.1599435Z\",\r\n \"creationTime\": \"2015-12-21T23:45:22.1599435Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T23:45:22.1599435Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T23:45:22.1599435Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:11 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4798e9a1-22e0-4be7-bee7-6c7261a77629" + "42f963ec-cc01-41bc-a626-2154b1c43cab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b5f853b5-e9d6-405c-b13c-887d5889c144" + "58fa4c9d-2eea-4f4a-9c24-4e5c5cb9e80f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "ETag": [ - "0x8D2EA2C53B1B2C6" + "0x8D30A60CA99FCCB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,53 +352,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL2NvbXBsZXg/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL2NvbXBsZXg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8d4b3891-3cea-45ec-b1c3-d5a40d9fa8f0" + "b4d84ec9-7a18-4e6e-8fb1-8893e04eaab2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:11 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/complex\",\r\n \"eTag\": \"0x8D2EA2C5400C49F\",\r\n \"lastModified\": \"2015-11-11T00:09:12.1458335Z\",\r\n \"creationTime\": \"2015-11-11T00:09:12.1458335Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:09:12.1458335Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:09:12.1458335Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-11-11T00:09:12.1458335Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 2,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"complex\",\r\n \"displayName\": \"displayName\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/complex\",\r\n \"eTag\": \"0x8D30A60CAF09CBB\",\r\n \"lastModified\": \"2015-12-21T23:45:22.7276475Z\",\r\n \"creationTime\": \"2015-12-21T23:45:22.7276475Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T23:45:22.7276475Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T23:45:22.7276475Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleEvaluationInterval\": \"PT7M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-12-21T23:45:22.7276475Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 2,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0f163ccc-e834-45b0-bf30-0bcdd3928768" + "350b557c-0afa-4262-a2f6-ce725ad6299f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8d4b3891-3cea-45ec-b1c3-d5a40d9fa8f0" + "b4d84ec9-7a18-4e6e-8fb1-8893e04eaab2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:13 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "ETag": [ - "0x8D2EA2C5400C49F" + "0x8D30A60CAF09CBB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -407,22 +407,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3NpbXBsZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3NpbXBsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d2a79a38-3cf8-4c61-8e68-d2131cd11509" + "78020b28-0222-4518-9785-0417a69dd569" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -432,19 +432,19 @@ "chunked" ], "request-id": [ - "bdefdbf7-da63-4b47-84e8-5baa6cf025d5" + "39ac8f66-00b2-490a-b40c-0544f698a4f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d2a79a38-3cf8-4c61-8e68-d2131cd11509" + "78020b28-0222-4518-9785-0417a69dd569" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:13 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,22 +453,22 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL2NvbXBsZXg/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL2NvbXBsZXg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a0a98302-94f3-4356-b744-6f37d0bb86a1" + "9183db39-5fec-4e6d-afe7-0b3aaca20498" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:09:12 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -478,19 +478,19 @@ "chunked" ], "request-id": [ - "a446dcbd-df4e-48ea-9566-890e911ccb87" + "1f6e7560-40b9-4a6a-944f-8e9c715c1ef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a0a98302-94f3-4356-b744-6f37d0bb86a1" + "9183db39-5fec-4e6d-afe7-0b3aaca20498" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:09:13 GMT" + "Mon, 21 Dec 2015 23:45:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolById.json index 45126f3a79bc..cb0592d0517d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "9f3206c6-90c4-4d9e-88ff-0ae71cc593ac" + "f299112f-9637-4080-a8e9-eb79cbc8d3a7" ], "x-ms-correlation-request-id": [ - "9f3206c6-90c4-4d9e-88ff-0ae71cc593ac" + "f299112f-9637-4080-a8e9-eb79cbc8d3a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001441Z:9f3206c6-90c4-4d9e-88ff-0ae71cc593ac" + "CENTRALUS:20151221T182452Z:f299112f-9637-4080-a8e9-eb79cbc8d3a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:14:40 GMT" + "Mon, 21 Dec 2015 18:24:52 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "1e593ef5-e642-4da7-aba6-a0522f18f8b8" + "b766074c-9b62-4c33-a2c7-552373cc353c" ], "x-ms-correlation-request-id": [ - "1e593ef5-e642-4da7-aba6-a0522f18f8b8" + "b766074c-9b62-4c33-a2c7-552373cc353c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001446Z:1e593ef5-e642-4da7-aba6-a0522f18f8b8" + "CENTRALUS:20151221T182457Z:b766074c-9b62-4c33-a2c7-552373cc353c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:14:46 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:14:42 GMT" + "Mon, 21 Dec 2015 18:24:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "bd6d9f8e-3fba-484a-908b-08fe1bc8b583" + "b3368815-31ba-420d-876e-afc9f9b4a156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-request-id": [ - "3ef2c301-b88b-4e69-bc77-52c0f1543448" + "9f1293c4-fec2-4ba0-947d-fa512b5d50a2" ], "x-ms-correlation-request-id": [ - "3ef2c301-b88b-4e69-bc77-52c0f1543448" + "9f1293c4-fec2-4ba0-947d-fa512b5d50a2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001443Z:3ef2c301-b88b-4e69-bc77-52c0f1543448" + "CENTRALUS:20151221T182454Z:9f1293c4-fec2-4ba0-947d-fa512b5d50a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:14:42 GMT" + "Mon, 21 Dec 2015 18:24:54 GMT" ], "ETag": [ - "0x8D2EA2D191BC284" + "0x8D30A3405487794" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:14:46 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1b814fd5-c28d-40a6-b744-b6b28ecede23" + "6739f1e2-d241-45bc-a512-e3f079750968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-request-id": [ - "2008b49d-705d-4118-bc6d-ce7b24333668" + "7dc8ed87-9a71-46fb-b74f-749d51b0bcf0" ], "x-ms-correlation-request-id": [ - "2008b49d-705d-4118-bc6d-ce7b24333668" + "7dc8ed87-9a71-46fb-b74f-749d51b0bcf0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001446Z:2008b49d-705d-4118-bc6d-ce7b24333668" + "CENTRALUS:20151221T182457Z:7dc8ed87-9a71-46fb-b74f-749d51b0bcf0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:14:45 GMT" + "Mon, 21 Dec 2015 18:24:57 GMT" ], "ETag": [ - "0x8D2EA2D1B25F258" + "0x8D30A34071FEA5A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "1d498a95-3728-46bd-b92e-83ef4fbc36c0" + "6b655b91-2c35-44ee-87f4-d23f915989c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "db14956a-d5dd-4680-af40-175fe1d568e7" + "24ec7887-51e8-433e-969e-8b5bc516bea7" ], "x-ms-correlation-request-id": [ - "db14956a-d5dd-4680-af40-175fe1d568e7" + "24ec7887-51e8-433e-969e-8b5bc516bea7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001443Z:db14956a-d5dd-4680-af40-175fe1d568e7" + "CENTRALUS:20151221T182454Z:24ec7887-51e8-433e-969e-8b5bc516bea7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:14:42 GMT" + "Mon, 21 Dec 2015 18:24:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "1a6c4a15-80e3-439c-9264-173adcbf578e" + "36d68c45-ae13-4250-a72b-3080eff7a836" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,19 @@ "1198" ], "x-ms-request-id": [ - "85736aa3-2258-4d67-911a-2c2e205624d8" + "75339686-f7e9-4a59-8d90-aed0d25c8dcb" ], "x-ms-correlation-request-id": [ - "85736aa3-2258-4d67-911a-2c2e205624d8" + "75339686-f7e9-4a59-8d90-aed0d25c8dcb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001446Z:85736aa3-2258-4d67-911a-2c2e205624d8" + "CENTRALUS:20151221T182457Z:75339686-f7e9-4a59-8d90-aed0d25c8dcb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:14:46 GMT" + "Mon, 21 Dec 2015 18:24:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b4e9ecd2-35ba-4f7b-9e14-885d29e2f74a" + "9580e8cd-3af6-444f-9a89-b783998948fa" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:14:43 GMT" + "Mon, 21 Dec 2015 18:24:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D02DC037E\",\r\n \"lastModified\": \"2015-11-11T00:14:05.5062398Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:14:07.6397369Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A33EF2EA950\",\r\n \"lastModified\": \"2015-12-21T18:24:16.1794384Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:16.1794384Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:17.3976425Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:14:05 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8ed3754c-c645-4b91-a113-8b8b33ee0a83" + "85d79736-6b8d-43ee-ab0a-1eab32a82609" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b4e9ecd2-35ba-4f7b-9e14-885d29e2f74a" + "9580e8cd-3af6-444f-9a89-b783998948fa" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:14:44 GMT" + "Mon, 21 Dec 2015 18:24:52 GMT" ], "ETag": [ - "0x8D2EA2D02DC037E" + "0x8D30A33EF2EA950" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4992a406-f574-452b-85d5-e688f0d8eee1" + "60fca1d3-221e-4d46-82bc-d7f2c1f015a0" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:14:46 GMT" + "Mon, 21 Dec 2015 18:24:57 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D02DC037E\",\r\n \"lastModified\": \"2015-11-11T00:14:05.5062398Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:14:07.6397369Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A33EF2EA950\",\r\n \"lastModified\": \"2015-12-21T18:24:16.1794384Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:16.1794384Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:17.3976425Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:14:05 GMT" + "Mon, 21 Dec 2015 18:24:16 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f45b0796-784a-4eab-833c-feac3c170269" + "a45c2080-d30d-4143-8c2d-a05fcf6a9da3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4992a406-f574-452b-85d5-e688f0d8eee1" + "60fca1d3-221e-4d46-82bc-d7f2c1f015a0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:14:47 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "ETag": [ - "0x8D2EA2D02DC037E" + "0x8D30A33EF2EA950" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fa8c5609-466e-481d-881b-989ccc444d3a" + "924b00d0-9abc-4818-8268-b748314d6889" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:14:47 GMT" + "Mon, 21 Dec 2015 18:24:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2D1BDAF85F\",\r\n \"lastModified\": \"2015-11-11T00:14:47.4424415Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:14:47.4424415Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A34077F7FB5\",\r\n \"lastModified\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:24:56.9745333Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:14:47 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6fca9769-d95d-42ec-859b-4e1bff3f4a8b" + "54a3d73a-b3d5-4c27-b950-8276ad5df05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fa8c5609-466e-481d-881b-989ccc444d3a" + "924b00d0-9abc-4818-8268-b748314d6889" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:14:47 GMT" + "Mon, 21 Dec 2015 18:24:57 GMT" ], "ETag": [ - "0x8D2EA2D1BDAF85F" + "0x8D30A34077F7FB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,8 +502,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetDedicated\": 3\r\n}", "RequestHeaders": { @@ -514,35 +514,35 @@ "28" ], "client-request-id": [ - "078a1433-ee3d-4d50-bf76-c8d75ac2e6f1" + "bd9f8d97-1a2b-45ec-b207-f8f8427b891b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:14:46 GMT" + "Mon, 21 Dec 2015 18:24:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:14:47 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "68a9774f-8ec9-4262-b2fd-3e7165db1a02" + "1254bf3e-5c5d-4d7f-9eb4-7fe41f768b60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "078a1433-ee3d-4d50-bf76-c8d75ac2e6f1" + "bd9f8d97-1a2b-45ec-b207-f8f8427b891b" ], "DataServiceVersion": [ "3.0" @@ -551,10 +551,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:14:47 GMT" + "Mon, 21 Dec 2015 18:24:56 GMT" ], "ETag": [ - "0x8D2EA2D1BDAF85F" + "0x8D30A34077F7FB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json index 3d12da3dcb18..05075a1ce57c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14998" ], "x-ms-request-id": [ - "557e95da-cdee-4392-8930-21a3b4074d3b" + "6a9fbb37-f78b-455e-be2f-2c1cf81425e3" ], "x-ms-correlation-request-id": [ - "557e95da-cdee-4392-8930-21a3b4074d3b" + "6a9fbb37-f78b-455e-be2f-2c1cf81425e3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000534Z:557e95da-cdee-4392-8930-21a3b4074d3b" + "WESTUS:20151221T183348Z:6a9fbb37-f78b-455e-be2f-2c1cf81425e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:05:34 GMT" + "Mon, 21 Dec 2015 18:33:48 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,13 +76,13 @@ "14997" ], "x-ms-request-id": [ - "b501fa49-0cf0-473e-ad89-40086a124d9d" + "d86bab3f-93ca-4cc4-9ddd-758cc0cd4ff0" ], "x-ms-correlation-request-id": [ - "b501fa49-0cf0-473e-ad89-40086a124d9d" + "d86bab3f-93ca-4cc4-9ddd-758cc0cd4ff0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000539Z:b501fa49-0cf0-473e-ad89-40086a124d9d" + "WESTUS:20151221T183353Z:d86bab3f-93ca-4cc4-9ddd-758cc0cd4ff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:05:39 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:36 GMT" + "Mon, 21 Dec 2015 18:33:49 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0371667c-c8ff-4dec-9b1b-4641c3e6d24b" + "b4840ffb-82d8-4013-881e-b61390727f48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "1c1cead0-a6c7-40e2-8f2b-01c5bd3a02ac" + "69a3fc09-5e5a-4137-90e7-94b3d03a49cc" ], "x-ms-correlation-request-id": [ - "1c1cead0-a6c7-40e2-8f2b-01c5bd3a02ac" + "69a3fc09-5e5a-4137-90e7-94b3d03a49cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000536Z:1c1cead0-a6c7-40e2-8f2b-01c5bd3a02ac" + "WESTUS:20151221T183350Z:69a3fc09-5e5a-4137-90e7-94b3d03a49cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:05:35 GMT" + "Mon, 21 Dec 2015 18:33:50 GMT" ], "ETag": [ - "0x8D2EA2BD36C6DC3" + "0x8D30A3544F3470C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:39 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "73ba0a3d-0de0-4ee4-a682-296be126e845" + "440ae7c2-e805-461d-addb-43e73b48c312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "c500fbfd-01aa-4ec4-a949-57685ed36e6f" + "5f1ef13f-4fe7-4de8-bad8-5e3b8fd4b510" ], "x-ms-correlation-request-id": [ - "c500fbfd-01aa-4ec4-a949-57685ed36e6f" + "5f1ef13f-4fe7-4de8-bad8-5e3b8fd4b510" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000539Z:c500fbfd-01aa-4ec4-a949-57685ed36e6f" + "WESTUS:20151221T183353Z:5f1ef13f-4fe7-4de8-bad8-5e3b8fd4b510" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:05:39 GMT" + "Mon, 21 Dec 2015 18:33:53 GMT" ], "ETag": [ - "0x8D2EA2BD57B5B6F" + "0x8D30A3546E6081A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "5d4c2789-6ff1-4828-9bab-8700b8775ecd" + "01c59a5c-151a-447f-9369-d2e1e1b310c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "f526c523-8ebf-4eb7-907c-fb681b0b182f" + "b88021ea-f76b-409b-a855-083d1f2dea57" ], "x-ms-correlation-request-id": [ - "f526c523-8ebf-4eb7-907c-fb681b0b182f" + "b88021ea-f76b-409b-a855-083d1f2dea57" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000536Z:f526c523-8ebf-4eb7-907c-fb681b0b182f" + "WESTUS:20151221T183350Z:b88021ea-f76b-409b-a855-083d1f2dea57" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:05:35 GMT" + "Mon, 21 Dec 2015 18:33:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "57d1ba81-eec5-4022-a993-5ec1ffc3e236" + "b860e407-3535-48bf-8248-8d709782155c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "25668363-3714-495b-a395-fa7097c2313b" + "fb447b04-8932-46cd-a088-77ae2f04a4da" ], "x-ms-correlation-request-id": [ - "25668363-3714-495b-a395-fa7097c2313b" + "fb447b04-8932-46cd-a088-77ae2f04a4da" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000539Z:25668363-3714-495b-a395-fa7097c2313b" + "WESTUS:20151221T183353Z:fb447b04-8932-46cd-a088-77ae2f04a4da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:05:39 GMT" + "Mon, 21 Dec 2015 18:33:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f3829e8-721b-45b7-b745-77595232f61a" + "c50eba53-cb8b-4262-96b9-ba1480cc351a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:05:36 GMT" + "Mon, 21 Dec 2015 18:33:50 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2794393414\",\r\n \"lastModified\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-10T23:36:03.1475484Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A351527F64F\",\r\n \"lastModified\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:32:31.8255568Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:35:12 GMT" + "Mon, 21 Dec 2015 18:32:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "754e34a6-3b82-4300-9d05-547ddfa03457" + "224bed4b-dd94-4d39-94bf-67adec0e980f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f3829e8-721b-45b7-b745-77595232f61a" + "c50eba53-cb8b-4262-96b9-ba1480cc351a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:05:36 GMT" + "Mon, 21 Dec 2015 18:33:50 GMT" ], "ETag": [ - "0x8D2EA2794393414" + "0x8D30A351527F64F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e233ac61-c61f-4e55-ac7b-e139d873bc55" + "0489bd03-d56a-419e-b776-e77e0ddd9f25" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:05:39 GMT" + "Mon, 21 Dec 2015 18:33:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2794393414\",\r\n \"lastModified\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-10T23:36:03.1475484Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A351527F64F\",\r\n \"lastModified\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:32:29.3856847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:32:31.8255568Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT2M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 10 Nov 2015 23:35:12 GMT" + "Mon, 21 Dec 2015 18:32:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "122f4194-f808-4198-a7db-d8f4ab6c71eb" + "caaad1dd-3d55-4f02-bcd8-e80dfe59e107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e233ac61-c61f-4e55-ac7b-e139d873bc55" + "0489bd03-d56a-419e-b776-e77e0ddd9f25" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "ETag": [ - "0x8D2EA2794393414" + "0x8D30A351527F64F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "99ec2c22-487a-4141-a778-b2fb89c804dd" + "59ea0a76-5493-4eec-a439-e1d7b859d8a2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:33:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "43ac3976-a388-4c95-b625-8c9d21242510" + "fbce9b4d-e423-4dfb-88d1-9d64909fdde1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "99ec2c22-487a-4141-a778-b2fb89c804dd" + "59ea0a76-5493-4eec-a439-e1d7b859d8a2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A3546D50CF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,10 +502,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 2,\r\n \"resizeTimeout\": \"PT1H\",\r\n \"nodeDeallocationOption\": \"terminate\"\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 1,\r\n \"resizeTimeout\": \"PT1H\",\r\n \"nodeDeallocationOption\": \"terminate\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -514,35 +514,35 @@ "98" ], "client-request-id": [ - "2127d811-f960-4e95-a8bf-541f953f26ed" + "6409220d-c044-43f4-b1ca-641f70973f8d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:05:39 GMT" + "Mon, 21 Dec 2015 18:33:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "707b0d27-2503-4880-aabf-f08745cd814f" + "1eac5c68-bd10-4cb5-ba08-1f1d3bfff80a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2127d811-f960-4e95-a8bf-541f953f26ed" + "6409220d-c044-43f4-b1ca-641f70973f8d" ], "DataServiceVersion": [ "3.0" @@ -551,10 +551,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A3546D50CF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolById.json index 83ddb9ac2dd7..de983e9be9a7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14999" ], "x-ms-request-id": [ - "ad242904-6f5f-4a80-a3d4-60afb64fd9ae" + "bab438de-f9a4-4929-8f80-bd848761e8ed" ], "x-ms-correlation-request-id": [ - "ad242904-6f5f-4a80-a3d4-60afb64fd9ae" + "bab438de-f9a4-4929-8f80-bd848761e8ed" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000827Z:ad242904-6f5f-4a80-a3d4-60afb64fd9ae" + "CENTRALUS:20151221T184546Z:bab438de-f9a4-4929-8f80-bd848761e8ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:08:27 GMT" + "Mon, 21 Dec 2015 18:45:46 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14926" ], "x-ms-request-id": [ - "65b0cb1a-42a9-4e99-8272-a43a377926ce" + "6b66c231-7cff-4744-8883-f49eb4341a8d" ], "x-ms-correlation-request-id": [ - "65b0cb1a-42a9-4e99-8272-a43a377926ce" + "6b66c231-7cff-4744-8883-f49eb4341a8d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000831Z:65b0cb1a-42a9-4e99-8272-a43a377926ce" + "CENTRALUS:20151221T184733Z:6b66c231-7cff-4744-8883-f49eb4341a8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:08:31 GMT" + "Mon, 21 Dec 2015 18:47:32 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:08:28 GMT" + "Mon, 21 Dec 2015 18:45:47 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ef153bc0-fb46-4d6e-88ac-f47710f28bca" + "ec479e33-f8ef-4742-aedd-755f5578858d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-request-id": [ - "7cd90707-576a-443f-a878-299ffe6614a7" + "a26e9fb7-65c3-498f-ba9f-49882a448fc3" ], "x-ms-correlation-request-id": [ - "7cd90707-576a-443f-a878-299ffe6614a7" + "a26e9fb7-65c3-498f-ba9f-49882a448fc3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000828Z:7cd90707-576a-443f-a878-299ffe6614a7" + "CENTRALUS:20151221T184547Z:a26e9fb7-65c3-498f-ba9f-49882a448fc3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:08:28 GMT" + "Mon, 21 Dec 2015 18:45:46 GMT" ], "ETag": [ - "0x8D2EA2C3A475EEA" + "0x8D30A36F0B16ED5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:08:32 GMT" + "Mon, 21 Dec 2015 18:47:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "063b856e-e37a-4f5a-90e5-27f1729504b3" + "cfc7d717-4083-45a9-8b26-03c36363b891" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-request-id": [ - "276c22d4-66ac-4423-84e9-950c1be090fe" + "49c30efa-1595-4d04-afde-20115f2d4cb7" ], "x-ms-correlation-request-id": [ - "276c22d4-66ac-4423-84e9-950c1be090fe" + "49c30efa-1595-4d04-afde-20115f2d4cb7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000832Z:276c22d4-66ac-4423-84e9-950c1be090fe" + "CENTRALUS:20151221T184734Z:49c30efa-1595-4d04-afde-20115f2d4cb7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:08:31 GMT" + "Mon, 21 Dec 2015 18:47:34 GMT" ], "ETag": [ - "0x8D2EA2C3C61F17F" + "0x8D30A372FEE50A6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,7 +250,7 @@ "no-cache" ], "request-id": [ - "b710a0ec-662a-4a4d-8443-0a23ea821cca" + "5c8d277f-234d-4efc-9e16-f55020e61fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,19 +259,19 @@ "1199" ], "x-ms-request-id": [ - "855c04ae-2984-4fcf-860b-44e1be27d0c2" + "de226362-d301-4364-b0c7-554f3f50acfb" ], "x-ms-correlation-request-id": [ - "855c04ae-2984-4fcf-860b-44e1be27d0c2" + "de226362-d301-4364-b0c7-554f3f50acfb" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000828Z:855c04ae-2984-4fcf-860b-44e1be27d0c2" + "CENTRALUS:20151221T184547Z:de226362-d301-4364-b0c7-554f3f50acfb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:08:28 GMT" + "Mon, 21 Dec 2015 18:45:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "5b9ffa46-3f90-4e25-b9fb-9bb881db9ac5" + "bc0e94d3-a69c-4925-bdb5-bf9020227fca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,1119 @@ "1198" ], "x-ms-request-id": [ - "30671f0d-310b-448f-aad3-b622b39e4484" + "496a3833-f17e-485b-a58c-ffb4c5e9d6c7" ], "x-ms-correlation-request-id": [ - "30671f0d-310b-448f-aad3-b622b39e4484" + "496a3833-f17e-485b-a58c-ffb4c5e9d6c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000832Z:30671f0d-310b-448f-aad3-b622b39e4484" + "CENTRALUS:20151221T184734Z:496a3833-f17e-485b-a58c-ffb4c5e9d6c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:08:32 GMT" + "Mon, 21 Dec 2015 18:47:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3377b342-d828-4e58-abf6-81c0b1c1b3d5" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:45:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6412969d-e159-43bd-9440-28d7135648d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3377b342-d828-4e58-abf6-81c0b1c1b3d5" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:45:47 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5c0da48c-2018-4ae8-8731-29406c353414" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:45:53 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3b7db290-6b99-4bcc-bd92-1e57346913b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5c0da48c-2018-4ae8-8731-29406c353414" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:45:52 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8f069738-806d-4aed-b751-69d36d45b848" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:45:58 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "62a6c3cf-b12b-4e2c-8404-ed97cf4759e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8f069738-806d-4aed-b751-69d36d45b848" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:45:57 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "74c08cfd-d16f-4f39-b92d-6d191414646a" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:03 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "5dd84aac-da29-4867-ad44-102b9b3e9421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "74c08cfd-d16f-4f39-b92d-6d191414646a" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:02 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5a024e7f-1999-4ff7-93c3-6861cbde9ca2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:08 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c5328b22-83c7-4a00-bef5-96d3637a5451" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5a024e7f-1999-4ff7-93c3-6861cbde9ca2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:07 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f7215502-3cdd-467d-9455-d0b07808725c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:13 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6c797566-a0aa-4047-a5e1-3dc9670940d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f7215502-3cdd-467d-9455-d0b07808725c" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:12 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "52b40b07-57b7-4eb3-9561-dfd4858abddd" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:18 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "83ec0fca-a967-4b0a-a3c5-60ef4fd57a66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "52b40b07-57b7-4eb3-9561-dfd4858abddd" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:17 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "21ec3f6e-ac17-4c3c-bbb1-adf664710fbd" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:23 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0f01b0b2-74ce-4640-b4ec-ec9030ffd00a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "21ec3f6e-ac17-4c3c-bbb1-adf664710fbd" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:22 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b1af7703-3042-4c2b-8cc9-f9904378074f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:28 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "032b9389-f925-478b-9370-24cf79569419" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b1af7703-3042-4c2b-8cc9-f9904378074f" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:28 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "26a18d96-8d22-459f-b063-ffb780339c77" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "27557360-d0a6-414c-a138-4796cd201d82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "26a18d96-8d22-459f-b063-ffb780339c77" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:33 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6822ae22-1894-4b6a-ba37-65568020cd09" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:39 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "056efc8a-f5ee-4e85-8373-f2404c97f9e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "6822ae22-1894-4b6a-ba37-65568020cd09" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:37 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0dd09ae9-0db6-4c78-a490-d5028fe8c849" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f9641d78-d666-4e46-8a6c-2be73e30c203" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0dd09ae9-0db6-4c78-a490-d5028fe8c849" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:42 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "83055913-dfc4-4ace-acf9-531a4846c1d2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:49 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "682eac9d-0275-4147-a571-eaf85f71d306" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "83055913-dfc4-4ace-acf9-531a4846c1d2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:48 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7088d40a-0a33-435a-a9ff-c9469e477cc1" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:54 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9f78bb84-af58-4d14-8584-0847073ecee3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7088d40a-0a33-435a-a9ff-c9469e477cc1" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:52 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c61ce2ab-9ad2-41f2-aaf7-44b98981d7fe" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:46:59 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "960e3145-17b0-4d85-964e-fd95625340b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c61ce2ab-9ad2-41f2-aaf7-44b98981d7fe" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:46:57 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "40385043-4aba-4002-b759-37f834eae1e2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:47:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0b97f9d5-7763-4cc1-934a-f1ab47395be0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "40385043-4aba-4002-b759-37f834eae1e2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:47:03 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bfc08d58-eb7f-4210-a124-8f36ae2a65b2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:47:09 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fdc5b2ff-f7b6-414b-b2c8-1bf51f48b007" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "bfc08d58-eb7f-4210-a124-8f36ae2a65b2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:47:08 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2ff526b3-f1db-4d4d-805b-46d8495212f8" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:47:14 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4185ded3-74d7-49e8-8c4b-22e594aa2fe0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2ff526b3-f1db-4d4d-805b-46d8495212f8" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:47:13 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "349d6d49-ac40-4e09-94cc-10f967837976" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:47:19 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8d0cfcfc-62a4-4868-a184-4e399ea04965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "349d6d49-ac40-4e09-94cc-10f967837976" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:47:18 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c9e8dd6f-06f4-4ae9-950b-6a2274341e75" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 18:47:25 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:33:52.728396Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 18:33:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e051535e-5306-420e-9d74-24ab7a35da84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c9e8dd6f-06f4-4ae9-950b-6a2274341e75" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 18:47:24 GMT" + ], + "ETag": [ + "0x8D30A3546D50CF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +1437,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2801648d-9eef-4c9b-b30b-30342e89e3e1" + "92c57ccc-e201-436c-a784-1e2987ea824d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:08:28 GMT" + "Mon, 21 Dec 2015 18:47:30 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2C25D2A79E\",\r\n \"lastModified\": \"2015-11-11T00:07:54.6684318Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:07:57.9329604Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:47:25.659604Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4e2d1a1c-285f-4c78-a8dc-482025f1505b" + "01da2cfa-aabd-43f6-afee-154ae39e8b36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2801648d-9eef-4c9b-b30b-30342e89e3e1" + "92c57ccc-e201-436c-a784-1e2987ea824d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:08:29 GMT" + "Mon, 21 Dec 2015 18:47:29 GMT" ], "ETag": [ - "0x8D2EA2C25D2A79E" + "0x8D30A3546D50CF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +1492,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f22b483c-6f8d-41e5-a4bc-92a8b9e04a50" + "302f9828-eda5-49a2-8083-a992ca9935e1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:08:32 GMT" + "Mon, 21 Dec 2015 18:47:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2C25D2A79E\",\r\n \"lastModified\": \"2015-11-11T00:07:54.6684318Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:07:57.9329604Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A3546D50CF8\",\r\n \"lastModified\": \"2015-12-21T18:33:52.728396Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:47:25.659604Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 18:33:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c16e2b0a-7156-431e-8ab3-6dcd5e37dc33" + "40b200db-c680-44fd-bd6f-bcdac6c20a3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f22b483c-6f8d-41e5-a4bc-92a8b9e04a50" + "302f9828-eda5-49a2-8083-a992ca9935e1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:33 GMT" ], "ETag": [ - "0x8D2EA2C25D2A79E" + "0x8D30A3546D50CF8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +1547,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a7d6b488-fd25-40f1-8d3c-8cb60bf32711" + "51f3602f-9caf-4a6d-8300-3286e527a81a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2C3CFF1EC4\",\r\n \"lastModified\": \"2015-11-11T00:08:33.5474372Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:08:33.5474372Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 6,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A373076BF82\",\r\n \"lastModified\": \"2015-12-21T18:47:34.1939586Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:47:34.1939586Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 1,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b123fa21-37ea-497b-8798-eba3b1335dbd" + "75c6695f-1fdc-4680-92d6-39a9ea4f8382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a7d6b488-fd25-40f1-8d3c-8cb60bf32711" + "51f3602f-9caf-4a6d-8300-3286e527a81a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:33 GMT" ], "ETag": [ - "0x8D2EA2C3CFF1EC4" + "0x8D30A373076BF82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,10 +1602,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 6\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 3\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -514,35 +1614,35 @@ "28" ], "client-request-id": [ - "3bd41d78-ba6f-460e-b4cc-89faf38fcf88" + "9a01605f-cfed-4a82-a1bb-e3255c72a72b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:08:32 GMT" + "Mon, 21 Dec 2015 18:47:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a855262f-6896-4868-8208-9ba8443d5190" + "3e29c0f8-bd8a-4c2a-b68d-d85f742f6f65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3bd41d78-ba6f-460e-b4cc-89faf38fcf88" + "9a01605f-cfed-4a82-a1bb-e3255c72a72b" ], "DataServiceVersion": [ "3.0" @@ -551,10 +1651,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:33 GMT" ], "ETag": [ - "0x8D2EA2C3CD30F3A" + "0x8D30A37304BD27B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,41 +1663,41 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool?stopresize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3N0b3ByZXNpemUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?stopresize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3N0b3ByZXNpemUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5a0762e8-87e8-4899-88c6-10d092016842" + "24ea049e-8cba-485e-b48c-74cb074e2be6" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:08:32 GMT" + "Mon, 21 Dec 2015 18:47:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "df95a0c8-1cf1-4841-ad6f-73098a491a90" + "c396a1d6-c0fe-443c-9949-8a81cdda1a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5a0762e8-87e8-4899-88c6-10d092016842" + "24ea049e-8cba-485e-b48c-74cb074e2be6" ], "DataServiceVersion": [ "3.0" @@ -606,10 +1706,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:08:33 GMT" + "Mon, 21 Dec 2015 18:47:33 GMT" ], "ETag": [ - "0x8D2EA2C3CFF1EC4" + "0x8D30A373076BF82" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json index 0133fa712b4a..37ce86e334fb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "7ba45856-38dc-45d1-babd-a773dfbfe3a8" + "9cf1b324-ee18-4e52-b7fd-9d24dcc8992b" ], "x-ms-correlation-request-id": [ - "7ba45856-38dc-45d1-babd-a773dfbfe3a8" + "9cf1b324-ee18-4e52-b7fd-9d24dcc8992b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000738Z:7ba45856-38dc-45d1-babd-a773dfbfe3a8" + "CENTRALUS:20151221T203954Z:9cf1b324-ee18-4e52-b7fd-9d24dcc8992b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:37 GMT" + "Mon, 21 Dec 2015 20:39:53 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "2ba65dbf-991f-4672-bd71-9164fcfaebd5" + "3666bd6c-118a-454e-9f24-ce3e6bcee125" ], "x-ms-correlation-request-id": [ - "2ba65dbf-991f-4672-bd71-9164fcfaebd5" + "3666bd6c-118a-454e-9f24-ce3e6bcee125" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000753Z:2ba65dbf-991f-4672-bd71-9164fcfaebd5" + "CENTRALUS:20151221T203958Z:3666bd6c-118a-454e-9f24-ce3e6bcee125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:53 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:39 GMT" + "Mon, 21 Dec 2015 20:39:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4b88bc7d-fbff-4a6f-851e-e9e394aab9f4" + "8f549e95-f664-4c4a-8565-3364865de445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "58d11a69-3322-451d-b773-bc40ec267f08" + "c6a8c55f-0a2d-4b68-b2ad-1b4850d29a15" ], "x-ms-correlation-request-id": [ - "58d11a69-3322-451d-b773-bc40ec267f08" + "c6a8c55f-0a2d-4b68-b2ad-1b4850d29a15" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000739Z:58d11a69-3322-451d-b773-bc40ec267f08" + "CENTRALUS:20151221T203955Z:c6a8c55f-0a2d-4b68-b2ad-1b4850d29a15" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:39 GMT" + "Mon, 21 Dec 2015 20:39:54 GMT" ], "ETag": [ - "0x8D2EA2C1D122E3B" + "0x8D30A46E1B9870F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:53 GMT" + "Mon, 21 Dec 2015 20:39:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "bbfb0696-bd00-4ec8-949f-b3f67753bd1a" + "d9a07cae-6f60-46ad-9a02-7697e3e0e75c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "2b498f5a-d698-47a5-abb9-92a3f367ded0" + "8782e3e0-22e9-4d43-9c9a-73986eb3ba10" ], "x-ms-correlation-request-id": [ - "2b498f5a-d698-47a5-abb9-92a3f367ded0" + "8782e3e0-22e9-4d43-9c9a-73986eb3ba10" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000753Z:2b498f5a-d698-47a5-abb9-92a3f367ded0" + "CENTRALUS:20151221T203958Z:8782e3e0-22e9-4d43-9c9a-73986eb3ba10" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:53 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "ETag": [ - "0x8D2EA2C254D4F64" + "0x8D30A46E3F7D946" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "6fffc09a-9e01-486d-bb1d-7c729fdce01f" + "41c0cdf5-e302-4a79-9c54-32f536e58f54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "ec46a774-269d-432c-b300-62a63540e8f1" + "d71b077b-ee88-4c1c-b884-4593fb6ed454" ], "x-ms-correlation-request-id": [ - "ec46a774-269d-432c-b300-62a63540e8f1" + "d71b077b-ee88-4c1c-b884-4593fb6ed454" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000739Z:ec46a774-269d-432c-b300-62a63540e8f1" + "CENTRALUS:20151221T203955Z:d71b077b-ee88-4c1c-b884-4593fb6ed454" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:39 GMT" + "Mon, 21 Dec 2015 20:39:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "8a7e749a-5a75-42f5-8b49-cacd4fd2ee62" + "92fd2e3a-d58f-4c2d-b6bd-c935c7c20afc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "602a0d64-b934-47ab-8260-ac4f8049d45a" + "f0fe0195-5e05-4fef-85be-5293c89bfa64" ], "x-ms-correlation-request-id": [ - "602a0d64-b934-47ab-8260-ac4f8049d45a" + "f0fe0195-5e05-4fef-85be-5293c89bfa64" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T000753Z:602a0d64-b934-47ab-8260-ac4f8049d45a" + "CENTRALUS:20151221T203959Z:f0fe0195-5e05-4fef-85be-5293c89bfa64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:07:53 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,53 +337,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d502bf99-5a7a-4f44-9a7d-6cd28d2437f1" + "fec9ca17-6436-44c0-9faf-344570f85321" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:39 GMT" + "Mon, 21 Dec 2015 20:39:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4697DCC8E1\",\r\n \"lastModified\": \"2015-12-21T20:37:50.1189345Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:20:31.6397029Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 20:37:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cfcee51c-e186-495c-9c7e-cfe4760f92e8" + "bcf4761f-7b43-4ae5-96e6-2a0339884262" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d502bf99-5a7a-4f44-9a7d-6cd28d2437f1" + "fec9ca17-6436-44c0-9faf-344570f85321" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:41 GMT" + "Mon, 21 Dec 2015 20:39:54 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A4697DCC8E1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -392,53 +392,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "70f1c253-991d-457a-afe2-1afb2dcc50e4" + "19a78631-dc9b-4d51-85cf-588bbeceaf9a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:44 GMT" + "Mon, 21 Dec 2015 20:39:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A4697DCC8E1\",\r\n \"lastModified\": \"2015-12-21T20:37:50.1189345Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:20:31.6397029Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT8M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 20:37:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ac060182-8b73-41b7-ba01-ba0103186ae0" + "a1110163-1f6e-4fc4-9165-c38f6135b735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "70f1c253-991d-457a-afe2-1afb2dcc50e4" + "19a78631-dc9b-4d51-85cf-588bbeceaf9a" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:46 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A4697DCC8E1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,53 +447,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools/testPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bae23e91-3d50-4916-8922-2ee679bbae71" + "a5892add-5ea1-4ab4-a410-cfa0846cfab3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:50 GMT" + "Mon, 21 Dec 2015 20:40:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:07:46.4443458Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D30A46E48B4056\",\r\n \"lastModified\": \"2015-12-21T20:39:58.7691606Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T20:39:58.7691606Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"currentOSVersion\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c1fc6406-edd2-4a9f-b075-592e5df202bd" + "aeb1f6ce-218b-464d-bf9d-6af67591a603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bae23e91-3d50-4916-8922-2ee679bbae71" + "a5892add-5ea1-4ab4-a410-cfa0846cfab3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:07:51 GMT" + "Mon, 21 Dec 2015 20:39:59 GMT" ], "ETag": [ - "0x8D2EA2BD5DFFED9" + "0x8D30A46E48B4056" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -502,118 +502,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "6aef8233-c6e6-4866-a1df-34b6d353f9c2" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:07:53 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2BD5DFFED9\",\r\n \"lastModified\": \"2015-11-11T00:05:40.5381337Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:07:46.4443458Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 00:05:40 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "4727f4d2-6cca-47f0-9dd4-8fd4f6b8da1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "6aef8233-c6e6-4866-a1df-34b6d353f9c2" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:07:53 GMT" - ], - "ETag": [ - "0x8D2EA2BD5DFFED9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "3469593f-90e4-462a-bde3-6eb6293f5b6c" - ], - "ocp-date": [ - "Wed, 11 Nov 2015 00:07:54 GMT" - ], - "return-client-request-id": [ - "true" - ], - "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", - "AzurePowershell/v1.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testPool\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D2EA2C25D2A79E\",\r\n \"lastModified\": \"2015-11-11T00:07:54.6684318Z\",\r\n \"creationTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-10T23:35:12.4062228Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:07:54.6684318Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:54 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "c1c11ced-0ddc-4860-a0e3-06a1085de1d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "client-request-id": [ - "3469593f-90e4-462a-bde3-6eb6293f5b6c" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 11 Nov 2015 00:07:54 GMT" - ], - "ETag": [ - "0x8D2EA2C25D2A79E" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool?resize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testPool?resize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetDedicated\": 4\r\n}", "RequestHeaders": { @@ -624,35 +514,35 @@ "28" ], "client-request-id": [ - "130a796c-cdc6-4b3b-8b4e-0858f1745c59" + "d8f18fed-b59b-420b-866a-89965eea4554" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:53 GMT" + "Mon, 21 Dec 2015 20:39:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "704ef9fb-9ba2-4a0c-90ce-eea4942d95f8" + "2ed77168-b5b3-4b0a-973c-636dc2ed0e8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "130a796c-cdc6-4b3b-8b4e-0858f1745c59" + "d8f18fed-b59b-420b-866a-89965eea4554" ], "DataServiceVersion": [ "3.0" @@ -661,10 +551,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 20:39:59 GMT" ], "ETag": [ - "0x8D2EA2C25AE8087" + "0x8D30A46E445E180" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,41 +563,41 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool?stopresize&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3N0b3ByZXNpemUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testPool?stopresize&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3N0b3ByZXNpemUmYXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3fc1fdbd-c22e-4e57-8da7-014834392c39" + "ec5884d6-008a-4d3c-bf16-8c403a7ee7b4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 20:39:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 20:39:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2fbbfd2a-8adf-4ec4-85bc-dd976f26a16c" + "758166e4-0d9e-40fb-8f66-c4176cdc5e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3fc1fdbd-c22e-4e57-8da7-014834392c39" + "ec5884d6-008a-4d3c-bf16-8c403a7ee7b4" ], "DataServiceVersion": [ "3.0" @@ -716,10 +606,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testPool" ], "Date": [ - "Wed, 11 Nov 2015 00:07:54 GMT" + "Mon, 21 Dec 2015 20:39:59 GMT" ], "ETag": [ - "0x8D2EA2C25D2A79E" + "0x8D30A46E48B4056" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestUpdatePool.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestUpdatePool.json index 80125c4ce54e..b5eb16c25baa 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestUpdatePool.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestUpdatePool.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "f76612e6-ad4b-4cba-87ba-0d1b5b30797f" + "b06e35b1-7280-457b-ac2d-349abb17e489" ], "x-ms-correlation-request-id": [ - "f76612e6-ad4b-4cba-87ba-0d1b5b30797f" + "b06e35b1-7280-457b-ac2d-349abb17e489" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001151Z:f76612e6-ad4b-4cba-87ba-0d1b5b30797f" + "CENTRALUS:20151221T184851Z:b06e35b1-7280-457b-ac2d-349abb17e489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:51 GMT" + "Mon, 21 Dec 2015 18:48:50 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "3bb51804-4ac2-4444-a8d0-b91813478ed4" + "4d5d8a58-a0fa-4c7b-8f38-f5cb6a90160f" ], "x-ms-correlation-request-id": [ - "3bb51804-4ac2-4444-a8d0-b91813478ed4" + "4d5d8a58-a0fa-4c7b-8f38-f5cb6a90160f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001156Z:3bb51804-4ac2-4444-a8d0-b91813478ed4" + "CENTRALUS:20151221T184855Z:4d5d8a58-a0fa-4c7b-8f38-f5cb6a90160f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:55 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:53 GMT" + "Mon, 21 Dec 2015 18:48:51 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "56243a33-34d6-491d-893c-a62752e56959" + "d387e8af-7b34-4a8f-a57f-1009f8752648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-request-id": [ - "1222f1bc-e759-4352-96c3-a4eddc674110" + "afcdea71-dbd4-473d-90e0-8a32af813c71" ], "x-ms-correlation-request-id": [ - "1222f1bc-e759-4352-96c3-a4eddc674110" + "afcdea71-dbd4-473d-90e0-8a32af813c71" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001152Z:1222f1bc-e759-4352-96c3-a4eddc674110" + "CENTRALUS:20151221T184852Z:afcdea71-dbd4-473d-90e0-8a32af813c71" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:52 GMT" + "Mon, 21 Dec 2015 18:48:52 GMT" ], "ETag": [ - "0x8D2EA2CB3FB24F0" + "0x8D30A375E9B19F4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:56 GMT" + "Mon, 21 Dec 2015 18:48:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "06d1ec82-8fc5-4d02-bf18-8164794ade07" + "7217ebb0-711b-4e08-bcad-8d80a6b1a4ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14996" ], "x-ms-request-id": [ - "99415849-592a-4ee8-a2ce-2bad111e4dc8" + "5193505e-2681-4b62-afdc-9e34ecd01764" ], "x-ms-correlation-request-id": [ - "99415849-592a-4ee8-a2ce-2bad111e4dc8" + "5193505e-2681-4b62-afdc-9e34ecd01764" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001156Z:99415849-592a-4ee8-a2ce-2bad111e4dc8" + "CENTRALUS:20151221T184856Z:5193505e-2681-4b62-afdc-9e34ecd01764" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:56 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "ETag": [ - "0x8D2EA2CB6328929" + "0x8D30A37609FD5A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "04fe6ccc-d47d-4cda-b557-78be3e0c2678" + "2579ca53-a6e4-43f7-bc19-964bb248c711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "b3768952-19a7-4922-a176-9c0ff2b52ce4" + "8b521ae2-2ab4-4966-99fe-221dfff7dc7f" ], "x-ms-correlation-request-id": [ - "b3768952-19a7-4922-a176-9c0ff2b52ce4" + "8b521ae2-2ab4-4966-99fe-221dfff7dc7f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001152Z:b3768952-19a7-4922-a176-9c0ff2b52ce4" + "CENTRALUS:20151221T184852Z:8b521ae2-2ab4-4966-99fe-221dfff7dc7f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:52 GMT" + "Mon, 21 Dec 2015 18:48:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "e851916b-6b9e-4056-8d59-5b3bfd560a07" + "6869934e-0a05-4a80-b7b0-df7ace3edf14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "63bf2fa1-7350-4da6-8a5c-4d44a2212fea" + "3c0ae427-dd69-4946-9c47-3ce8f152c203" ], "x-ms-correlation-request-id": [ - "63bf2fa1-7350-4da6-8a5c-4d44a2212fea" + "3c0ae427-dd69-4946-9c47-3ce8f152c203" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T001156Z:63bf2fa1-7350-4da6-8a5c-4d44a2212fea" + "CENTRALUS:20151221T184856Z:3c0ae427-dd69-4946-9c47-3ce8f152c203" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:11:56 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,47 +337,47 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/pools?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testUpdate\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testUpdate\",\r\n \"vmSize\": \"small\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"targetDedicated\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "135" + "161" ], "client-request-id": [ - "43df3ca6-5ce2-423f-a893-26d4306fe858" + "1830720f-4f4a-49f8-b86b-3236a00c5569" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:52 GMT" + "Mon, 21 Dec 2015 18:48:52 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:53 GMT" + "Mon, 21 Dec 2015 18:48:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fb0f88c1-3bdf-43fe-841b-1148a7a862bb" + "6be27742-b6ac-4ff9-961e-587d9c930e3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "43df3ca6-5ce2-423f-a893-26d4306fe858" + "1830720f-4f4a-49f8-b86b-3236a00c5569" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testUpdate" ], "Date": [ - "Wed, 11 Nov 2015 00:11:54 GMT" + "Mon, 21 Dec 2015 18:48:51 GMT" ], "ETag": [ - "0x8D2EA2CB44B1453" + "0x8D30A375EC9F6D9" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/pools/testUpdate" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testUpdate?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testUpdate?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "96ff47b8-3b3a-4c4a-8895-5c0d01bfe5f7" + "c5a09540-4d00-491b-86de-84d4f8166c65" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:56 GMT" + "Mon, 21 Dec 2015 18:48:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdate\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testUpdate\",\r\n \"eTag\": \"0x8D2EA2CB44B1453\",\r\n \"lastModified\": \"2015-11-11T00:11:53.6941139Z\",\r\n \"creationTime\": \"2015-11-11T00:11:53.6941139Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:11:53.6941139Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:11:53.8421122Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdate\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testUpdate\",\r\n \"eTag\": \"0x8D30A375EC9F6D9\",\r\n \"lastModified\": \"2015-12-21T18:48:51.9145177Z\",\r\n \"creationTime\": \"2015-12-21T18:48:51.9145177Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:48:51.9145177Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:48:52.0526039Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:53 GMT" + "Mon, 21 Dec 2015 18:48:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5fc409d2-ed98-4e75-a897-820f9c44b044" + "dc49f8ca-6d0e-467a-a75e-f6b3ab04f990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "96ff47b8-3b3a-4c4a-8895-5c0d01bfe5f7" + "c5a09540-4d00-491b-86de-84d4f8166c65" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:56 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "ETag": [ - "0x8D2EA2CB44B1453" + "0x8D30A375EC9F6D9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,53 +456,53 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdate?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testUpdate?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "104567e0-a198-4cb9-8cb2-16accf6724a4" + "24cc312d-35fb-41a4-ae47-a37f2dcf0b52" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:57 GMT" + "Mon, 21 Dec 2015 18:48:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdate\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testUpdate\",\r\n \"eTag\": \"0x8D2EA2CB69CC243\",\r\n \"lastModified\": \"2015-11-11T00:11:57.5848515Z\",\r\n \"creationTime\": \"2015-11-11T00:11:53.6941139Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:11:53.6941139Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-11-11T00:11:53.8421122Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"envName\",\r\n \"value\": \"envVal\"\r\n }\r\n ],\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"poolMetaName\",\r\n \"value\": \"poolMetaValue\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdate\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/pools/testUpdate\",\r\n \"eTag\": \"0x8D30A3760E32EC7\",\r\n \"lastModified\": \"2015-12-21T18:48:55.4352327Z\",\r\n \"creationTime\": \"2015-12-21T18:48:51.9145177Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T18:48:51.9145177Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T18:48:52.0526039Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"envName\",\r\n \"value\": \"envVal\"\r\n }\r\n ],\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"poolMetaName\",\r\n \"value\": \"poolMetaValue\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:57 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2ab6ff4a-0694-40dd-b2f5-f1412ed6b72e" + "bc146054-539a-438f-bb00-8ca8f99b545d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "104567e0-a198-4cb9-8cb2-16accf6724a4" + "24cc312d-35fb-41a4-ae47-a37f2dcf0b52" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:58 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "ETag": [ - "0x8D2EA2CB69CC243" + "0x8D30A3760E32EC7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -511,8 +511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdate?updateproperties&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/dXBkYXRlcHJvcGVydGllcyZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/pools/testUpdate?updateproperties&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/dXBkYXRlcHJvcGVydGllcyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"envName\",\r\n \"value\": \"envVal\"\r\n }\r\n ]\r\n },\r\n \"certificateReferences\": [],\r\n \"metadata\": [\r\n {\r\n \"name\": \"poolMetaName\",\r\n \"value\": \"poolMetaValue\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -523,16 +523,16 @@ "575" ], "client-request-id": [ - "339f4eb4-c117-4192-b9b8-2503c5295043" + "9ec064f4-c669-4b60-83d4-90db41d35c74" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:56 GMT" + "Mon, 21 Dec 2015 18:48:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -542,16 +542,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:11:57 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "request-id": [ - "2993f1a3-a0a3-4e5c-8434-ec11e1bda860" + "f337cd07-66c5-4378-a55c-fcbf6871f2bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "339f4eb4-c117-4192-b9b8-2503c5295043" + "9ec064f4-c669-4b60-83d4-90db41d35c74" ], "DataServiceVersion": [ "3.0" @@ -560,10 +560,10 @@ "https://pstestaccount.eastus.batch.azure.com/pools/testUpdate" ], "Date": [ - "Wed, 11 Nov 2015 00:11:58 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "ETag": [ - "0x8D2EA2CB69CC243" + "0x8D30A3760E32EC7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -572,22 +572,22 @@ "StatusCode": 204 }, { - "RequestUri": "/pools/testUpdate?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/pools/testUpdate?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "81b8a108-6ed2-49fd-b632-7c0864a0e89f" + "210b9de1-841e-4bd3-81fb-24742fc3dbd4" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:11:57 GMT" + "Mon, 21 Dec 2015 18:48:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -597,19 +597,19 @@ "chunked" ], "request-id": [ - "282813af-e83d-4fbf-b34c-5a1b24155e08" + "f6851695-bfbf-4dd6-8830-ed88db5605e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "81b8a108-6ed2-49fd-b632-7c0864a0e89f" + "210b9de1-841e-4bd3-81fb-24742fc3dbd4" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:11:59 GMT" + "Mon, 21 Dec 2015 18:48:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.SubscriptionTests/TestGetSubscriptionQuotas.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.SubscriptionTests/TestGetSubscriptionQuotas.json index f2467aec66dd..c78fa464b8e7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.SubscriptionTests/TestGetSubscriptionQuotas.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.SubscriptionTests/TestGetSubscriptionQuotas.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/providers/Microsoft.Batch?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "800" + "1301" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-request-id": [ - "f401f2ca-d2c9-4868-98b2-777970cd7d04" + "8762817d-cb61-45ee-940c-c4f3b9ece097" ], "x-ms-correlation-request-id": [ - "f401f2ca-d2c9-4868-98b2-777970cd7d04" + "8762817d-cb61-45ee-940c-c4f3b9ece097" ], "x-ms-routing-request-id": [ - "WESTUS:20151026T224036Z:f401f2ca-d2c9-4868-98b2-777970cd7d04" + "WESTUS:20151221T202050Z:8762817d-cb61-45ee-940c-c4f3b9ece097" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Mon, 26 Oct 2015 22:40:35 GMT" + "Mon, 21 Dec 2015 20:20:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch/locations/West%20US/quotas?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/providers/Microsoft.Batch/locations/West%20US/quotas?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,7 +61,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountQuota\": 1\r\n}", + "ResponseBody": "{\r\n \"accountQuota\": 5\r\n}", "ResponseHeaders": { "Content-Length": [ "18" @@ -76,7 +76,7 @@ "no-cache" ], "request-id": [ - "5cea05a8-993a-4d06-9d56-4a97123ede8e" + "7b348057-1cc1-4a76-9954-507b272869de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -85,19 +85,19 @@ "14999" ], "x-ms-request-id": [ - "fa28054b-f5d8-4d08-9c79-57699051cc6f" + "7f153712-0522-4036-9465-7af9567d0f60" ], "x-ms-correlation-request-id": [ - "fa28054b-f5d8-4d08-9c79-57699051cc6f" + "7f153712-0522-4036-9465-7af9567d0f60" ], "x-ms-routing-request-id": [ - "WESTUS:20151026T224037Z:fa28054b-f5d8-4d08-9c79-57699051cc6f" + "WESTUS:20151221T202051Z:7f153712-0522-4036-9465-7af9567d0f60" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 26 Oct 2015 22:40:37 GMT" + "Mon, 21 Dec 2015 20:20:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,6 +108,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json index c6a736b89193..112a97aaee01 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "cd44bb52-a5fc-45d7-bdcf-7fb0fffc5b29" + "2bf89e9f-14c9-4635-9f7f-e082b558db83" ], "x-ms-correlation-request-id": [ - "cd44bb52-a5fc-45d7-bdcf-7fb0fffc5b29" + "2bf89e9f-14c9-4635-9f7f-e082b558db83" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003450Z:cd44bb52-a5fc-45d7-bdcf-7fb0fffc5b29" + "WESTUS:20151221T212226Z:2bf89e9f-14c9-4635-9f7f-e082b558db83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:49 GMT" + "Mon, 21 Dec 2015 21:22:25 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14998" ], "x-ms-request-id": [ - "af0b3e26-8ba9-4cb3-8b27-1881436412db" + "02f30601-384f-4858-8765-bd72bf05ae5f" ], "x-ms-correlation-request-id": [ - "af0b3e26-8ba9-4cb3-8b27-1881436412db" + "02f30601-384f-4858-8765-bd72bf05ae5f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003454Z:af0b3e26-8ba9-4cb3-8b27-1881436412db" + "WESTUS:20151221T212233Z:02f30601-384f-4858-8765-bd72bf05ae5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:54 GMT" + "Mon, 21 Dec 2015 21:22:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109,10 +109,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestaccount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstestaccount.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "394" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:51 GMT" + "Mon, 21 Dec 2015 21:22:28 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "cd6bef89-4d15-4b0e-b047-fb1acee348cc" + "3f0027b2-0097-4ace-8388-c66a1373352a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "36dddcc2-c0bc-4f99-b4e2-c69e88398ffd" + "2748c0fe-b5cf-4c29-8e4f-c451496d98c5" ], "x-ms-correlation-request-id": [ - "36dddcc2-c0bc-4f99-b4e2-c69e88398ffd" + "2748c0fe-b5cf-4c29-8e4f-c451496d98c5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003451Z:36dddcc2-c0bc-4f99-b4e2-c69e88398ffd" + "WESTUS:20151221T212228Z:2748c0fe-b5cf-4c29-8e4f-c451496d98c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:51 GMT" + "Mon, 21 Dec 2015 21:22:27 GMT" ], "ETag": [ - "0x8D2EA2FE9BFDA82" + "0x8D30A4CD47A8148" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,8 +160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -172,10 +172,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestaccount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstestaccount.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "394" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:34 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "014f22a4-ec9e-402a-a816-54bf5a9417d3" + "3156211d-e683-4dcb-8443-c2c563179c55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14998" ], "x-ms-request-id": [ - "a41f3f20-0f1d-449c-a77f-5466854eba6d" + "3fcded18-a331-4b3c-9b18-1e8586e4ebea" ], "x-ms-correlation-request-id": [ - "a41f3f20-0f1d-449c-a77f-5466854eba6d" + "3fcded18-a331-4b3c-9b18-1e8586e4ebea" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003455Z:a41f3f20-0f1d-449c-a77f-5466854eba6d" + "WESTUS:20151221T212234Z:3fcded18-a331-4b3c-9b18-1e8586e4ebea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:54 GMT" + "Mon, 21 Dec 2015 21:22:34 GMT" ], "ETag": [ - "0x8D2EA2FEBE1A611" + "0x8D30A4CD7E9BC50" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,8 +223,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount/listKeys?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "235" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d5b97517-93e6-4d39-ab70-1e48ba1a1362" + "fc3ae690-27e6-45e0-a450-7776759663c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "f1f899ff-6b90-4812-8ea9-c548ac9a3289" + "b45dc459-726d-42ce-9ac9-bb36adc3245c" ], "x-ms-correlation-request-id": [ - "f1f899ff-6b90-4812-8ea9-c548ac9a3289" + "b45dc459-726d-42ce-9ac9-bb36adc3245c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003451Z:f1f899ff-6b90-4812-8ea9-c548ac9a3289" + "WESTUS:20151221T212229Z:b45dc459-726d-42ce-9ac9-bb36adc3245c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:51 GMT" + "Mon, 21 Dec 2015 21:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,8 +280,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount/listKeys?api-version=2015-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtZWFzdHVzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wc3Rlc3RhY2NvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -292,10 +292,10 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "235" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "631c5177-4a07-4e59-9212-d6e2ace7303b" + "f674af57-aff8-4707-acc8-fdd081407dd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "a09665ed-8bcb-48e3-b00d-14c81ca862c5" + "e4721600-2768-4cd1-b4bb-7818739625f1" ], "x-ms-correlation-request-id": [ - "a09665ed-8bcb-48e3-b00d-14c81ca862c5" + "e4721600-2768-4cd1-b4bb-7818739625f1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003455Z:a09665ed-8bcb-48e3-b00d-14c81ca862c5" + "WESTUS:20151221T212234Z:e4721600-2768-4cd1-b4bb-7818739625f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:54 GMT" + "Mon, 21 Dec 2015 21:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"createTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,50 +349,50 @@ "96" ], "client-request-id": [ - "9409077b-b796-42c6-a70a-70db81ff39cf" + "d47f00a9-bf61-46d6-92d1-74c1681497eb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:51 GMT" + "Mon, 21 Dec 2015 21:22:29 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:51 GMT" + "Mon, 21 Dec 2015 21:22:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9e47d3a2-8299-44b2-9394-b79167ab87d1" + "c8a77a49-1fff-46c2-8fa7-e1a29ed3252f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9409077b-b796-42c6-a70a-70db81ff39cf" + "d47f00a9-bf61-46d6-92d1-74c1681497eb" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" + "https://batchtest.brazilsouth.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:34:53 GMT" + "Mon, 21 Dec 2015 21:22:31 GMT" ], "ETag": [ - "0x8D2EA2FE9CC77E8" + "0x8D30A4CD6069259" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" + "https://batchtest.brazilsouth.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -401,53 +401,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/createTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/createTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3afb6a14-89d8-4946-be44-a81ff8b774f3" + "2e038630-5828-4c50-b5c1-d30acfa492e3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"createTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob\",\r\n \"eTag\": \"0x8D2EA2FE9CC77E8\",\r\n \"lastModified\": \"2015-11-11T00:34:51.9515112Z\",\r\n \"creationTime\": \"2015-11-11T00:34:51.9324986Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:51.9515112Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:51.9515112Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"createTaskJob\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob\",\r\n \"eTag\": \"0x8D30A4CD6069259\",\r\n \"lastModified\": \"2015-12-21T21:22:31.3919065Z\",\r\n \"creationTime\": \"2015-12-21T21:22:31.3668991Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:22:31.3919065Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T21:22:31.3919065Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:51 GMT" + "Mon, 21 Dec 2015 21:22:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "43107080-80f5-4b60-a8e0-9377bc4f70b7" + "a8d26616-e1cd-4757-adaf-eaa3a16abd5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3afb6a14-89d8-4946-be44-a81ff8b774f3" + "2e038630-5828-4c50-b5c1-d30acfa492e3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:35 GMT" ], "ETag": [ - "0x8D2EA2FE9CC77E8" + "0x8D30A4CD6069259" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,8 +456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/createTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"simple\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", "RequestHeaders": { @@ -468,50 +468,50 @@ "82" ], "client-request-id": [ - "f19b2b8d-07b1-4e97-ae41-1c772661ecb1" + "6110640e-7f5f-4dcc-869d-129ec16eb9fc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4d5a9894-62ee-4b4a-9afd-a473a931fc9c" + "9ebf0d9d-637a-495c-853b-07d0558762dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f19b2b8d-07b1-4e97-ae41-1c772661ecb1" + "6110640e-7f5f-4dcc-869d-129ec16eb9fc" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob/tasks/simple" + "https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob/tasks/simple" ], "Date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "ETag": [ - "0x8D2EA2FEC977E8A" + "0x8D30A4CD8ECC1FF" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob/tasks/simple" + "https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob/tasks/simple" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,62 +520,62 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/createTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/createTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"complex\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": true\r\n}", + "RequestBody": "{\r\n \"id\": \"complex\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\",\r\n \"commonResourceFiles\": [\r\n {\r\n \"blobSource\": \"https://common.blob.core.windows.net/\",\r\n \"filePath\": \"common.exe\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Content-Length": [ - "548" + "827" ], "client-request-id": [ - "8d1678ee-fa19-4a38-b829-652eaeb0b679" + "e0b7d9e9-9459-468c-9b05-ed0321194aa3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5dcd2c88-6fd7-4c1d-9f20-8de588c22380" + "89df1a1f-abf7-45b1-a470-47541a6c145e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8d1678ee-fa19-4a38-b829-652eaeb0b679" + "e0b7d9e9-9459-468c-9b05-ed0321194aa3" ], "DataServiceVersion": [ "3.0" ], "DataServiceId": [ - "https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob/tasks/complex" + "https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob/tasks/complex" ], "Date": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "ETag": [ - "0x8D2EA2FECC55BAB" + "0x8D30A4CD962B424" ], "Location": [ - "https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob/tasks/complex" + "https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob/tasks/complex" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -584,53 +584,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/createTaskJob/tasks/simple?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/createTaskJob/tasks/simple?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c5f30eea-b000-46bf-b042-6033713a54f8" + "92ee6a4c-fd86-4bbb-8e7a-9e1c0542045c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob/tasks/simple\",\r\n \"eTag\": \"0x8D2EA2FEC977E8A\",\r\n \"creationTime\": \"2015-11-11T00:34:56.637505Z\",\r\n \"lastModified\": \"2015-11-11T00:34:56.637505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:56.637505Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob/tasks/simple\",\r\n \"eTag\": \"0x8D30A4CD8ECC1FF\",\r\n \"creationTime\": \"2015-12-21T21:22:36.2558975Z\",\r\n \"lastModified\": \"2015-12-21T21:22:36.2558975Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:22:36.2558975Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e1b94124-2169-4eb1-ac0e-99b128f772e9" + "32917631-3dad-4920-9721-f22a2cb501e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c5f30eea-b000-46bf-b042-6033713a54f8" + "92ee6a4c-fd86-4bbb-8e7a-9e1c0542045c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "ETag": [ - "0x8D2EA2FEC977E8A" + "0x8D30A4CD8ECC1FF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,53 +639,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskJob/tasks/complex?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/createTaskJob/tasks/complex?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYi90YXNrcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "65e14834-ffe5-495a-a40e-cd94c5f5142f" + "b3205502-ec2f-46a8-9380-32cca5e0205b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"complex\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/createTaskJob/tasks/complex\",\r\n \"eTag\": \"0x8D2EA2FECC55BAB\",\r\n \"creationTime\": \"2015-11-11T00:34:56.9380779Z\",\r\n \"lastModified\": \"2015-11-11T00:34:56.9380779Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:56.9380779Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"complex\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/createTaskJob/tasks/complex\",\r\n \"eTag\": \"0x8D30A4CD962B424\",\r\n \"creationTime\": \"2015-12-21T21:22:37.0288676Z\",\r\n \"lastModified\": \"2015-12-21T21:22:37.0288676Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:22:37.0288676Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\",\r\n \"commonResourceFiles\": [\r\n {\r\n \"blobSource\": \"https://common.blob.core.windows.net/\",\r\n \"filePath\": \"common.exe\"\r\n }\r\n ]\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d60a719b-5bcb-4b7b-b9b2-5d1edb73fb2a" + "327287d6-7f49-41d9-82c5-343f7f4f7b55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "65e14834-ffe5-495a-a40e-cd94c5f5142f" + "b3205502-ec2f-46a8-9380-32cca5e0205b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:56 GMT" + "Mon, 21 Dec 2015 21:22:36 GMT" ], "ETag": [ - "0x8D2EA2FECC55BAB" + "0x8D30A4CD962B424" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -694,22 +694,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/createTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b4bb5479-2c39-4267-8069-7d2b231df00b" + "432605ff-9d7b-4d75-88ec-de97481c082b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:55 GMT" + "Mon, 21 Dec 2015 21:22:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -719,19 +719,19 @@ "chunked" ], "request-id": [ - "22c7d87f-e676-40bb-b782-f2697f54b6fd" + "93dcec71-a23a-434c-93df-c30e88d70476" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b4bb5479-2c39-4267-8069-7d2b231df00b" + "432605ff-9d7b-4d75-88ec-de97481c082b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:57 GMT" + "Mon, 21 Dec 2015 21:22:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json index dba09f296bb5..9ef246108d3c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "b3f8dfb8-4162-4264-8a7f-6b1acca91352" + "3cf21265-8894-4ed4-beb7-c67b59dd7555" ], "x-ms-correlation-request-id": [ - "b3f8dfb8-4162-4264-8a7f-6b1acca91352" + "3cf21265-8894-4ed4-beb7-c67b59dd7555" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003545Z:b3f8dfb8-4162-4264-8a7f-6b1acca91352" + "CENTRALUS:20151221T193714Z:3cf21265-8894-4ed4-beb7-c67b59dd7555" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:35:45 GMT" + "Mon, 21 Dec 2015 19:37:13 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "1c64bd33-1573-403a-ba2c-c5c2627c3f91" + "6e346dfc-ea09-4feb-a5e5-28249eceb9a8" ], "x-ms-correlation-request-id": [ - "1c64bd33-1573-403a-ba2c-c5c2627c3f91" + "6e346dfc-ea09-4feb-a5e5-28249eceb9a8" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003552Z:1c64bd33-1573-403a-ba2c-c5c2627c3f91" + "CENTRALUS:20151221T193718Z:6e346dfc-ea09-4feb-a5e5-28249eceb9a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:35:52 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:35:48 GMT" + "Mon, 21 Dec 2015 19:37:14 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7fb157aa-f207-4b98-8747-b781ee4e2436" + "befbee5e-9657-47ec-b464-b2f7af301938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-request-id": [ - "daa0e919-c818-4c36-870f-d863355cb995" + "c5caf53e-7f83-4f85-9c68-9f1886970a90" ], "x-ms-correlation-request-id": [ - "daa0e919-c818-4c36-870f-d863355cb995" + "c5caf53e-7f83-4f85-9c68-9f1886970a90" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003548Z:daa0e919-c818-4c36-870f-d863355cb995" + "CENTRALUS:20151221T193715Z:c5caf53e-7f83-4f85-9c68-9f1886970a90" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:35:48 GMT" + "Mon, 21 Dec 2015 19:37:15 GMT" ], "ETag": [ - "0x8D2EA300BAB1FA8" + "0x8D30A3E20981011" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:35:52 GMT" + "Mon, 21 Dec 2015 19:37:17 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "24178d9f-651c-41ad-bfd9-c2a1574d53cc" + "e865683b-129b-4e98-8bd9-e891c739e2a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-request-id": [ - "5dfb429e-693f-4dbe-aeec-df13a415431e" + "f5b1d3a4-c76e-4bc6-bc08-0a2636b3bc08" ], "x-ms-correlation-request-id": [ - "5dfb429e-693f-4dbe-aeec-df13a415431e" + "f5b1d3a4-c76e-4bc6-bc08-0a2636b3bc08" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003553Z:5dfb429e-693f-4dbe-aeec-df13a415431e" + "CENTRALUS:20151221T193718Z:f5b1d3a4-c76e-4bc6-bc08-0a2636b3bc08" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:35:52 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "ETag": [ - "0x8D2EA300E1EF322" + "0x8D30A3E22A85C99" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "a032e933-d9b4-4621-a126-ff3d84d5f06f" + "c242c262-cfdd-457c-82d0-8d1a2765c6c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-request-id": [ - "1783b590-3878-449e-acc7-6947fd57b67c" + "dfe53a31-9b14-4c03-b2b1-90faf48ff00d" ], "x-ms-correlation-request-id": [ - "1783b590-3878-449e-acc7-6947fd57b67c" + "dfe53a31-9b14-4c03-b2b1-90faf48ff00d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003549Z:1783b590-3878-449e-acc7-6947fd57b67c" + "CENTRALUS:20151221T193715Z:dfe53a31-9b14-4c03-b2b1-90faf48ff00d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:35:48 GMT" + "Mon, 21 Dec 2015 19:37:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "6ef4ce2e-03ae-430b-a6b1-d5cd9e1d64f5" + "fc7169cf-19b5-4c3a-b17b-e0386317e95e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-request-id": [ - "4018c83b-a99c-4de6-9235-8dc2fc1b7fba" + "3e52dfe7-aeb7-440d-8a98-10919dbd223a" ], "x-ms-correlation-request-id": [ - "4018c83b-a99c-4de6-9235-8dc2fc1b7fba" + "3e52dfe7-aeb7-440d-8a98-10919dbd223a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003553Z:4018c83b-a99c-4de6-9235-8dc2fc1b7fba" + "CENTRALUS:20151221T193718Z:3e52dfe7-aeb7-440d-8a98-10919dbd223a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:35:52 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "96" ], "client-request-id": [ - "6c6b078c-745a-46d3-afe0-a77189b2e39e" + "9be7c222-225d-4b77-b374-a53cb4472f6b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:35:48 GMT" + "Mon, 21 Dec 2015 19:37:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:35:49 GMT" + "Mon, 21 Dec 2015 19:37:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ec01a334-9595-42da-9aa6-1df3562ae92b" + "bb9597bd-a374-425e-8264-2e0ee56616af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6c6b078c-745a-46d3-afe0-a77189b2e39e" + "9be7c222-225d-4b77-b374-a53cb4472f6b" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:35:50 GMT" + "Mon, 21 Dec 2015 19:37:14 GMT" ], "ETag": [ - "0x8D2EA300C0E2DD1" + "0x8D30A3E20998A41" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "2767930a-d7ab-4105-926f-8fa3dcfb0cf0" + "89d28d56-ed80-45d4-aace-eee1bac79deb" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:35:49 GMT" + "Mon, 21 Dec 2015 19:37:15 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:35:51 GMT" + "Mon, 21 Dec 2015 19:37:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "909b7744-c417-4f64-9715-c9e12ee931ba" + "7f891a0f-cc4a-44b8-8624-7b995850ff68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2767930a-d7ab-4105-926f-8fa3dcfb0cf0" + "89d28d56-ed80-45d4-aace-eee1bac79deb" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:35:51 GMT" + "Mon, 21 Dec 2015 19:37:14 GMT" ], "ETag": [ - "0x8D2EA300D620E38" + "0x8D30A3E21667998" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskJob/tasks/testTask" @@ -465,26 +465,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ffa9592c-b80a-4463-a7be-4b779d13fb58" + "324db9fe-3323-42bc-ad08-895055c2c851" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:35:53 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA300D620E38\",\r\n \"creationTime\": \"2015-11-11T00:35:51.6521016Z\",\r\n \"lastModified\": \"2015-11-11T00:35:51.6521016Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:35:51.5617783Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:35:51.3907905Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:35:51.3907905Z\",\r\n \"endTime\": \"2015-11-11T00:35:51.5617783Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3E21667998\",\r\n \"creationTime\": \"2015-12-21T19:37:15.3985944Z\",\r\n \"lastModified\": \"2015-12-21T19:37:15.3985944Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:37:16.9230422Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:37:16.7890383Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:37:16.7890383Z\",\r\n \"endTime\": \"2015-12-21T19:37:16.9230422Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -493,19 +493,19 @@ "chunked" ], "request-id": [ - "60902b1d-b145-4087-9955-dc2ecc5f2d14" + "2c69c2fd-d568-4a76-97bd-b65c2fd815d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ffa9592c-b80a-4463-a7be-4b779d13fb58" + "324db9fe-3323-42bc-ad08-895055c2c851" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:35:53 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -514,22 +514,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "52d2e23a-a694-4d49-afe1-7bee4a269258" + "8425eb4f-0165-4b24-bc5e-0a60a1ec85b8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:35:53 GMT" + "Mon, 21 Dec 2015 19:37:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -542,19 +542,19 @@ "chunked" ], "request-id": [ - "bbde2825-5a62-4e52-a609-d864c53cbca7" + "c9f87c08-e647-4c07-ab48-f23642b99b25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "52d2e23a-a694-4d49-afe1-7bee4a269258" + "8425eb4f-0165-4b24-bc5e-0a60a1ec85b8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:35:54 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,22 +563,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c1749298-a970-4ba3-9616-22c71f66d1b8" + "a5eb04df-5ca8-4bc2-9da7-391f171928d5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:35:53 GMT" + "Mon, 21 Dec 2015 19:37:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -588,19 +588,19 @@ "chunked" ], "request-id": [ - "82627542-0f36-4c18-a5a2-6c8622280135" + "c6484855-ab33-47a4-937b-8645f4e7aaeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c1749298-a970-4ba3-9616-22c71f66d1b8" + "a5eb04df-5ca8-4bc2-9da7-391f171928d5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:35:54 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -609,22 +609,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/deleteTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1f678345-8dea-4699-957f-7d2844a24595" + "274875c9-5e07-4930-a38a-29c5b26e31dc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:35:54 GMT" + "Mon, 21 Dec 2015 19:37:19 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -634,19 +634,19 @@ "chunked" ], "request-id": [ - "57d5b2c5-3ad0-4930-bd9c-b15c2c08962a" + "b977eb03-919b-4df8-955a-6de331446ee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1f678345-8dea-4699-957f-7d2844a24595" + "274875c9-5e07-4930-a38a-29c5b26e31dc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:35:55 GMT" + "Mon, 21 Dec 2015 19:37:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json index 864cf98aaa0e..7b2359e03700 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-request-id": [ - "e0f37413-0695-463d-9ab8-7aa48665ddf2" + "89dfe0e0-e9e6-4f1c-a780-7e05be8e5f96" ], "x-ms-correlation-request-id": [ - "e0f37413-0695-463d-9ab8-7aa48665ddf2" + "89dfe0e0-e9e6-4f1c-a780-7e05be8e5f96" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003120Z:e0f37413-0695-463d-9ab8-7aa48665ddf2" + "CENTRALUS:20151221T193833Z:89dfe0e0-e9e6-4f1c-a780-7e05be8e5f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:31:20 GMT" + "Mon, 21 Dec 2015 19:38:32 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14987" ], "x-ms-request-id": [ - "1d443b86-4c4f-460c-ada5-5d51438d3bf3" + "60edd4c9-10fe-488a-a895-0cd3fe050be5" ], "x-ms-correlation-request-id": [ - "1d443b86-4c4f-460c-ada5-5d51438d3bf3" + "60edd4c9-10fe-488a-a895-0cd3fe050be5" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003125Z:1d443b86-4c4f-460c-ada5-5d51438d3bf3" + "CENTRALUS:20151221T193837Z:60edd4c9-10fe-488a-a895-0cd3fe050be5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:31:25 GMT" + "Mon, 21 Dec 2015 19:38:36 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:31:22 GMT" + "Mon, 21 Dec 2015 19:38:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1a1f9aec-61ac-45b4-bb23-8d0395b98669" + "44f55f31-92b0-4dd8-b9af-5811e24da183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14983" ], "x-ms-request-id": [ - "d79b2be5-3fc6-4148-af38-ce8f9a8e5a16" + "d0e5e5fd-3f95-4f29-b919-551585192eb2" ], "x-ms-correlation-request-id": [ - "d79b2be5-3fc6-4148-af38-ce8f9a8e5a16" + "d0e5e5fd-3f95-4f29-b919-551585192eb2" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003122Z:d79b2be5-3fc6-4148-af38-ce8f9a8e5a16" + "CENTRALUS:20151221T193834Z:d0e5e5fd-3f95-4f29-b919-551585192eb2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:31:21 GMT" + "Mon, 21 Dec 2015 19:38:34 GMT" ], "ETag": [ - "0x8D2EA2F6CBE7095" + "0x8D30A3E4FA9F8B6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:31:25 GMT" + "Mon, 21 Dec 2015 19:38:36 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "df4317b8-5d96-40f7-a8f4-084093ccc904" + "d3050343-7072-42cb-8101-bf854b23181c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14982" ], "x-ms-request-id": [ - "d2987d7f-14bc-4db9-b122-f8160d5c7677" + "8f131fad-aa92-4236-b14a-5cec66cabe35" ], "x-ms-correlation-request-id": [ - "d2987d7f-14bc-4db9-b122-f8160d5c7677" + "8f131fad-aa92-4236-b14a-5cec66cabe35" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003125Z:d2987d7f-14bc-4db9-b122-f8160d5c7677" + "CENTRALUS:20151221T193837Z:8f131fad-aa92-4236-b14a-5cec66cabe35" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:31:25 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "ETag": [ - "0x8D2EA2F6EF7D0FD" + "0x8D30A3E51BF7DE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d5cd7a37-08e1-4d25-ba3d-83ee855b11e3" + "a3604f8c-e18e-4726-bdf3-49974d2f9fb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "2e10da0b-63db-456a-8acf-dd7b0e33b210" + "c64fe0b4-3a8d-4aab-952d-093c1b539d46" ], "x-ms-correlation-request-id": [ - "2e10da0b-63db-456a-8acf-dd7b0e33b210" + "c64fe0b4-3a8d-4aab-952d-093c1b539d46" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003122Z:2e10da0b-63db-456a-8acf-dd7b0e33b210" + "CENTRALUS:20151221T193834Z:c64fe0b4-3a8d-4aab-952d-093c1b539d46" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:31:21 GMT" + "Mon, 21 Dec 2015 19:38:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "490c604e-2c6e-49b5-841d-851f86524377" + "964fd64c-2da7-4a47-907c-d2e573efc583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "7a10876b-4c41-4e89-816c-5ce6ce0b3284" + "d9d7680d-391d-43bb-91eb-098b324768e3" ], "x-ms-correlation-request-id": [ - "7a10876b-4c41-4e89-816c-5ce6ce0b3284" + "d9d7680d-391d-43bb-91eb-098b324768e3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003126Z:7a10876b-4c41-4e89-816c-5ce6ce0b3284" + "CENTRALUS:20151221T193837Z:d9d7680d-391d-43bb-91eb-098b324768e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:31:25 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteTaskPipeJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "100" ], "client-request-id": [ - "e589141b-49da-43bb-9f5f-92ee9f2541db" + "8cb775ef-4a3a-4bb5-9bf0-665b0a93d5dd" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:22 GMT" + "Mon, 21 Dec 2015 19:38:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:31:22 GMT" + "Mon, 21 Dec 2015 19:38:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a458c488-bb62-484e-a52b-8127ce465c7b" + "8013ab39-7774-4f66-bba3-bd8786519a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e589141b-49da-43bb-9f5f-92ee9f2541db" + "8cb775ef-4a3a-4bb5-9bf0-665b0a93d5dd" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:31:24 GMT" + "Mon, 21 Dec 2015 19:38:33 GMT" ], "ETag": [ - "0x8D2EA2F6D21C00F" + "0x8D30A3E4FC78AD4" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteTaskPipeJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteTaskPipeJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "bab88850-9c09-4a27-bbac-c3a11c9b88c8" + "f072a15c-e2b6-4f5c-8723-a44ada89a3ac" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:22 GMT" + "Mon, 21 Dec 2015 19:38:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:31:24 GMT" + "Mon, 21 Dec 2015 19:38:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1aa87506-6905-4666-9fc9-0189f1eefd39" + "441a154f-bff9-4a4d-9f19-3e09d2ef0325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bab88850-9c09-4a27-bbac-c3a11c9b88c8" + "f072a15c-e2b6-4f5c-8723-a44ada89a3ac" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskPipeJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:31:24 GMT" + "Mon, 21 Dec 2015 19:38:33 GMT" ], "ETag": [ - "0x8D2EA2F6E0655E8" + "0x8D30A3E504D0F9E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskPipeJob/tasks/testTask" @@ -465,26 +465,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteTaskPipeJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteTaskPipeJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a5e3c45-beb5-4c14-928d-484bf9200319" + "3652cfe0-183b-4e67-b78e-9abf3259e817" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:25 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskPipeJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2F6E0655E8\",\r\n \"creationTime\": \"2015-11-11T00:31:24.2932712Z\",\r\n \"lastModified\": \"2015-11-11T00:31:24.2932712Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:31:24.6001613Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:31:24.483159Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:31:24.483159Z\",\r\n \"endTime\": \"2015-11-11T00:31:24.6001613Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskPipeJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3E504D0F9E\",\r\n \"creationTime\": \"2015-12-21T19:38:34.0849566Z\",\r\n \"lastModified\": \"2015-12-21T19:38:34.0849566Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:38:36.1914968Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:38:36.050797Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:38:36.050797Z\",\r\n \"endTime\": \"2015-12-21T19:38:36.1914968Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -493,19 +493,19 @@ "chunked" ], "request-id": [ - "1831551b-1e46-4e0b-84b6-062ddd13b49e" + "59bc35f9-6e24-4949-a188-b4751fb3022f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a5e3c45-beb5-4c14-928d-484bf9200319" + "3652cfe0-183b-4e67-b78e-9abf3259e817" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -514,22 +514,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskPipeJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteTaskPipeJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f48c6f9d-84a7-40b6-91e6-8c648a68c934" + "328f8e5b-af57-42a2-a32d-c07e7a13b702" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -542,19 +542,19 @@ "chunked" ], "request-id": [ - "0c9039ee-aa06-44b8-80dd-3e76f928f498" + "2cc6d0ea-91ff-4855-8763-c8b2e1123d70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f48c6f9d-84a7-40b6-91e6-8c648a68c934" + "328f8e5b-af57-42a2-a32d-c07e7a13b702" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,53 +563,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskPipeJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteTaskPipeJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d670be64-2150-4cde-96a6-ae975ea7885c" + "6f8b0864-13c7-4c0c-a64b-de7ee6a8fc78" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskPipeJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2F6E0655E8\",\r\n \"creationTime\": \"2015-11-11T00:31:24.2932712Z\",\r\n \"lastModified\": \"2015-11-11T00:31:24.2932712Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:31:24.6001613Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:31:24.483159Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:31:24.483159Z\",\r\n \"endTime\": \"2015-11-11T00:31:24.6001613Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/deleteTaskPipeJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3E504D0F9E\",\r\n \"creationTime\": \"2015-12-21T19:38:34.0849566Z\",\r\n \"lastModified\": \"2015-12-21T19:38:34.0849566Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:38:36.1914968Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:38:36.050797Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:38:36.050797Z\",\r\n \"endTime\": \"2015-12-21T19:38:36.1914968Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:31:24 GMT" + "Mon, 21 Dec 2015 19:38:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ba94255b-43ff-4aa6-8369-4f21fcd0fc37" + "dd97ad79-81bf-4b06-a405-19379340216b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d670be64-2150-4cde-96a6-ae975ea7885c" + "6f8b0864-13c7-4c0c-a64b-de7ee6a8fc78" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "ETag": [ - "0x8D2EA2F6E0655E8" + "0x8D30A3E504D0F9E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskPipeJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteTaskPipeJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "51a03c1c-bd69-4172-8ea6-e3c2b856d32e" + "89565edb-3ff4-45ad-8532-71108e36508b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -643,19 +643,19 @@ "chunked" ], "request-id": [ - "ad4f7376-4134-41be-9b83-2d902c37df33" + "80773f42-73c6-494c-ad28-41c446737d76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "51a03c1c-bd69-4172-8ea6-e3c2b856d32e" + "89565edb-3ff4-45ad-8532-71108e36508b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -664,22 +664,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteTaskPipeJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/deleteTaskPipeJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlVGFza1BpcGVKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b29287db-200f-4e01-af8f-c77169295a1c" + "43cab18e-f276-43d1-800d-eebeb20d9ad2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:31:26 GMT" + "Mon, 21 Dec 2015 19:38:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -689,19 +689,19 @@ "chunked" ], "request-id": [ - "2d5f26fc-c3f0-47c2-ba0e-12f679739226" + "5c585519-2a5e-42b7-9ccd-ff9bb2fcbf95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b29287db-200f-4e01-af8f-c77169295a1c" + "43cab18e-f276-43d1-800d-eebeb20d9ad2" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:31:28 GMT" + "Mon, 21 Dec 2015 19:38:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetAndListTasksWithSelect.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetAndListTasksWithSelect.json index 5f6b95811db4..7779923dd69a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetAndListTasksWithSelect.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetAndListTasksWithSelect.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "cbe490d8-1d29-44af-93b7-60ff2460d49a" + "072a40ed-f254-45cd-81ee-5f876dc5c31b" ], "x-ms-correlation-request-id": [ - "cbe490d8-1d29-44af-93b7-60ff2460d49a" + "072a40ed-f254-45cd-81ee-5f876dc5c31b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003036Z:cbe490d8-1d29-44af-93b7-60ff2460d49a" + "WESTUS:20151221T193354Z:072a40ed-f254-45cd-81ee-5f876dc5c31b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:30:36 GMT" + "Mon, 21 Dec 2015 19:33:54 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "fa9c7696-e7a4-4097-9708-fd3f6b443e32" + "5157b1b1-637a-4357-a9d1-584b7f7fbe40" ], "x-ms-correlation-request-id": [ - "fa9c7696-e7a4-4097-9708-fd3f6b443e32" + "5157b1b1-637a-4357-a9d1-584b7f7fbe40" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003042Z:fa9c7696-e7a4-4097-9708-fd3f6b443e32" + "WESTUS:20151221T193359Z:5157b1b1-637a-4357-a9d1-584b7f7fbe40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:30:41 GMT" + "Mon, 21 Dec 2015 19:33:58 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:38 GMT" + "Mon, 21 Dec 2015 19:33:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2d5dabc5-d7d5-4caa-a7d9-704a34714c18" + "a94348aa-03a9-400a-bda6-89e9477682ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14995" ], "x-ms-request-id": [ - "7497a996-a4c5-4e3d-880a-d31bf1ed552b" + "20593910-cba8-430a-9dd8-26b33c97944a" ], "x-ms-correlation-request-id": [ - "7497a996-a4c5-4e3d-880a-d31bf1ed552b" + "20593910-cba8-430a-9dd8-26b33c97944a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003038Z:7497a996-a4c5-4e3d-880a-d31bf1ed552b" + "WESTUS:20151221T193355Z:20593910-cba8-430a-9dd8-26b33c97944a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:30:37 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "ETag": [ - "0x8D2EA2F52F829D0" + "0x8D30A3DA95A680F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:43 GMT" + "Mon, 21 Dec 2015 19:33:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c8f6d217-2990-4199-8fb2-12d41c057a2e" + "90cd6335-ea39-4cf3-9cd1-5044108c15dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14994" ], "x-ms-request-id": [ - "fc4d4fc2-4c1e-4421-bf71-c3f0393d19a1" + "e7de66b7-9bbc-462f-8050-b73abb0337a4" ], "x-ms-correlation-request-id": [ - "fc4d4fc2-4c1e-4421-bf71-c3f0393d19a1" + "e7de66b7-9bbc-462f-8050-b73abb0337a4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003042Z:fc4d4fc2-4c1e-4421-bf71-c3f0393d19a1" + "WESTUS:20151221T193359Z:e7de66b7-9bbc-462f-8050-b73abb0337a4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:30:42 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "ETag": [ - "0x8D2EA2F55813B9D" + "0x8D30A3DAB68DDDF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "bd309ace-af3d-4ffa-93a1-d803a30375e5" + "a9978635-28e6-4d78-8b20-b2d76acd09dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "83785eda-0847-45a1-925d-c05f10a6a1b5" + "92f6a745-f2b2-4a5a-993b-cf371c50583f" ], "x-ms-correlation-request-id": [ - "83785eda-0847-45a1-925d-c05f10a6a1b5" + "92f6a745-f2b2-4a5a-993b-cf371c50583f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003038Z:83785eda-0847-45a1-925d-c05f10a6a1b5" + "WESTUS:20151221T193355Z:92f6a745-f2b2-4a5a-993b-cf371c50583f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:30:37 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "6bf15f13-a697-4658-a543-18db413cd6c0" + "76280be2-c931-4ccf-b73d-20df3b24ea0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "31898a02-c09c-4c84-a209-2fc6f7d7f050" + "ce96bc31-8060-424a-8df9-537df3210db9" ], "x-ms-correlation-request-id": [ - "31898a02-c09c-4c84-a209-2fc6f7d7f050" + "ce96bc31-8060-424a-8df9-537df3210db9" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003043Z:31898a02-c09c-4c84-a209-2fc6f7d7f050" + "WESTUS:20151221T193359Z:ce96bc31-8060-424a-8df9-537df3210db9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:30:42 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"selectTaskTest\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "97" ], "client-request-id": [ - "e169d097-7168-4262-89b4-4372384dd3f9" + "5d27e908-51c4-46f5-8869-d6c544b78638" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:38 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:39 GMT" + "Mon, 21 Dec 2015 19:33:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9454a03d-d351-45f1-b013-9c3bd18243d3" + "2cd66f96-85ff-4a63-a3c4-ee86bb37d2d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "e169d097-7168-4262-89b4-4372384dd3f9" + "5d27e908-51c4-46f5-8869-d6c544b78638" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:30:40 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "ETag": [ - "0x8D2EA2F535E6E41" + "0x8D30A3DA9D8426E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/selectTaskTest/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/selectTaskTest/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "84" ], "client-request-id": [ - "6cd1c5b0-cdea-48ed-81fd-b1a7e26244d0" + "9ec17b04-85ae-4488-9cc2-2779da2447dc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:39 GMT" + "Mon, 21 Dec 2015 19:33:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:40 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4159c860-1c0e-4763-9721-0b8f2a300cdb" + "54e872c6-4be5-4b87-900b-648eae7eff72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6cd1c5b0-cdea-48ed-81fd-b1a7e26244d0" + "9ec17b04-85ae-4488-9cc2-2779da2447dc" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest/tasks/testTask1" ], "Date": [ - "Wed, 11 Nov 2015 00:30:40 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "ETag": [ - "0x8D2EA2F541DD2F6" + "0x8D30A3DAA812C41" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest/tasks/testTask1" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/selectTaskTest/tasks/testTask1?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3MvdGVzdFRhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/selectTaskTest/tasks/testTask1?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3MvdGVzdFRhc2sxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c1d4b8a1-fe68-457a-94cf-a2000ca6d104" + "004eb52c-032c-4953-9e5a-08d11160895e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:42 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2F541DD2F6\",\r\n \"creationTime\": \"2015-11-11T00:30:40.8264438Z\",\r\n \"lastModified\": \"2015-11-11T00:30:40.8264438Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:30:41.7411139Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:30:41.5831096Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:30:41.5831096Z\",\r\n \"endTime\": \"2015-11-11T00:30:41.7411139Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3DAA812C41\",\r\n \"creationTime\": \"2015-12-21T19:33:55.9246913Z\",\r\n \"lastModified\": \"2015-12-21T19:33:55.9246913Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:33:58.734172Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:33:58.5558216Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:33:58.5558216Z\",\r\n \"endTime\": \"2015-12-21T19:33:58.734172Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:40 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "71d75ded-07e4-49f2-871d-97af819d22e5" + "528442fe-b548-4291-bed7-c93c6cd91f1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c1d4b8a1-fe68-457a-94cf-a2000ca6d104" + "004eb52c-032c-4953-9e5a-08d11160895e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:30:44 GMT" + "Mon, 21 Dec 2015 19:33:57 GMT" ], "ETag": [ - "0x8D2EA2F541DD2F6" + "0x8D30A3DAA812C41" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTaskTest/tasks/testTask1?$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3MvdGVzdFRhc2sxPyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/selectTaskTest/tasks/testTask1?$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3MvdGVzdFRhc2sxPyRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "59eabab5-a5d0-48ad-95b1-59329077050a" + "c8b6f8e8-9726-4dac-8261-d4dec5602a27" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:43 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -545,28 +545,28 @@ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:40 GMT" + "Mon, 21 Dec 2015 19:33:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c74c523d-fa7d-49fb-8912-247ac94ce30d" + "ed6a6074-8006-4ddf-97de-2479837a6ed1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "59eabab5-a5d0-48ad-95b1-59329077050a" + "c8b6f8e8-9726-4dac-8261-d4dec5602a27" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:30:44 GMT" + "Mon, 21 Dec 2015 19:33:57 GMT" ], "ETag": [ - "0x8D2EA2F541DD2F6" + "0x8D30A3DAA812C41" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,53 +575,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTaskTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/selectTaskTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f7c73a84-419f-40d8-ba13-171848358df9" + "556edac8-882f-41a4-a984-ea31565dee1b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:43 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"selectTaskTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest\",\r\n \"eTag\": \"0x8D2EA2F535E6E41\",\r\n \"lastModified\": \"2015-11-11T00:30:39.5721281Z\",\r\n \"creationTime\": \"2015-11-11T00:30:39.5376953Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:30:39.5721281Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:30:39.5721281Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"selectTaskTest\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest\",\r\n \"eTag\": \"0x8D30A3DA9D8426E\",\r\n \"lastModified\": \"2015-12-21T19:33:54.8177006Z\",\r\n \"creationTime\": \"2015-12-21T19:33:54.7976845Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:33:54.8177006Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:33:54.8177006Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:30:39 GMT" + "Mon, 21 Dec 2015 19:33:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ba3eb77f-b6d2-4036-8fe4-34be72d21271" + "e2555d91-adae-42ad-8c9d-db92d876b40e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f7c73a84-419f-40d8-ba13-171848358df9" + "556edac8-882f-41a4-a984-ea31565dee1b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:30:44 GMT" + "Mon, 21 Dec 2015 19:33:57 GMT" ], "ETag": [ - "0x8D2EA2F535E6E41" + "0x8D30A3DA9D8426E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -630,26 +630,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTaskTest/tasks?$filter=id%20eq%20'testTask1'&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2sxJTI3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/selectTaskTest/tasks?$filter=id%20eq%20'testTask1'&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2sxJTI3JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9a8cdd78-d92f-4293-869b-a2314fed160c" + "b11dddd9-4c1c-475e-8847-3b98256745f1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:43 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2F541DD2F6\",\r\n \"creationTime\": \"2015-11-11T00:30:40.8264438Z\",\r\n \"lastModified\": \"2015-11-11T00:30:40.8264438Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:30:41.7411139Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:30:41.5831096Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:30:41.5831096Z\",\r\n \"endTime\": \"2015-11-11T00:30:41.7411139Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/selectTaskTest/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3DAA812C41\",\r\n \"creationTime\": \"2015-12-21T19:33:55.9246913Z\",\r\n \"lastModified\": \"2015-12-21T19:33:55.9246913Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:33:58.734172Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:33:58.5558216Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:33:58.5558216Z\",\r\n \"endTime\": \"2015-12-21T19:33:58.734172Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -658,19 +658,19 @@ "chunked" ], "request-id": [ - "08f889a9-5644-46aa-94e4-8bfc43126510" + "8188a14a-1345-4fa8-ac93-b95319d3babc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9a8cdd78-d92f-4293-869b-a2314fed160c" + "b11dddd9-4c1c-475e-8847-3b98256745f1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:30:44 GMT" + "Mon, 21 Dec 2015 19:33:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,22 +679,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTaskTest/tasks?$filter=id%20eq%20'testTask1'&$select=id%2Cstate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/selectTaskTest/tasks?$filter=id%20eq%20'testTask1'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3QvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2sxJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5044bc89-6666-4e1b-af12-8c30a55d650d" + "7f26aee7-17e7-440b-bd9b-3bd3d0dfecb8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:43 GMT" + "Mon, 21 Dec 2015 19:34:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -707,19 +707,19 @@ "chunked" ], "request-id": [ - "eca365eb-46a1-452c-b4bb-31a119c65baf" + "1bbb8b44-9dc9-4730-98e5-90984f03ae66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5044bc89-6666-4e1b-af12-8c30a55d650d" + "7f26aee7-17e7-440b-bd9b-3bd3d0dfecb8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:30:44 GMT" + "Mon, 21 Dec 2015 19:33:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -728,22 +728,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/selectTaskTest?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/selectTaskTest?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvc2VsZWN0VGFza1Rlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b13e5fa7-9e01-40b7-8589-a0718925d73b" + "c7d067ad-c05f-4a02-b8d7-96aeaab20576" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:30:43 GMT" + "Mon, 21 Dec 2015 19:34:00 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -753,19 +753,19 @@ "chunked" ], "request-id": [ - "4738f799-5a0c-4d72-915d-4c310b77c5e7" + "b49de715-aaeb-4fa5-bf8d-487267f7dfe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b13e5fa7-9e01-40b7-8589-a0718925d73b" + "c7d067ad-c05f-4a02-b8d7-96aeaab20576" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:30:44 GMT" + "Mon, 21 Dec 2015 19:33:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskById.json index 91c955456af7..4512ca8b6b83 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskById.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskById.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "91d1f552-6bd9-4b7a-b2e5-72366a87eb01" + "ac24f8d5-7c0f-4c19-8193-fdaa097e6904" ], "x-ms-correlation-request-id": [ - "91d1f552-6bd9-4b7a-b2e5-72366a87eb01" + "ac24f8d5-7c0f-4c19-8193-fdaa097e6904" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003202Z:91d1f552-6bd9-4b7a-b2e5-72366a87eb01" + "CENTRALUS:20151221T193152Z:ac24f8d5-7c0f-4c19-8193-fdaa097e6904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:01 GMT" + "Mon, 21 Dec 2015 19:31:52 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-request-id": [ - "b52dfe41-3e0d-44b3-a941-276923a08bc0" + "23eae448-53e7-4d36-9881-7bf3a3d8cb74" ], "x-ms-correlation-request-id": [ - "b52dfe41-3e0d-44b3-a941-276923a08bc0" + "23eae448-53e7-4d36-9881-7bf3a3d8cb74" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003207Z:b52dfe41-3e0d-44b3-a941-276923a08bc0" + "CENTRALUS:20151221T193158Z:23eae448-53e7-4d36-9881-7bf3a3d8cb74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:57 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:03 GMT" + "Mon, 21 Dec 2015 19:31:51 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f8938572-1e72-4ddb-ae88-ca9c1be19790" + "b09bdc0a-dd6b-4576-973d-0e6c4429c918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "e90c641e-742b-4fff-8079-3d775372bc7b" + "843e9f53-5cb2-4884-9924-ebf281ee0e23" ], "x-ms-correlation-request-id": [ - "e90c641e-742b-4fff-8079-3d775372bc7b" + "843e9f53-5cb2-4884-9924-ebf281ee0e23" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003203Z:e90c641e-742b-4fff-8079-3d775372bc7b" + "CENTRALUS:20151221T193153Z:843e9f53-5cb2-4884-9924-ebf281ee0e23" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:02 GMT" + "Mon, 21 Dec 2015 19:31:52 GMT" ], "ETag": [ - "0x8D2EA2F855BE6B8" + "0x8D30A3D608BA46D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "cb4f8774-c6d5-4b09-9807-ef1a62c338d1" + "6489e8a5-dcaf-487d-9299-1a68a5ecd6d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-request-id": [ - "26981d51-dec4-4efd-9cf1-8ea31a25a888" + "39d80479-51d9-42d9-bb44-bdc8948dc77d" ], "x-ms-correlation-request-id": [ - "26981d51-dec4-4efd-9cf1-8ea31a25a888" + "39d80479-51d9-42d9-bb44-bdc8948dc77d" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003207Z:26981d51-dec4-4efd-9cf1-8ea31a25a888" + "CENTRALUS:20151221T193158Z:39d80479-51d9-42d9-bb44-bdc8948dc77d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:57 GMT" ], "ETag": [ - "0x8D2EA2F8800ED29" + "0x8D30A3D633AC38F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "89f8f94e-115f-4a59-9939-e6ab2ddbf9ac" + "b8460e10-7f98-4241-bd16-b35e9435e2f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "db00bfda-19fe-4f70-900c-4a2eab165c95" + "7af6346a-b77c-45be-abba-198384812bce" ], "x-ms-correlation-request-id": [ - "db00bfda-19fe-4f70-900c-4a2eab165c95" + "7af6346a-b77c-45be-abba-198384812bce" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003203Z:db00bfda-19fe-4f70-900c-4a2eab165c95" + "CENTRALUS:20151221T193153Z:7af6346a-b77c-45be-abba-198384812bce" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:02 GMT" + "Mon, 21 Dec 2015 19:31:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "b0a53242-835f-4a80-a9ad-c050c2887468" + "acf984c0-a92f-47ba-9236-da2b111671e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "1ced05b4-602e-439b-bea8-c0bffe7720bf" + "7cb3a012-245a-42ac-b840-2d04486cffe1" ], "x-ms-correlation-request-id": [ - "1ced05b4-602e-439b-bea8-c0bffe7720bf" + "7cb3a012-245a-42ac-b840-2d04486cffe1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003207Z:1ced05b4-602e-439b-bea8-c0bffe7720bf" + "CENTRALUS:20151221T193158Z:7cb3a012-245a-42ac-b840-2d04486cffe1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"getTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "93" ], "client-request-id": [ - "5a4e6640-afa7-4643-ac44-0664f7e8be0e" + "d685ad76-3ed0-487e-ac5e-f0acaba971a2" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:03 GMT" + "Mon, 21 Dec 2015 19:31:53 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:04 GMT" + "Mon, 21 Dec 2015 19:31:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "35b06163-5c64-41c6-8af8-acddd47eae0c" + "408fb176-0c14-4105-b29a-e6f036bc9a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "5a4e6640-afa7-4643-ac44-0664f7e8be0e" + "d685ad76-3ed0-487e-ac5e-f0acaba971a2" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:32:05 GMT" + "Mon, 21 Dec 2015 19:31:53 GMT" ], "ETag": [ - "0x8D2EA2F85D2FDD8" + "0x8D30A3D611A8454" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/getTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/getTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "a77cfa19-7d62-46c9-b35e-262208a75391" + "9553e0dd-61ce-4ab3-8828-c48de867c662" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:04 GMT" + "Mon, 21 Dec 2015 19:31:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:05 GMT" + "Mon, 21 Dec 2015 19:31:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bd0187fe-5035-4287-8ad5-d43fb3975d8c" + "1dbf58cd-2ff4-45bb-9926-af02f0daf8d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a77cfa19-7d62-46c9-b35e-262208a75391" + "9553e0dd-61ce-4ab3-8828-c48de867c662" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/getTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:32:05 GMT" + "Mon, 21 Dec 2015 19:31:54 GMT" ], "ETag": [ - "0x8D2EA2F8686DAC2" + "0x8D30A3D621EC233" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/getTaskJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/getTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/getTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "23db2d1e-c16f-4a06-b80b-b20e1efa84b4" + "2eac6d9f-91db-4cb4-b656-029301db3e2b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/getTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2F8686DAC2\",\r\n \"creationTime\": \"2015-11-11T00:32:05.4008514Z\",\r\n \"lastModified\": \"2015-11-11T00:32:05.4008514Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:32:05.8794713Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:32:05.6949042Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:32:05.6949042Z\",\r\n \"endTime\": \"2015-11-11T00:32:05.8794713Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/getTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3D621EC233\",\r\n \"creationTime\": \"2015-12-21T19:31:54.4837683Z\",\r\n \"lastModified\": \"2015-12-21T19:31:54.4837683Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:31:57.8811753Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:31:57.7471728Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:31:57.7471728Z\",\r\n \"endTime\": \"2015-12-21T19:31:57.8811753Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:05 GMT" + "Mon, 21 Dec 2015 19:31:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6246ec9b-48ca-42b3-b31b-6af088c613a9" + "e631a197-c665-4c07-99dd-1f2c00647684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "23db2d1e-c16f-4a06-b80b-b20e1efa84b4" + "2eac6d9f-91db-4cb4-b656-029301db3e2b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:32:08 GMT" + "Mon, 21 Dec 2015 19:31:58 GMT" ], "ETag": [ - "0x8D2EA2F8686DAC2" + "0x8D30A3D621EC233" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/getTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/getTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "022c340a-0839-4304-8a7f-6c6274896871" + "e82776fc-d905-4350-8a3b-76292332fbea" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/getTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2F8686DAC2\",\r\n \"creationTime\": \"2015-11-11T00:32:05.4008514Z\",\r\n \"lastModified\": \"2015-11-11T00:32:05.4008514Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:32:05.8794713Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:32:05.6949042Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:32:05.6949042Z\",\r\n \"endTime\": \"2015-11-11T00:32:05.8794713Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/getTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3D621EC233\",\r\n \"creationTime\": \"2015-12-21T19:31:54.4837683Z\",\r\n \"lastModified\": \"2015-12-21T19:31:54.4837683Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:31:57.8811753Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:31:57.7471728Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:31:57.7471728Z\",\r\n \"endTime\": \"2015-12-21T19:31:57.8811753Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:05 GMT" + "Mon, 21 Dec 2015 19:31:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5bde5ee8-20a4-434f-8fcc-d5d8ea3cd2fc" + "d67940ac-2869-46c2-9367-2fc7709c1e5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "022c340a-0839-4304-8a7f-6c6274896871" + "e82776fc-d905-4350-8a3b-76292332fbea" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:32:08 GMT" + "Mon, 21 Dec 2015 19:31:58 GMT" ], "ETag": [ - "0x8D2EA2F8686DAC2" + "0x8D30A3D621EC233" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,22 +575,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/getTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/getTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZ2V0VGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a9941c4b-b13e-42a8-8435-9f182c939b46" + "9d689786-b222-4329-bc62-c3e2a2a27409" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:07 GMT" + "Mon, 21 Dec 2015 19:31:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -600,19 +600,19 @@ "chunked" ], "request-id": [ - "7223e352-283c-49e4-816e-8b86ea8f240f" + "b814bd3c-24c5-48f5-bc6d-550d3e8f8c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a9941c4b-b13e-42a8-8435-9f182c939b46" + "9d689786-b222-4329-bc62-c3e2a2a27409" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:32:09 GMT" + "Mon, 21 Dec 2015 19:31:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json new file mode 100644 index 000000000000..dedc3604d59d --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json @@ -0,0 +1,928 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "cb857d5b-9ab0-4731-a7e0-963b9d067a59" + ], + "x-ms-correlation-request-id": [ + "cb857d5b-9ab0-4731-a7e0-963b9d067a59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215529Z:cb857d5b-9ab0-4731-a7e0-963b9d067a59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "dcae30a8-9f8e-45fb-97e3-1f869d9d6cce" + ], + "x-ms-correlation-request-id": [ + "dcae30a8-9f8e-45fb-97e3-1f869d9d6cce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215541Z:dcae30a8-9f8e-45fb-97e3-1f869d9d6cce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:55:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "264cd279-1b9b-4112-b250-dc2b86a1733e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "80a12828-c559-4617-b2c5-0904a6359b63" + ], + "x-ms-correlation-request-id": [ + "80a12828-c559-4617-b2c5-0904a6359b63" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215531Z:80a12828-c559-4617-b2c5-0904a6359b63" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:31 GMT" + ], + "ETag": [ + "0x8D30A51723DD501" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:55:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "6f1a5680-da6f-4c96-bd9b-5556a7180231" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "88887c34-1c61-41c9-9699-09c93112d792" + ], + "x-ms-correlation-request-id": [ + "88887c34-1c61-41c9-9699-09c93112d792" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215541Z:88887c34-1c61-41c9-9699-09c93112d792" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:40 GMT" + ], + "ETag": [ + "0x8D30A51782846AB" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "569b032c-0a64-4d91-a9cf-d21fcdc6dbda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "8ea11bba-c725-4ad7-91b8-089f9b619734" + ], + "x-ms-correlation-request-id": [ + "8ea11bba-c725-4ad7-91b8-089f9b619734" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215531Z:8ea11bba-c725-4ad7-91b8-089f9b619734" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:31 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "85a1a856-e63f-4c38-b97e-51754e282575" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "1608f6b7-5fa5-46e5-ae6e-a23c577f17a1" + ], + "x-ms-correlation-request-id": [ + "1608f6b7-5fa5-46e5-ae6e-a23c577f17a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215541Z:1608f6b7-5fa5-46e5-ae6e-a23c577f17a1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/mpiPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e6e8b9eb-cfaf-4f2d-ae87-0f0ebdb183e9" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D30A502B08AC7C\",\r\n \"lastModified\": \"2015-12-21T21:46:22.5022076Z\",\r\n \"creationTime\": \"2015-12-21T21:46:22.5022076Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:46:22.5022076Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:47:56.9766089Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c set & MSMpiSetup.exe -unattend -force\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://pstestaccount.blob.core.windows.net/mpi/MSMpiSetup.exe?sv=2014-02-14&sr=c&sig=Opwz2%2FlVo9vl%2Bkq4FvjA0of4Ir3AU%2BlGRjGaug0APKc%3D&se=2015-12-22T07%3A46%3A21Z&sp=r\",\r\n \"filePath\": \"MSMpiSetup.exe\"\r\n }\r\n ],\r\n \"runElevated\": true,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:46:22 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bec28ec4-de43-4715-87a5-dcb2911f1e07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e6e8b9eb-cfaf-4f2d-ae87-0f0ebdb183e9" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:32 GMT" + ], + "ETag": [ + "0x8D30A502B08AC7C" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"listSubtaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"mpiPool\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "96" + ], + "client-request-id": [ + "e92e3d13-b33c-4180-b3c4-91e7b4d4ef20" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:32 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f019db44-4f9f-4504-a7fa-c7e172a43b87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e92e3d13-b33c-4180-b3c4-91e7b4d4ef20" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/job-1" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:32 GMT" + ], + "ETag": [ + "0x8D30A51737B364D" + ], + "Location": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/job-1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "210" + ], + "client-request-id": [ + "9eb2affe-d0d3-44fd-86f1-2953b6892b6f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b7c20b47-c24e-46a6-b701-d5ed5e3de760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "9eb2affe-d0d3-44fd-86f1-2953b6892b6f" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:32 GMT" + ], + "ETag": [ + "0x8D30A5173A4BC19" + ], + "Location": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ca4cccaa-3946-4662-b0f7-ae19532dceb0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A5173A4BC19\",\r\n \"creationTime\": \"2015-12-21T21:55:33.8176537Z\",\r\n \"lastModified\": \"2015-12-21T21:55:33.8176537Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:55:33.8176537Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d4dedfa0-5253-454f-8509-e350b67d9c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ca4cccaa-3946-4662-b0f7-ae19532dceb0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:34 GMT" + ], + "ETag": [ + "0x8D30A5173A4BC19" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4d3142b4-cafb-4a10-ad93-fd6648896333" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:42 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A5173A4BC19\",\r\n \"creationTime\": \"2015-12-21T21:55:33.8176537Z\",\r\n \"lastModified\": \"2015-12-21T21:55:33.8176537Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T21:55:37.813788Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T21:55:34.3341124Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T21:55:34.3341124Z\",\r\n \"endTime\": \"2015-12-21T21:55:37.813788Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_1-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_1-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_1-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\0\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_1-20151221t214756z/files/workitems/listsubtaskjob/job-1/testtask/0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "04a036dc-64a3-4ae9-9013-1199cb9b93c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4d3142b4-cafb-4a10-ad93-fd6648896333" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:42 GMT" + ], + "ETag": [ + "0x8D30A5173A4BC19" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4184aed5-fdd1-43e7-927b-fc8732eeb1ec" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "00c01196-f792-4dc6-9bbe-81e0f34d5eb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4184aed5-fdd1-43e7-927b-fc8732eeb1ec" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7deae889-ea39-4750-bab9-22fa22c54312" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:36 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "cdba39d2-58d1-49df-8611-b6114f3ddaf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7deae889-ea39-4750-bab9-22fa22c54312" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:36 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/JGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRlJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "937d328c-1445-4afe-82dc-e1dbb8130dde" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:38 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ac9b5da9-e470-4fe1-ae8a-4630cc8869f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "937d328c-1445-4afe-82dc-e1dbb8130dde" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c6bbdcad-877b-42da-8b77-e264a9a0b780" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:41 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"1601-01-01T00:02:16.437659Z\",\r\n \"endTime\": \"1601-01-01T00:02:20.1582014Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"1601-01-01T00:02:20.1582014Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:02:16.437659Z\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_2-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_2-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z/files/workitems/listsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"1601-01-01T00:02:16.7785987Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"1601-01-01T00:02:16.7785987Z\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_3-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_3-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z/files/workitems/listsubtaskjob/job-1/testtask/2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b19134b9-489b-4819-bab4-ef56e73b3ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c6bbdcad-877b-42da-8b77-e264a9a0b780" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7011d588-598b-4cfb-86e7-acc839bc37a1" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:43 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"1601-01-01T00:02:16.437659Z\",\r\n \"endTime\": \"1601-01-01T00:02:20.1582014Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"1601-01-01T00:02:20.1582014Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:02:16.437659Z\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_2-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_2-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z/files/workitems/listsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"1601-01-01T00:02:16.7785987Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"1601-01-01T00:02:16.7785987Z\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:00:00Z\",\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_3-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_3-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z/files/workitems/listsubtaskjob/job-1/testtask/2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "5948bace-c18b-43c6-9579-d954bfd2d6dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7011d588-598b-4cfb-86e7-acc839bc37a1" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c68aff99-9e75-4b37-975d-536d6b52ae6e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:55:43 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "aa771ac3-76a4-47ca-a7a3-cc1f4e12f10b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c68aff99-9e75-4b37-975d-536d6b52ae6e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:55:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json index a382fea783e5..1ca1c1f8d550 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14990" ], "x-ms-request-id": [ - "79977fa1-1193-4ddf-a398-52fc1e6e7cde" + "ec834bdc-1d3a-4bab-abf9-6fb36ebb118a" ], "x-ms-correlation-request-id": [ - "79977fa1-1193-4ddf-a398-52fc1e6e7cde" + "ec834bdc-1d3a-4bab-abf9-6fb36ebb118a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002908Z:79977fa1-1193-4ddf-a398-52fc1e6e7cde" + "CENTRALUS:20151221T193633Z:ec834bdc-1d3a-4bab-abf9-6fb36ebb118a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:07 GMT" + "Mon, 21 Dec 2015 19:36:33 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14989" ], "x-ms-request-id": [ - "eb406ef6-8827-4f62-8a98-e7bfb8d58229" + "aabbc416-ad12-4104-909b-161c1802c158" ], "x-ms-correlation-request-id": [ - "eb406ef6-8827-4f62-8a98-e7bfb8d58229" + "aabbc416-ad12-4104-909b-161c1802c158" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002914Z:eb406ef6-8827-4f62-8a98-e7bfb8d58229" + "CENTRALUS:20151221T193638Z:aabbc416-ad12-4104-909b-161c1802c158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:13 GMT" + "Mon, 21 Dec 2015 19:36:37 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:10 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "21c8a6cd-3261-433a-8c65-c93359b1cec7" + "67bc1734-623d-4393-b802-63615320a38d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14990" ], "x-ms-request-id": [ - "a5796c7f-1e8e-444e-b9dd-a5838a99e913" + "b85b8c7b-d9a3-450a-8ec5-23a5eefc324f" ], "x-ms-correlation-request-id": [ - "a5796c7f-1e8e-444e-b9dd-a5838a99e913" + "b85b8c7b-d9a3-450a-8ec5-23a5eefc324f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002909Z:a5796c7f-1e8e-444e-b9dd-a5838a99e913" + "CENTRALUS:20151221T193634Z:b85b8c7b-d9a3-450a-8ec5-23a5eefc324f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:09 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "ETag": [ - "0x8D2EA2F1E82EDAC" + "0x8D30A3E08D2F7D1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:15 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "02d47af1-c5a8-4d2a-b310-e28246bdeb9d" + "5cb363ae-eb2e-4037-b5fe-5eaeea72143b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14989" ], "x-ms-request-id": [ - "13788767-9587-490d-8981-2b40fa73e364" + "dfc5089b-d3ac-4b04-b13b-f40eafb137c1" ], "x-ms-correlation-request-id": [ - "13788767-9587-490d-8981-2b40fa73e364" + "dfc5089b-d3ac-4b04-b13b-f40eafb137c1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002914Z:13788767-9587-490d-8981-2b40fa73e364" + "CENTRALUS:20151221T193638Z:dfc5089b-d3ac-4b04-b13b-f40eafb137c1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:14 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "ETag": [ - "0x8D2EA2F213092C0" + "0x8D30A3E0B26223E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d0d71ac7-014e-4d22-b250-2369a67bacb7" + "adeb9249-d82b-4bb7-b47e-6cee990f9451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "ac2b4b64-c243-4c6f-8575-8e0bafb4958d" + "392a4b00-0740-4352-a077-12cf35845c38" ], "x-ms-correlation-request-id": [ - "ac2b4b64-c243-4c6f-8575-8e0bafb4958d" + "392a4b00-0740-4352-a077-12cf35845c38" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002910Z:ac2b4b64-c243-4c6f-8575-8e0bafb4958d" + "CENTRALUS:20151221T193634Z:392a4b00-0740-4352-a077-12cf35845c38" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:09 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "68e5c08a-eb5e-43d5-947d-caaf8be01324" + "18a34bbe-df74-43e4-a844-dfe83b93a311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-request-id": [ - "11cd047b-a101-409a-b22c-b55c602bef29" + "e2c7f6a3-51e0-4607-a477-cfcd15830559" ], "x-ms-correlation-request-id": [ - "11cd047b-a101-409a-b22c-b55c602bef29" + "e2c7f6a3-51e0-4607-a477-cfcd15830559" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002914Z:11cd047b-a101-409a-b22c-b55c602bef29" + "CENTRALUS:20151221T193638Z:e2c7f6a3-51e0-4607-a477-cfcd15830559" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:14 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "94" ], "client-request-id": [ - "30a397bf-5051-4b99-9087-3b940b04917f" + "f86f196b-d1fc-4310-b27e-3a3adb89c688" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:09 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:10 GMT" + "Mon, 21 Dec 2015 19:36:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ae5c9ade-308c-4b18-a755-36a515a7cb84" + "5786552f-92dd-4344-bb3b-486941617193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "30a397bf-5051-4b99-9087-3b940b04917f" + "f86f196b-d1fc-4310-b27e-3a3adb89c688" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:29:11 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "ETag": [ - "0x8D2EA2F1E4AF4C3" + "0x8D30A3E0861D5E7" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "84" ], "client-request-id": [ - "acc62d6e-5982-42e5-9790-5e58912dd1b8" + "8f11b728-eede-4223-bd8f-d1fb80ba6411" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:10 GMT" + "Mon, 21 Dec 2015 19:36:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:11 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "708adeb5-bd2b-4d72-b4b0-9806f238d7a5" + "e784ff6e-3a18-472d-92c3-f1c95ce8afe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "acc62d6e-5982-42e5-9790-5e58912dd1b8" + "8f11b728-eede-4223-bd8f-d1fb80ba6411" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask1" ], "Date": [ - "Wed, 11 Nov 2015 00:29:11 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "ETag": [ - "0x8D2EA2F1EFE902C" + "0x8D30A3E08E2C94E" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "84" ], "client-request-id": [ - "66994b05-5d35-4d5b-8ce1-f6a018459f7e" + "f10c5fc9-ad03-434b-8c15-e9b9f5c6bc92" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:10 GMT" + "Mon, 21 Dec 2015 19:36:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:11 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70eebb55-d19e-44fb-8b65-c907ec99484f" + "822cba83-d8e5-44f3-b750-b73f494ecf77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "66994b05-5d35-4d5b-8ce1-f6a018459f7e" + "f10c5fc9-ad03-434b-8c15-e9b9f5c6bc92" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask2" ], "Date": [ - "Wed, 11 Nov 2015 00:29:11 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "ETag": [ - "0x8D2EA2F1F202A08" + "0x8D30A3E0901EEAE" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask2" @@ -529,8 +529,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask3\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -541,35 +541,35 @@ "84" ], "client-request-id": [ - "75dce9bc-658b-47c6-83b9-03a6355aeed4" + "a7c68e89-8abc-4a64-9e57-cd722cbeddf7" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:10 GMT" + "Mon, 21 Dec 2015 19:36:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:12 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5a603f0e-8a6e-4245-890b-684db691aae7" + "a6199a5a-3e30-4969-92a0-016f9f471ff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "75dce9bc-658b-47c6-83b9-03a6355aeed4" + "a7c68e89-8abc-4a64-9e57-cd722cbeddf7" ], "DataServiceVersion": [ "3.0" @@ -578,10 +578,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask3" ], "Date": [ - "Wed, 11 Nov 2015 00:29:11 GMT" + "Mon, 21 Dec 2015 19:36:34 GMT" ], "ETag": [ - "0x8D2EA2F1F3BF449" + "0x8D30A3E091E4638" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask3" @@ -593,26 +593,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "678f4d6d-da11-44f4-adfd-17bb0d94f0ae" + "c3260c2a-16f1-4591-9ed9-849faa8b9b96" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:14 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2F1EFE902C\",\r\n \"creationTime\": \"2015-11-11T00:29:11.7023276Z\",\r\n \"lastModified\": \"2015-11-11T00:29:11.7023276Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:12.5441963Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:29:12.4161937Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:12.4161937Z\",\r\n \"endTime\": \"2015-11-11T00:29:12.5441963Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA2F1F202A08\",\r\n \"creationTime\": \"2015-11-11T00:29:11.9225352Z\",\r\n \"lastModified\": \"2015-11-11T00:29:11.9225352Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:12.4543583Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:29:12.3213589Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:12.3213589Z\",\r\n \"endTime\": \"2015-11-11T00:29:12.4543583Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D2EA2F1F3BF449\",\r\n \"creationTime\": \"2015-11-11T00:29:12.1046601Z\",\r\n \"lastModified\": \"2015-11-11T00:29:12.1046601Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:12.1046601Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3E08E2C94E\",\r\n \"creationTime\": \"2015-12-21T19:36:34.2702414Z\",\r\n \"lastModified\": \"2015-12-21T19:36:34.2702414Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:36.8398015Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:36:36.6998253Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:36:36.6998253Z\",\r\n \"endTime\": \"2015-12-21T19:36:36.8398015Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3E0901EEAE\",\r\n \"creationTime\": \"2015-12-21T19:36:34.4743598Z\",\r\n \"lastModified\": \"2015-12-21T19:36:34.4743598Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:34.4743598Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D30A3E091E4638\",\r\n \"creationTime\": \"2015-12-21T19:36:34.6601016Z\",\r\n \"lastModified\": \"2015-12-21T19:36:34.6601016Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:34.6601016Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -621,19 +621,19 @@ "chunked" ], "request-id": [ - "17b4b7ad-1c6b-4726-aa46-a47afe7eebfa" + "17fe8458-503e-4a8c-88d8-5cf0d418c89b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "678f4d6d-da11-44f4-adfd-17bb0d94f0ae" + "c3260c2a-16f1-4591-9ed9-849faa8b9b96" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:15 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,26 +642,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d2fe5377-fe25-458b-b1da-dccc8566391f" + "6acf3c49-b145-4f28-a242-c48586fa3bd1" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:14 GMT" + "Mon, 21 Dec 2015 19:36:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2F1EFE902C\",\r\n \"creationTime\": \"2015-11-11T00:29:11.7023276Z\",\r\n \"lastModified\": \"2015-11-11T00:29:11.7023276Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:12.5441963Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:29:12.4161937Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:12.4161937Z\",\r\n \"endTime\": \"2015-11-11T00:29:12.5441963Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA2F1F202A08\",\r\n \"creationTime\": \"2015-11-11T00:29:11.9225352Z\",\r\n \"lastModified\": \"2015-11-11T00:29:11.9225352Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:12.4543583Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:29:12.3213589Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:12.3213589Z\",\r\n \"endTime\": \"2015-11-11T00:29:12.4543583Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D2EA2F1F3BF449\",\r\n \"creationTime\": \"2015-11-11T00:29:12.1046601Z\",\r\n \"lastModified\": \"2015-11-11T00:29:12.1046601Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:12.1046601Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3E08E2C94E\",\r\n \"creationTime\": \"2015-12-21T19:36:34.2702414Z\",\r\n \"lastModified\": \"2015-12-21T19:36:34.2702414Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:36.8398015Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:36:36.6998253Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:36:36.6998253Z\",\r\n \"endTime\": \"2015-12-21T19:36:36.8398015Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3E0901EEAE\",\r\n \"creationTime\": \"2015-12-21T19:36:34.4743598Z\",\r\n \"lastModified\": \"2015-12-21T19:36:34.4743598Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:34.4743598Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D30A3E091E4638\",\r\n \"creationTime\": \"2015-12-21T19:36:34.6601016Z\",\r\n \"lastModified\": \"2015-12-21T19:36:34.6601016Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:34.6601016Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -670,19 +670,19 @@ "chunked" ], "request-id": [ - "7c36eea8-936f-4ad1-aef0-e3fdbd887bce" + "8079403b-73da-4172-90bd-93fb02198025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d2fe5377-fe25-458b-b1da-dccc8566391f" + "6acf3c49-b145-4f28-a242-c48586fa3bd1" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:15 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -691,53 +691,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2bb83fab-dd03-4319-9cf8-3ef02d035e3d" + "4648061c-b710-4674-a7b1-1da6124d9337" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:14 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"listTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob\",\r\n \"eTag\": \"0x8D2EA2F1E4AF4C3\",\r\n \"lastModified\": \"2015-11-11T00:29:10.5252547Z\",\r\n \"creationTime\": \"2015-11-11T00:29:10.5072545Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:10.5252547Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:10.5252547Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"listTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskJob\",\r\n \"eTag\": \"0x8D30A3E0861D5E7\",\r\n \"lastModified\": \"2015-12-21T19:36:33.4251495Z\",\r\n \"creationTime\": \"2015-12-21T19:36:33.4011149Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:36:33.4251495Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:36:33.4251495Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:10 GMT" + "Mon, 21 Dec 2015 19:36:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "99ef2b7d-0fb5-4bb8-a391-d6317927f614" + "7b61c944-6a36-4d95-b3f6-da7bf6d83fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2bb83fab-dd03-4319-9cf8-3ef02d035e3d" + "4648061c-b710-4674-a7b1-1da6124d9337" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:15 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "ETag": [ - "0x8D2EA2F1E4AF4C3" + "0x8D30A3E0861D5E7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -746,22 +746,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/listTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "878c30f6-6bf8-4eee-aefa-8fc6f7a4d32b" + "256dbafd-3770-4a8f-99bb-9012d47b2a31" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:15 GMT" + "Mon, 21 Dec 2015 19:36:39 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -771,19 +771,19 @@ "chunked" ], "request-id": [ - "310fa304-1f8b-4723-b738-e466a6a2da55" + "b7e07e6a-ecdb-43c4-b55a-79b997bf50aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "878c30f6-6bf8-4eee-aefa-8fc6f7a4d32b" + "256dbafd-3770-4a8f-99bb-9012d47b2a31" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:16 GMT" + "Mon, 21 Dec 2015 19:36:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListSubtasksWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListSubtasksWithMaxCount.json new file mode 100644 index 000000000000..b571656b504e --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListSubtasksWithMaxCount.json @@ -0,0 +1,6514 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "0f97fd57-0902-4e73-b196-58cb629a459a" + ], + "x-ms-correlation-request-id": [ + "0f97fd57-0902-4e73-b196-58cb629a459a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215021Z:0f97fd57-0902-4e73-b196-58cb629a459a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "6acc30a6-a11b-4d5f-8124-1c49f57b6ef2" + ], + "x-ms-correlation-request-id": [ + "6acc30a6-a11b-4d5f-8124-1c49f57b6ef2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215448Z:6acc30a6-a11b-4d5f-8124-1c49f57b6ef2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:50:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "b713e6a7-3457-49df-8afd-b9e1788a0221" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "e0bd7f49-c8cd-453f-b2d5-5e9eaa0c768f" + ], + "x-ms-correlation-request-id": [ + "e0bd7f49-c8cd-453f-b2d5-5e9eaa0c768f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215023Z:e0bd7f49-c8cd-453f-b2d5-5e9eaa0c768f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:22 GMT" + ], + "ETag": [ + "0x8D30A50B9E4D62E" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"batchtest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"batchtest.brazilsouth.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20\r\n },\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:54:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "cf3feb57-790f-4ac1-bfce-4bc8ddbf34b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "ddc3275e-6f7f-4f0a-b769-feff6e481f3e" + ], + "x-ms-correlation-request-id": [ + "ddc3275e-6f7f-4f0a-b769-feff6e481f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215450Z:ddc3275e-6f7f-4f0a-b769-feff6e481f3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:50 GMT" + ], + "ETag": [ + "0x8D30A515A06A78D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "aeef47a0-9c95-4ffc-9c17-c3d6c9342693" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9e7db6df-abf7-4a88-8eba-1d41c3a28777" + ], + "x-ms-correlation-request-id": [ + "9e7db6df-abf7-4a88-8eba-1d41c3a28777" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215023Z:9e7db6df-abf7-4a88-8eba-1d41c3a28777" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest/listKeys?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYyNDEzNTUtYmI5NS00NmE5LWJhNmMtNDJiNTU0ZDcxOTI1L3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYnJhemlsc291dGgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"batchtest\",\r\n \"primary\": \"trODV8QhP+nvTMmFozc8ijvg14/Ln5VZDV1rZ8fNPkPCKNWwaNaUWKz5ja4k/P+scsUkPo9HJbQtuej+qhW4Tw==\",\r\n \"secondary\": \"2UDz1YAKp81l9TeJerWrs4GGe3iXz69jAoJOFLK8OOhNmiFxG7ZPC+j8W+quWTVOBqO8xEHRLiXhMQ6yqiPUEA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "347fb189-219d-4431-9eb0-12507503713b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "0bbf8675-bbef-43fc-aab7-a8d56dc0f725" + ], + "x-ms-correlation-request-id": [ + "0bbf8675-bbef-43fc-aab7-a8d56dc0f725" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T215451Z:0bbf8675-bbef-43fc-aab7-a8d56dc0f725" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:50 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/mpiPool?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ccdce480-7df5-4aa8-9118-7e49e69cc15e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:23 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D30A502B08AC7C\",\r\n \"lastModified\": \"2015-12-21T21:46:22.5022076Z\",\r\n \"creationTime\": \"2015-12-21T21:46:22.5022076Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:46:22.5022076Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-12-21T21:47:56.9766089Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c set & MSMpiSetup.exe -unattend -force\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://pstestaccount.blob.core.windows.net/mpi/MSMpiSetup.exe?sv=2014-02-14&sr=c&sig=Opwz2%2FlVo9vl%2Bkq4FvjA0of4Ir3AU%2BlGRjGaug0APKc%3D&se=2015-12-22T07%3A46%3A21Z&sp=r\",\r\n \"filePath\": \"MSMpiSetup.exe\"\r\n }\r\n ],\r\n \"runElevated\": true,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:46:22 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "29da0170-c16a-48ea-90be-de887b797e8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ccdce480-7df5-4aa8-9118-7e49e69cc15e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:24 GMT" + ], + "ETag": [ + "0x8D30A502B08AC7C" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"maxCountSubtaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"mpiPool\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "100" + ], + "client-request-id": [ + "76e88310-5e20-4df4-a08c-8a7887c83f8b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:24 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "73abfed8-19be-43f3-9dbc-18ba54b689cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "76e88310-5e20-4df4-a08c-8a7887c83f8b" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/job-1" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "ETag": [ + "0x8D30A50BBD3B507" + ], + "Location": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/job-1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "210" + ], + "client-request-id": [ + "90c3e851-3c6c-4680-a4e8-92514f8fae1c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "97e27497-5e36-4d27-a527-d7bd61abff97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "90c3e851-3c6c-4680-a4e8-92514f8fae1c" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/maxCountSubtaskJob/tasks/testTask" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "ETag": [ + "0x8D30A50BC0019A4" + ], + "Location": [ + "https://batchtest.brazilsouth.batch.azure.com/jobs/maxCountSubtaskJob/tasks/testTask" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5cc027e0-8584-4a66-b83f-ac0ac07d3abb" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/maxCountSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A50BC0019A4\",\r\n \"creationTime\": \"2015-12-21T21:50:25.7156516Z\",\r\n \"lastModified\": \"2015-12-21T21:50:25.7156516Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T21:50:25.7156516Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b436b36e-df42-4516-9421-a31ec7bc04d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5cc027e0-8584-4a66-b83f-ac0ac07d3abb" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "ETag": [ + "0x8D30A50BC0019A4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "77b19a02-9b84-4226-b1fd-30047ae5279d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://batchtest.brazilsouth.batch.azure.com/jobs/maxCountSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A50BC0019A4\",\r\n \"creationTime\": \"2015-12-21T21:50:25.7156516Z\",\r\n \"lastModified\": \"2015-12-21T21:50:25.7156516Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T21:54:40.3610193Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T21:54:39.1353494Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"runElevated\": false,\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T21:54:39.1353494Z\",\r\n \"endTime\": \"2015-12-21T21:54:40.3610193Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_1-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_1-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_1-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\maxcountsubtaskjob\\\\job-1\\\\testtask\\\\0\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_1-20151221t214756z/files/workitems/maxcountsubtaskjob/job-1/testtask/0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ff24cd53-2b83-4973-936f-d363e9728a2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "77b19a02-9b84-4226-b1fd-30047ae5279d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:51 GMT" + ], + "ETag": [ + "0x8D30A50BC0019A4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "03967b28-374e-4286-a864-fc43e8e653ff" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:25 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ca492834-475f-477c-8be4-8299c50019a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "03967b28-374e-4286-a864-fc43e8e653ff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2bffe988-b197-4222-bb0f-2aa5a08bb379" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:28 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "27a80d12-b261-4aba-b0ee-3be967b7a70f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2bffe988-b197-4222-bb0f-2aa5a08bb379" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "406f86d5-3913-487d-8cfa-acf4cc45e88e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:30 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a257148c-9127-4e04-b17b-54770795064d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "406f86d5-3913-487d-8cfa-acf4cc45e88e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:30 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b8c82910-07ba-4bda-9e61-be1026078762" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:32 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a66a1b5e-a34e-4b5a-918d-dda4ffe734fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b8c82910-07ba-4bda-9e61-be1026078762" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a5da767b-028c-4ba2-8f59-d4799434b8a0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a07f6a97-96a8-4307-b386-5733b0ac0b26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "a5da767b-028c-4ba2-8f59-d4799434b8a0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "eed8418f-70e2-4fb8-96a5-dd6892b001aa" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:37 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b93b2d3e-19a5-4ec7-8651-23c6a7d83e8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "eed8418f-70e2-4fb8-96a5-dd6892b001aa" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1827fe1b-7b57-460e-899d-451353353b0e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:39 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "00330070-9618-46e1-985c-cd96767fdc50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1827fe1b-7b57-460e-899d-451353353b0e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3d5119d7-5623-4a90-93d7-029be4c776ec" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:41 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "26389ca2-a2cd-4127-870e-6579998b542d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3d5119d7-5623-4a90-93d7-029be4c776ec" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b49eade4-b39f-4441-bb5f-221258649b52" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:43 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9c1c22ae-aaa6-403e-a7b6-e907612f8b9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b49eade4-b39f-4441-bb5f-221258649b52" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2b15d3c0-d55f-4623-aa92-2d0feecdd423" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:46 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bfe8bf4f-07e7-4bbd-bfc0-5e97077d4196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2b15d3c0-d55f-4623-aa92-2d0feecdd423" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f651aea6-9b5c-47ec-81e8-9847f7f08b97" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:48 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "2973d150-eb97-4137-91b5-a4910f715b42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f651aea6-9b5c-47ec-81e8-9847f7f08b97" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "838feb29-6b7d-48c2-94d7-7cdb7bf443f9" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:50 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7d40dd74-704b-4a79-86ed-352eae391d9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "838feb29-6b7d-48c2-94d7-7cdb7bf443f9" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:50 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "13d31d70-e424-4d58-950c-7e70f81c4390" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c736a260-9781-4b12-af46-906e8edf9e50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "13d31d70-e424-4d58-950c-7e70f81c4390" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:53 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bd5a4845-e6f0-41d2-be2e-8ad61411ca28" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:54 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6477e589-4eb7-4975-a533-f9b3bebe522a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "bd5a4845-e6f0-41d2-be2e-8ad61411ca28" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9390b526-4bf3-49fa-975d-d7b519c0d609" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:57 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f42f5d0d-3cae-4a94-beeb-281de2b97a99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "9390b526-4bf3-49fa-975d-d7b519c0d609" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b8f3216b-ffb5-49ae-91ef-3d7d4e8d6bc0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:50:59 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b016ab5d-e6e3-4943-9b9c-a268478f1025" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b8f3216b-ffb5-49ae-91ef-3d7d4e8d6bc0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:50:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3c83d81b-496f-44a5-b811-978abe073198" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:01 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "2be9e8ac-94a4-4e47-80d0-520c70a3c9bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3c83d81b-496f-44a5-b811-978abe073198" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0f0cccdf-e782-4c23-a57b-bbb700ce06de" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:03 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "886c26be-ee18-48c1-86f8-736a883e6a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0f0cccdf-e782-4c23-a57b-bbb700ce06de" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "dd3abe45-c199-4960-8c57-f01575a78c7b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:06 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "72f45650-06a8-4ca8-a6e6-843304dd4bf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "dd3abe45-c199-4960-8c57-f01575a78c7b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "938e0b64-cf55-47e7-a360-35a95bc09cc0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:08 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a3fd1729-2a05-4d4e-aac3-c7ecb60d8a75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "938e0b64-cf55-47e7-a360-35a95bc09cc0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "aa7d4f97-5ff6-4ae0-82ee-1ca9d82ce8db" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:10 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "849fb26f-ab94-4912-b688-fedc5963b1da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "aa7d4f97-5ff6-4ae0-82ee-1ca9d82ce8db" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "071a3b85-3351-45cf-ba82-aa54bf73601b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:12 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "460048e5-0c7c-440d-a8fa-0a87dcd80ab0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "071a3b85-3351-45cf-ba82-aa54bf73601b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "17e4710b-67d2-4d4c-8a49-2570db3e8407" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:15 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7b8fc9a6-9c87-4ca4-8e1f-4a070a026dd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "17e4710b-67d2-4d4c-8a49-2570db3e8407" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "93e3d2ab-8d11-4132-b5c5-e4ca0df4338a" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:17 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fc2391d1-2ceb-4ca9-9e11-40a6749053cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "93e3d2ab-8d11-4132-b5c5-e4ca0df4338a" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2f46fabe-8c9f-4220-b853-c949d339a7ac" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:19 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e6cf71ce-c2e5-4c42-87c9-c05ca612942c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2f46fabe-8c9f-4220-b853-c949d339a7ac" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3dc5be55-c2d6-4076-9ca3-57ab2c20a03c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:21 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "99292005-ec4e-42fa-8210-23c8e4d418a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3dc5be55-c2d6-4076-9ca3-57ab2c20a03c" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bc62f13a-4029-4a05-8b94-6b06a9ff28a6" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:23 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ff0a8b38-6746-42f0-82cb-2c8a41df3d46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "bc62f13a-4029-4a05-8b94-6b06a9ff28a6" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:24 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8817a81c-8c90-4a1c-bc75-ef96885f2eef" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:26 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "451b9c04-4be6-4108-8582-67c6f6b3a2d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8817a81c-8c90-4a1c-bc75-ef96885f2eef" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "21d91731-83ff-4575-9fac-0829d81d40e4" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:28 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9a490b26-e0ad-4dc4-856f-150e4666c5b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "21d91731-83ff-4575-9fac-0829d81d40e4" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0e7fb996-5d51-4576-bde6-e09ce92f4e09" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:30 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fb94a639-8cbf-4c22-91a6-a7429f490cb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0e7fb996-5d51-4576-bde6-e09ce92f4e09" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:31 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1e6e161e-b316-4bca-840b-62f4befcd7dc" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:32 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "78bd8fa5-8b27-443c-99ed-60a3f0bb416d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1e6e161e-b316-4bca-840b-62f4befcd7dc" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2a3f4887-77bd-43bc-8969-6f735a81c2fb" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:35 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "18d10ce5-71fd-4509-bfde-21ef8d51ee88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2a3f4887-77bd-43bc-8969-6f735a81c2fb" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8dd3cb16-f970-40d8-abee-a9d164cb1629" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:37 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7899317c-7f12-4ceb-a049-156c1d394cd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8dd3cb16-f970-40d8-abee-a9d164cb1629" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c77d5d49-7c46-4fc3-8850-d2f0a7ed0568" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:39 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "1f7e96d4-4015-48dd-ad0e-10ad8b8b7669" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c77d5d49-7c46-4fc3-8850-d2f0a7ed0568" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7707fbe8-e629-43ee-a7ed-918f2063605d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:41 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fde47023-5669-43be-bf7f-7aceb3b47dda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7707fbe8-e629-43ee-a7ed-918f2063605d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "401a6e04-2198-4bd8-a7af-7630308e57eb" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d2dbdd2d-40a5-45ca-86fb-4d74a388c043" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "401a6e04-2198-4bd8-a7af-7630308e57eb" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a724fe09-3664-4d38-a847-d0f86e7e17f2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:46 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "49ac24dc-cb24-4128-9177-7c8e500eda50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "a724fe09-3664-4d38-a847-d0f86e7e17f2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e77cbebe-f12c-41da-85bb-db2bfdbc147f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:48 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "738437ed-34ed-4c1c-84c9-912063e500e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e77cbebe-f12c-41da-85bb-db2bfdbc147f" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1a5573d9-2feb-4f61-b4f0-c59721a9372e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:50 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8de08996-4456-43b6-a087-263fdc118fa7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1a5573d9-2feb-4f61-b4f0-c59721a9372e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4dbe693e-2691-4308-a294-5478a50570fc" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0f39d62f-88be-4701-a7c7-ba463a8e7e2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4dbe693e-2691-4308-a294-5478a50570fc" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:53 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f60832e6-777e-4fe7-a8be-07a1fe29d751" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:55 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4973d798-c821-45c7-9343-92ffd3078f6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f60832e6-777e-4fe7-a8be-07a1fe29d751" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2737e187-704d-42e5-ac8d-dfa6e0858dba" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:57 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b35cd53d-80c8-431b-a092-7a87a372029e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2737e187-704d-42e5-ac8d-dfa6e0858dba" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4ce88999-f902-4d62-b297-80d7d530b966" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:51:59 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "51fd2b1f-c732-4457-8f6b-f0622a68a6bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4ce88999-f902-4d62-b297-80d7d530b966" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:51:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b00da15e-3804-4179-947a-941b4ca164b5" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:01 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8ed5eb59-ead8-4538-8304-51c0f7bece33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b00da15e-3804-4179-947a-941b4ca164b5" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "391f0689-3206-48e3-b160-5b073f529372" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "02af42c4-3397-4da7-8768-de4ed8b94a1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "391f0689-3206-48e3-b160-5b073f529372" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "04cdf456-d4f4-4999-82d2-8a7e395b3fc0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:06 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "cd81c0c8-4928-4b5b-a220-45f050d08861" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "04cdf456-d4f4-4999-82d2-8a7e395b3fc0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e3a9d72c-a874-41e7-95c0-06e37f00ce58" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:08 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "04ff6806-2f7f-46df-a0e2-60902eb7c2d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e3a9d72c-a874-41e7-95c0-06e37f00ce58" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9c98ab49-e1a9-4292-b667-b024d9c94d40" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:10 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f7265627-f66b-4d4d-b3de-4d800700537a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "9c98ab49-e1a9-4292-b667-b024d9c94d40" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3505ab2b-09c8-4b1a-9f3e-7d9033b9e836" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:13 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c3d0c4a7-3f4c-4967-a64f-0380e36724b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3505ab2b-09c8-4b1a-9f3e-7d9033b9e836" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cf5e0d92-9855-439b-b7c4-39254f0b26f7" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:15 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "caf2179a-f405-4b72-a6b5-d35fec3fe55c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "cf5e0d92-9855-439b-b7c4-39254f0b26f7" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "08a86aa0-1fc5-4601-9beb-520d816f854e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:17 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "954d579c-d433-48bf-9e29-349da31a8a9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "08a86aa0-1fc5-4601-9beb-520d816f854e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d586d025-5026-4ebf-9c2e-027685d7b7bd" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:19 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7d4175c4-07c1-455e-8118-2e3b9c64e480" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d586d025-5026-4ebf-9c2e-027685d7b7bd" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4541c9ee-debd-4782-b523-f84db91f5266" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:21 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "abd20534-a6f5-48ac-acdd-4d7cf4691bac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4541c9ee-debd-4782-b523-f84db91f5266" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fd4a5e08-f5e4-4e87-bd20-44bde24a2b27" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:24 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "86fa81b6-1ea0-4aaf-a162-a990babfd379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "fd4a5e08-f5e4-4e87-bd20-44bde24a2b27" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:24 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "58b988b6-1ee4-4343-bec5-8eda84be3ef3" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:26 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "acf33b28-4dd9-4782-8fe1-1b3745e60ba0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "58b988b6-1ee4-4343-bec5-8eda84be3ef3" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "484e21db-2bfe-4fe1-87c4-83e771da56be" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:28 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6453ca02-c9c7-4d6f-8da7-fee602912aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "484e21db-2bfe-4fe1-87c4-83e771da56be" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:29 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "08bf4b35-4c08-41a0-bf87-67a3bfb68723" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:30 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "5abcb30c-4994-4cf1-a0a3-5d2f96be297b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "08bf4b35-4c08-41a0-bf87-67a3bfb68723" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:31 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c4807346-733b-446e-b41b-d3dd1ad22a75" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0390266f-e77c-49d3-9d5d-b436fc802fd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c4807346-733b-446e-b41b-d3dd1ad22a75" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7ac13e58-5069-4690-be57-8315acbf00bc" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:35 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9fcc96e9-fe4f-409e-9e4a-596febbc6db1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7ac13e58-5069-4690-be57-8315acbf00bc" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4142fe12-b1fc-4516-a15f-97bb59d52d37" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:37 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fcbc0dc6-e355-4f19-b68b-20fca893905c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4142fe12-b1fc-4516-a15f-97bb59d52d37" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4ff94765-4977-4714-bbc8-ec896a60c0b7" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:39 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8a2b0307-427a-4c5e-a6f6-0c913258efc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4ff94765-4977-4714-bbc8-ec896a60c0b7" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "eb0d9ca1-e7ff-4389-9ad6-a5d4f9622768" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:42 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "055f3f99-d26d-4440-b3e3-c4f8f91db2ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "eb0d9ca1-e7ff-4389-9ad6-a5d4f9622768" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1aff6ead-fb22-4089-9987-39dbf2109fbe" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "dce20a09-b7d1-4359-aa71-fba620b52c07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1aff6ead-fb22-4089-9987-39dbf2109fbe" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac968725-679c-408d-a940-95de0644d282" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:46 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0c06f7f3-822b-40ee-a163-bf13c883dc03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ac968725-679c-408d-a940-95de0644d282" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8dfc8f8c-6b10-4f18-8ff6-375ec8394595" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:49 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "90d14c2a-ec6e-44a8-a385-9d5c930235aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8dfc8f8c-6b10-4f18-8ff6-375ec8394595" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5d24e665-a013-4fae-bafd-d49b0e8e0ad4" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:51 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "90466eb7-1bec-4055-b5ac-0df8caef2c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5d24e665-a013-4fae-bafd-d49b0e8e0ad4" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:50 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7891a511-62c2-4608-a8b6-ca1213249506" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:53 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a8238f7f-2b93-4fb4-bcab-bf16f1de3041" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7891a511-62c2-4608-a8b6-ca1213249506" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:52 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5e2aa37a-c186-4231-a1d3-d87ebfc75dea" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:56 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4c653ad9-9dbc-4d01-b2ad-fb147e99a283" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5e2aa37a-c186-4231-a1d3-d87ebfc75dea" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "77fd714e-7bc1-47fa-a86e-862f0806c928" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:52:58 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "939aa3a4-2c23-4152-a101-e9ebf4723e3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "77fd714e-7bc1-47fa-a86e-862f0806c928" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3afa1f8f-c07a-4d13-aabf-73d7675720c7" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:00 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "427fa045-80ee-4679-aca1-0ebb61d29661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3afa1f8f-c07a-4d13-aabf-73d7675720c7" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:52:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "84c5a10f-4622-49e4-9d80-a9f946e76a9e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:02 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fb746855-ad67-4d0b-8960-7653ab0879b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "84c5a10f-4622-49e4-9d80-a9f946e76a9e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "576ac47a-a8aa-4cb4-81d8-e0ecc1c2c07b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "62553acf-7e70-4bc3-b779-40eb9d7d5acf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "576ac47a-a8aa-4cb4-81d8-e0ecc1c2c07b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5470eb17-9872-4c79-af13-14b997d0fa03" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:07 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "232d67a6-ecfb-497c-be17-9cf1d0cabbaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5470eb17-9872-4c79-af13-14b997d0fa03" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "042d4bbc-abef-4d16-9eab-5ac651838d06" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:09 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "709d6275-762f-4593-a58b-9023eb5ad382" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "042d4bbc-abef-4d16-9eab-5ac651838d06" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4b3f5d42-3adc-42d2-b77c-30eaf0a2907e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:11 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9a365587-0d06-43ac-829e-5f5b838c5d06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4b3f5d42-3adc-42d2-b77c-30eaf0a2907e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8cfaf015-ddf7-410a-b0c2-d82dd2222fb1" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:13 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "21d23391-6fa4-4dab-ba77-315051819b6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8cfaf015-ddf7-410a-b0c2-d82dd2222fb1" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6372d4b9-7b25-480c-81ad-3b1abfeb2ca0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:16 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "07a6e6e1-ad07-46d1-8d6e-c5b4e193e344" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "6372d4b9-7b25-480c-81ad-3b1abfeb2ca0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "626791c4-a8b3-4e0f-910c-d5acf8ee75e2" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:18 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8b9af8ab-06fc-4fc7-b843-977e74148bd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "626791c4-a8b3-4e0f-910c-d5acf8ee75e2" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "90252f95-a249-4471-a242-e4008740aa6f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d58bb931-1b1a-4707-85ab-af0a7c3bebd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "90252f95-a249-4471-a242-e4008740aa6f" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5ffeb11b-bc74-490f-900e-268df831041f" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:22 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8e66998e-4b04-4bde-8d38-5b6627e6b9f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "5ffeb11b-bc74-490f-900e-268df831041f" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f6bc3ead-8e13-4540-a31b-ae6d9d9d18fd" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:24 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8ba87e6d-aaad-45bd-a800-b218fd3021ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f6bc3ead-8e13-4540-a31b-ae6d9d9d18fd" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:24 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7d92f908-ecb9-4255-84de-405ed7ab46cd" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bf2dba36-a168-4873-950f-b4a54b63055c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7d92f908-ecb9-4255-84de-405ed7ab46cd" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d2016585-ca33-4658-b0f0-5b29e02b9937" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:29 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "2ff0caaa-0941-49f4-ae30-b347acefa9ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d2016585-ca33-4658-b0f0-5b29e02b9937" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d7234ecb-baf1-4397-b758-951599ea151d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "49bedbfb-a61e-4a9c-ab54-672efeac0f4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d7234ecb-baf1-4397-b758-951599ea151d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:30 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3ee23452-64c2-4043-ac60-954d8422fdf5" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "54095dae-3da7-4fa0-8eda-dc54c6b0c424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3ee23452-64c2-4043-ac60-954d8422fdf5" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "dd58c70d-44a4-404c-9dea-028797866740" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:36 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "2a8f7bbd-bf4b-41d5-974a-4953653ebc5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "dd58c70d-44a4-404c-9dea-028797866740" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "18c1074b-b50b-4370-aaa0-18db8efc426b" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:38 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7a506c57-214b-4cfc-82b7-6eb09de41b53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "18c1074b-b50b-4370-aaa0-18db8efc426b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e70a998f-e646-4f00-a3d2-e11f607d54df" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:40 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e3200375-ff2b-4d60-a6f1-d7f8a11aea6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e70a998f-e646-4f00-a3d2-e11f607d54df" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "79470e64-2aa7-4ca6-807e-0b76f8f58ad6" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:42 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f7b6a276-46f5-479c-846e-69dfa687529e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "79470e64-2aa7-4ca6-807e-0b76f8f58ad6" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8cf73590-15e2-4d8e-8f69-6844fa3658f0" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:45 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9b4ba744-d67c-4001-8d2e-869bbbf05d12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8cf73590-15e2-4d8e-8f69-6844fa3658f0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "52e81148-8064-4059-ae12-ee70b4014580" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:47 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6720f5b0-4231-4ea4-ae5b-8df57ce44edc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "52e81148-8064-4059-ae12-ee70b4014580" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e6866d91-7de7-4aff-9763-98c27e4357a5" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:49 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bc92dba3-c035-4b39-b29c-2134c3597978" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e6866d91-7de7-4aff-9763-98c27e4357a5" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9874e068-8245-433e-9f38-64c110da1bdf" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:51 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4aafd41d-9c50-4aa0-b4aa-c60972a3ba43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "9874e068-8245-433e-9f38-64c110da1bdf" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:50 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b741834c-a446-4a8d-bb49-50790f3a462e" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:53 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "090ecc91-c152-4aed-8eeb-c8f69157c9c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b741834c-a446-4a8d-bb49-50790f3a462e" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:53 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "58dc0286-8e71-43f9-a2cd-60f1df55faec" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:56 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d94e5a8f-bfd1-4bfb-94a8-66b3343463a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "58dc0286-8e71-43f9-a2cd-60f1df55faec" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8b75228c-64dc-4884-94a2-b13f9381af14" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:53:58 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fe5b3d8a-5160-440b-9102-dc2128db7d25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8b75228c-64dc-4884-94a2-b13f9381af14" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "910e14df-9f58-4af2-abdb-ecdeace4bf06" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:00 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "aa1bd21c-0f21-483e-9b80-43ff3f8bc820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "910e14df-9f58-4af2-abdb-ecdeace4bf06" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:53:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f0e52aa0-df41-4f7a-98f4-d4efe93da243" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:02 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "615e90e7-c9fd-4f54-86d3-30ddd2c0a4c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f0e52aa0-df41-4f7a-98f4-d4efe93da243" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a1f57acb-7480-477e-a98c-799d05d61483" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:05 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ab4a26c0-f642-4edb-b3ae-0e18463cd771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "a1f57acb-7480-477e-a98c-799d05d61483" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c5758855-4a50-40cb-b396-35087eee4bd4" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:07 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8982a18b-d743-4c8a-ab1b-4de98bebd9c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c5758855-4a50-40cb-b396-35087eee4bd4" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ee682443-9b7b-4b7c-b983-3e9a4cb68779" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:09 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e3316c0b-1226-401a-b2c2-ceaabbd74d8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ee682443-9b7b-4b7c-b983-3e9a4cb68779" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1dc79d74-6dc0-40a8-968b-13dbafff64f3" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:11 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7e0ed8ec-df33-4975-93ea-87d54c8ad814" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1dc79d74-6dc0-40a8-968b-13dbafff64f3" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "edfed1b9-40cb-4a4a-b377-b9ac0b62a401" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:13 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a534ab95-59c9-4a41-b95a-d6e46cb18b31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "edfed1b9-40cb-4a4a-b377-b9ac0b62a401" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "accae3de-9ec4-4848-a817-a6bdaf369dc9" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:16 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f3204800-916a-4b22-abbb-a95dffdf9966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "accae3de-9ec4-4848-a817-a6bdaf369dc9" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b8e5dc12-9556-45c5-b80b-552d3794d00c" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:18 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d5d864ae-373b-41b4-b59b-ba020e7f885b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b8e5dc12-9556-45c5-b80b-552d3794d00c" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2e3933a5-0c08-4f48-848d-3d0eb5fad838" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "934dedab-bbeb-4943-8c30-a819bc7651eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2e3933a5-0c08-4f48-848d-3d0eb5fad838" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2d2e421c-b768-45b8-a8ce-1cb20f6aa82d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:22 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0273bb10-3995-4096-a71f-7c92e81775c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2d2e421c-b768-45b8-a8ce-1cb20f6aa82d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "108f3057-447b-4c5d-b7f9-2002f5c2df1d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:25 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "07a28e08-1bde-49d3-9ec6-05208a37a38a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "108f3057-447b-4c5d-b7f9-2002f5c2df1d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9e82f238-992f-459f-b6e6-4e5a5692b0bf" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4a838c3f-a7be-4482-8484-6e8b68865e59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "9e82f238-992f-459f-b6e6-4e5a5692b0bf" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4855230b-f0f0-47c9-9ebb-5a81e3c5419d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:29 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0ee04662-0986-4aa0-9d8c-badcbc253216" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "4855230b-f0f0-47c9-9ebb-5a81e3c5419d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "727a7919-e33c-4769-b176-73553a1f1473" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4c5a0d28-a2f0-4a08-a690-a1b082d22c32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "727a7919-e33c-4769-b176-73553a1f1473" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:29 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0bfbb4c3-f2b5-481c-9d35-15d390b13d75" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "cafc3dfc-a0d9-47e1-bc77-9a7e77d2f5ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0bfbb4c3-f2b5-481c-9d35-15d390b13d75" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "09aa098c-e904-4cd8-9c1c-8502f7978f35" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:36 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "093c5769-416a-4810-ba00-89e6ee446cbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "09aa098c-e904-4cd8-9c1c-8502f7978f35" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1dfd74c2-5bc7-4bdb-a100-befd12789e24" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:38 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a3ea866f-e85f-4f18-864a-748543a16d96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1dfd74c2-5bc7-4bdb-a100-befd12789e24" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "321175e4-eb6d-4e79-9249-81aa007f0df7" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:40 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7347588c-7827-41a0-ae86-bc0a3bacb3e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "321175e4-eb6d-4e79-9249-81aa007f0df7" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "900dab54-a746-400a-801b-aca329db209d" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:42 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "78c7b0fe-0830-4080-9376-44702de0f826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "900dab54-a746-400a-801b-aca329db209d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks?$filter=id%20eq%20'testTask'&$select=id%2Cstate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzPyRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "509fc5d2-bdba-4759-8e2d-1940f9f5d6d6" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:45 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "eb55933d-e63a-407a-85ef-194f8a6f850f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "509fc5d2-bdba-4759-8e2d-1940f9f5d6d6" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks/testTask/subtasksinfo?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL3N1YnRhc2tzaW5mbz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b5a43238-4d3f-46b8-8548-d07468dacada" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:51 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"1601-01-01T00:01:21.9416504Z\",\r\n \"endTime\": \"1601-01-01T00:01:22.891446Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"1601-01-01T00:01:22.8924452Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:01:21.9416504Z\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_3-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_3-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\maxcountsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z/files/workitems/maxcountsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"1601-01-01T00:01:21.9296456Z\",\r\n \"endTime\": \"1601-01-01T00:01:22.7103333Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"1601-01-01T00:01:22.7103333Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:01:21.9296456Z\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_2-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_2-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\maxcountsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z/files/workitems/maxcountsubtaskjob/job-1/testtask/2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4594d012-f9bc-4f5c-bbc4-d5ca8d88fb91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "b5a43238-4d3f-46b8-8548-d07468dacada" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob/tasks/testTask/subtasksinfo?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iL3Rhc2tzL3Rlc3RUYXNrL3N1YnRhc2tzaW5mbz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "53ada6f2-643b-4e97-b8d4-ace0d6a7f776" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtest.brazilsouth.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"1601-01-01T00:01:21.9416504Z\",\r\n \"endTime\": \"1601-01-01T00:01:22.891446Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"1601-01-01T00:01:22.8924452Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:01:21.9416504Z\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_3-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_3-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\maxcountsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_3-20151221t214756z/files/workitems/maxcountsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"1601-01-01T00:01:21.9296456Z\",\r\n \"endTime\": \"1601-01-01T00:01:22.7103333Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"1601-01-01T00:01:22.7103333Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"1601-01-01T00:01:21.9296456Z\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-269018873_2-20151221t214756z\",\r\n \"nodeUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z\",\r\n \"poolId\": \"mpipool\",\r\n \"nodeId\": \"tvm-269018873_2-20151221t214756z\",\r\n \"taskRootDirectory\": \"workitems\\\\maxcountsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://batchtest.brazilsouth.batch.azure.com/pools/mpipool/nodes/tvm-269018873_2-20151221t214756z/files/workitems/maxcountsubtaskjob/job-1/testtask/2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "af0eaea5-26dd-40ec-9edb-b0af865d9b0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "53ada6f2-643b-4e97-b8d4-ace0d6a7f776" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/maxCountSubtaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRTdWJ0YXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8086d045-32d1-46bd-a5f4-1de8cfa66dbb" + ], + "ocp-date": [ + "Mon, 21 Dec 2015 21:54:52 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", + "AzurePowershell/v1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c3ac9faf-f693-4687-83f5-9e19f6fe21e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "8086d045-32d1-46bd-a5f4-1de8cfa66dbb" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Mon, 21 Dec 2015 21:54:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "46241355-bb95-46a9-ba6c-42b554d71925" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json index 47f3feb2d078..a364f1317c3b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14977" ], "x-ms-request-id": [ - "b1d55c1a-d199-4c94-8f8f-bab82e0ab3ab" + "d923dc2d-6e42-47cf-91be-42b93d25498f" ], "x-ms-correlation-request-id": [ - "b1d55c1a-d199-4c94-8f8f-bab82e0ab3ab" + "d923dc2d-6e42-47cf-91be-42b93d25498f" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003322Z:b1d55c1a-d199-4c94-8f8f-bab82e0ab3ab" + "CENTRALUS:20151221T193554Z:d923dc2d-6e42-47cf-91be-42b93d25498f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:33:22 GMT" + "Mon, 21 Dec 2015 19:35:53 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14976" ], "x-ms-request-id": [ - "4ad34069-70e6-4525-a943-2872fd985bac" + "336cd214-fc53-4ab8-af75-b25f6d5c34cf" ], "x-ms-correlation-request-id": [ - "4ad34069-70e6-4525-a943-2872fd985bac" + "336cd214-fc53-4ab8-af75-b25f6d5c34cf" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003326Z:4ad34069-70e6-4525-a943-2872fd985bac" + "CENTRALUS:20151221T193558Z:336cd214-fc53-4ab8-af75-b25f6d5c34cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:33:26 GMT" + "Mon, 21 Dec 2015 19:35:58 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:33:23 GMT" + "Mon, 21 Dec 2015 19:35:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c45467f4-3494-43d7-8b58-96752a178bfd" + "03e0b054-e648-4ff0-9510-9031538ffc8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14985" ], "x-ms-request-id": [ - "3aa8601d-4a78-41da-879c-3384de5fcd7b" + "562f23e9-e059-4e7b-836b-1a608775301a" ], "x-ms-correlation-request-id": [ - "3aa8601d-4a78-41da-879c-3384de5fcd7b" + "562f23e9-e059-4e7b-836b-1a608775301a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003323Z:3aa8601d-4a78-41da-879c-3384de5fcd7b" + "CENTRALUS:20151221T193555Z:562f23e9-e059-4e7b-836b-1a608775301a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:33:22 GMT" + "Mon, 21 Dec 2015 19:35:55 GMT" ], "ETag": [ - "0x8D2EA2FB4E501F3" + "0x8D30A3DF122CC62" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:33:26 GMT" + "Mon, 21 Dec 2015 19:35:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "729af582-bf6a-419c-8eb6-3dbc0a737afe" + "04443653-b46a-4989-b313-70f68fa24f17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14984" ], "x-ms-request-id": [ - "fca99a79-3c00-425b-85f7-ffc6dbd38456" + "0f633561-826b-4d1f-bb9c-2036abb192b1" ], "x-ms-correlation-request-id": [ - "fca99a79-3c00-425b-85f7-ffc6dbd38456" + "0f633561-826b-4d1f-bb9c-2036abb192b1" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003327Z:fca99a79-3c00-425b-85f7-ffc6dbd38456" + "CENTRALUS:20151221T193558Z:0f633561-826b-4d1f-bb9c-2036abb192b1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:33:26 GMT" + "Mon, 21 Dec 2015 19:35:58 GMT" ], "ETag": [ - "0x8D2EA2FB71E3F14" + "0x8D30A3DF3343407" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "72b82e39-4cc8-4f8b-a9c3-d78b7a0427d0" + "bf9d6cc0-938e-4335-a87d-49fd8b4073be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1191" ], "x-ms-request-id": [ - "efd66148-f12f-4a24-b1f7-cb515f7d4884" + "4e2b6144-ca48-4183-b387-351385f58e7a" ], "x-ms-correlation-request-id": [ - "efd66148-f12f-4a24-b1f7-cb515f7d4884" + "4e2b6144-ca48-4183-b387-351385f58e7a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003323Z:efd66148-f12f-4a24-b1f7-cb515f7d4884" + "CENTRALUS:20151221T193555Z:4e2b6144-ca48-4183-b387-351385f58e7a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:33:22 GMT" + "Mon, 21 Dec 2015 19:35:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "1fb7517e-67a8-45a4-a2ff-4f0970c2081b" + "0654dc0c-3532-4ba8-8df9-44b444f53205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1190" ], "x-ms-request-id": [ - "2a7d3e95-a850-4e04-9860-9a30483d1dca" + "bea182ed-eb21-4573-a84b-318fa3c43f4c" ], "x-ms-correlation-request-id": [ - "2a7d3e95-a850-4e04-9860-9a30483d1dca" + "bea182ed-eb21-4573-a84b-318fa3c43f4c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003327Z:2a7d3e95-a850-4e04-9860-9a30483d1dca" + "CENTRALUS:20151221T193559Z:bea182ed-eb21-4573-a84b-318fa3c43f4c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:33:26 GMT" + "Mon, 21 Dec 2015 19:35:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listTaskPipeJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "98" ], "client-request-id": [ - "ada52af8-53cf-4828-95ae-e0046eb18866" + "a43c44de-22ac-4158-9d7f-6fc85c80cdee" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:33:23 GMT" + "Mon, 21 Dec 2015 19:35:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:33:23 GMT" + "Mon, 21 Dec 2015 19:35:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "15e2dd3a-a6c3-4e6d-b8df-4bbdd7cf3712" + "c3777cca-f60e-4c4e-ba93-42ca38a786ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ada52af8-53cf-4828-95ae-e0046eb18866" + "a43c44de-22ac-4158-9d7f-6fc85c80cdee" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:33:24 GMT" + "Mon, 21 Dec 2015 19:35:55 GMT" ], "ETag": [ - "0x8D2EA2FB550A77D" + "0x8D30A3DF129A067" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listTaskPipeJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listTaskPipeJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "83" ], "client-request-id": [ - "d458f6a7-cea4-407e-86ef-70ee862ab016" + "0ec682f4-3649-48cc-8da5-57788a69ad3c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:33:23 GMT" + "Mon, 21 Dec 2015 19:35:56 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:33:24 GMT" + "Mon, 21 Dec 2015 19:35:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4689565c-13b7-4123-b086-02b9bbaab013" + "c0dafe07-2651-4b48-b3c5-c2592824aa80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d458f6a7-cea4-407e-86ef-70ee862ab016" + "0ec682f4-3649-48cc-8da5-57788a69ad3c" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskPipeJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:33:24 GMT" + "Mon, 21 Dec 2015 19:35:55 GMT" ], "ETag": [ - "0x8D2EA2FB5E12AAD" + "0x8D30A3DF1A22B43" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/listTaskPipeJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listTaskPipeJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listTaskPipeJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c12640ed-fe0c-4332-9787-64e97e6a1e83" + "84349f3e-839a-4432-b60d-b97f27c9a6dc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:33:27 GMT" + "Mon, 21 Dec 2015 19:35:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"listTaskPipeJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskPipeJob\",\r\n \"eTag\": \"0x8D2EA2FB550A77D\",\r\n \"lastModified\": \"2015-11-11T00:33:23.8985597Z\",\r\n \"creationTime\": \"2015-11-11T00:33:23.8775523Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:33:23.8985597Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:33:23.8985597Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"listTaskPipeJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskPipeJob\",\r\n \"eTag\": \"0x8D30A3DF129A067\",\r\n \"lastModified\": \"2015-12-21T19:35:54.4691815Z\",\r\n \"creationTime\": \"2015-12-21T19:35:54.4461919Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:35:54.4691815Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:35:54.4691815Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:33:23 GMT" + "Mon, 21 Dec 2015 19:35:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e5109ff9-51b1-47b7-8c24-cfebdee32c29" + "98a01891-3a1b-4eda-a34d-c858ab2ae8be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c12640ed-fe0c-4332-9787-64e97e6a1e83" + "84349f3e-839a-4432-b60d-b97f27c9a6dc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:33:28 GMT" + "Mon, 21 Dec 2015 19:35:58 GMT" ], "ETag": [ - "0x8D2EA2FB550A77D" + "0x8D30A3DF129A067" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,26 +520,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listTaskPipeJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listTaskPipeJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b05655be-5c15-4cf1-a2bf-62f9c1a3bb50" + "3a93cb7a-23c7-4851-903f-246e5c688d7c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:33:27 GMT" + "Mon, 21 Dec 2015 19:35:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskPipeJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2FB5E12AAD\",\r\n \"creationTime\": \"2015-11-11T00:33:24.8456365Z\",\r\n \"lastModified\": \"2015-11-11T00:33:24.8456365Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:33:25.8294492Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:33:25.534816Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:33:25.534816Z\",\r\n \"endTime\": \"2015-11-11T00:33:25.8294492Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/listTaskPipeJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3DF1A22B43\",\r\n \"creationTime\": \"2015-12-21T19:35:55.2591683Z\",\r\n \"lastModified\": \"2015-12-21T19:35:55.2591683Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:35:58.8879604Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:35:58.7149519Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:35:58.7149519Z\",\r\n \"endTime\": \"2015-12-21T19:35:58.8879604Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -548,19 +548,19 @@ "chunked" ], "request-id": [ - "865e39dd-bbfa-4de5-8cc4-41c71ffd2691" + "2524a885-ec8a-439d-84e7-97a4d5dcc2e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b05655be-5c15-4cf1-a2bf-62f9c1a3bb50" + "3a93cb7a-23c7-4851-903f-246e5c688d7c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:33:28 GMT" + "Mon, 21 Dec 2015 19:35:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,22 +569,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listTaskPipeJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/listTaskPipeJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbGlzdFRhc2tQaXBlSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "117d2a0f-1a44-40d2-b355-8a4e1de7c89d" + "14b31e4e-5994-4dcb-9095-c03a6370bbcc" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:33:27 GMT" + "Mon, 21 Dec 2015 19:35:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -594,19 +594,19 @@ "chunked" ], "request-id": [ - "874c7a1a-305c-4fa6-bcfe-668eaca07988" + "558fda6d-fec9-439d-bc53-ff99177d6dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "117d2a0f-1a44-40d2-b355-8a4e1de7c89d" + "14b31e4e-5994-4dcb-9095-c03a6370bbcc" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:33:28 GMT" + "Mon, 21 Dec 2015 19:35:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json index f1bc4d10ca21..3954faadf699 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14985" ], "x-ms-request-id": [ - "296562f3-1bee-479f-ae04-86f19e877838" + "9a353538-8c1d-46a5-86e4-181aabf9ab16" ], "x-ms-correlation-request-id": [ - "296562f3-1bee-479f-ae04-86f19e877838" + "9a353538-8c1d-46a5-86e4-181aabf9ab16" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003630Z:296562f3-1bee-479f-ae04-86f19e877838" + "CENTRALUS:20151221T193753Z:9a353538-8c1d-46a5-86e4-181aabf9ab16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:36:30 GMT" + "Mon, 21 Dec 2015 19:37:53 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14984" ], "x-ms-request-id": [ - "2e9b5b8e-4b5e-49b8-ba18-2dce71241acd" + "4997d942-32e3-4e43-a438-62b8f94b5394" ], "x-ms-correlation-request-id": [ - "2e9b5b8e-4b5e-49b8-ba18-2dce71241acd" + "4997d942-32e3-4e43-a438-62b8f94b5394" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003635Z:2e9b5b8e-4b5e-49b8-ba18-2dce71241acd" + "CENTRALUS:20151221T193757Z:4997d942-32e3-4e43-a438-62b8f94b5394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:36:35 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:30 GMT" + "Mon, 21 Dec 2015 19:37:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d661f2c2-eb20-4de5-bdb3-450e9ab11c36" + "864dc985-3eaa-48c5-8046-29a699d006f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-request-id": [ - "84e7aa0d-a80d-48d4-a9ae-1d9d665d01b1" + "b19e1556-4b80-4bfd-aff8-50c875c86788" ], "x-ms-correlation-request-id": [ - "84e7aa0d-a80d-48d4-a9ae-1d9d665d01b1" + "b19e1556-4b80-4bfd-aff8-50c875c86788" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003631Z:84e7aa0d-a80d-48d4-a9ae-1d9d665d01b1" + "CENTRALUS:20151221T193754Z:b19e1556-4b80-4bfd-aff8-50c875c86788" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:36:31 GMT" + "Mon, 21 Dec 2015 19:37:53 GMT" ], "ETag": [ - "0x8D2EA3024D3C7F0" + "0x8D30A3E37D41DF6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:35 GMT" + "Mon, 21 Dec 2015 19:37:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d37f7d8b-44f1-49cf-8197-f8f9ed7b316b" + "db8e3be2-74aa-46dc-8af3-28dab8ee9506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14988" ], "x-ms-request-id": [ - "24039822-5ebd-48aa-a5d8-671f1468d2bf" + "5a6f33c5-ad92-4336-baad-1dcaf2cb7312" ], "x-ms-correlation-request-id": [ - "24039822-5ebd-48aa-a5d8-671f1468d2bf" + "5a6f33c5-ad92-4336-baad-1dcaf2cb7312" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003635Z:24039822-5ebd-48aa-a5d8-671f1468d2bf" + "CENTRALUS:20151221T193758Z:5a6f33c5-ad92-4336-baad-1dcaf2cb7312" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:36:35 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "ETag": [ - "0x8D2EA3027A1C1B1" + "0x8D30A3E3A29166E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "126b8eaf-c45e-4aa6-9141-5fd38e3e32ed" + "16b46ff3-a1f3-4a0d-80ee-c203e2526c4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-request-id": [ - "12291f5e-fc48-4464-a942-eb744c882539" + "7310ff5a-8e08-4331-a1d6-94598f75fdf4" ], "x-ms-correlation-request-id": [ - "12291f5e-fc48-4464-a942-eb744c882539" + "7310ff5a-8e08-4331-a1d6-94598f75fdf4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003631Z:12291f5e-fc48-4464-a942-eb744c882539" + "CENTRALUS:20151221T193754Z:7310ff5a-8e08-4331-a1d6-94598f75fdf4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:36:31 GMT" + "Mon, 21 Dec 2015 19:37:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "49851456-593f-4fcd-8027-eb0f88772884" + "66102e19-551b-4673-91fa-86641c436f6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-request-id": [ - "989400f9-fa8e-49da-ba6c-2412a47bc326" + "02182f8a-0b71-4b87-a1f1-6e4ed11ed96b" ], "x-ms-correlation-request-id": [ - "989400f9-fa8e-49da-ba6c-2412a47bc326" + "02182f8a-0b71-4b87-a1f1-6e4ed11ed96b" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003635Z:989400f9-fa8e-49da-ba6c-2412a47bc326" + "CENTRALUS:20151221T193758Z:02182f8a-0b71-4b87-a1f1-6e4ed11ed96b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:36:35 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"filterTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "96" ], "client-request-id": [ - "9f2913ec-8343-4119-bd06-dcd063e52d04" + "76005c83-82e1-4db2-88e8-4507c3108832" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:31 GMT" + "Mon, 21 Dec 2015 19:37:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:32 GMT" + "Mon, 21 Dec 2015 19:37:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fc0c9c92-c76a-4f9f-8ef5-78eefb33aba8" + "28e33961-6c89-402f-afb9-40606c0f8eb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9f2913ec-8343-4119-bd06-dcd063e52d04" + "76005c83-82e1-4db2-88e8-4507c3108832" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:56 GMT" ], "ETag": [ - "0x8D2EA3025841CAD" + "0x8D30A3E37D894A6" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/filterTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "84" ], "client-request-id": [ - "f2eb819d-ef56-4d5a-9e88-ab763e9206f3" + "484d15be-1f7b-404c-b5c3-f8b70602440a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:32 GMT" + "Mon, 21 Dec 2015 19:37:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f8addfb0-ee7e-48d5-9b30-f440947cff01" + "eb8f27f8-3503-4fd8-beb0-d7315946cd6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f2eb819d-ef56-4d5a-9e88-ab763e9206f3" + "484d15be-1f7b-404c-b5c3-f8b70602440a" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask1" ], "Date": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:56 GMT" ], "ETag": [ - "0x8D2EA302649BFEF" + "0x8D30A3E3A1CC4FB" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/filterTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "84" ], "client-request-id": [ - "2512b460-3b0b-49ce-a039-ee79b45b8c71" + "f475d67c-7971-46fb-8ba2-b7412da89aba" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:32 GMT" + "Mon, 21 Dec 2015 19:37:54 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "02a5539a-7e10-488a-b425-751c9ceaf85f" + "6573950a-942b-4deb-add1-b36f8233c367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2512b460-3b0b-49ce-a039-ee79b45b8c71" + "f475d67c-7971-46fb-8ba2-b7412da89aba" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask2" ], "Date": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:56 GMT" ], "ETag": [ - "0x8D2EA3026681B0E" + "0x8D30A3E3A391233" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask2" @@ -529,8 +529,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/filterTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"thirdTestTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -541,35 +541,35 @@ "88" ], "client-request-id": [ - "118d7ef4-0a10-4d84-bda7-cfab8768cd44" + "7551b8f0-1138-4062-bd40-0fa34a49634d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:32 GMT" + "Mon, 21 Dec 2015 19:37:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4276a948-a4f2-483c-abff-9b4a2a6a7f2f" + "ede4a146-1a05-4feb-87a0-6300b34711ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "118d7ef4-0a10-4d84-bda7-cfab8768cd44" + "7551b8f0-1138-4062-bd40-0fa34a49634d" ], "DataServiceVersion": [ "3.0" @@ -578,10 +578,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/thirdTestTask" ], "Date": [ - "Wed, 11 Nov 2015 00:36:33 GMT" + "Mon, 21 Dec 2015 19:37:56 GMT" ], "ETag": [ - "0x8D2EA302683C3E4" + "0x8D30A3E3A55B326" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/thirdTestTask" @@ -593,26 +593,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/filterTaskJob/tasks?$filter=startswith(id%2C'testTask')&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhpZCUyQyUyN3Rlc3RUYXNrJTI3JTI5JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/filterTaskJob/tasks?$filter=startswith(id%2C'testTask')&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhpZCUyQyUyN3Rlc3RUYXNrJTI3JTI5JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0cc9a5bd-bde1-4374-aeed-0274e48d65ff" + "4a5386fe-f9c2-43b7-8c4f-8afb33458d2b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:35 GMT" + "Mon, 21 Dec 2015 19:37:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA302649BFEF\",\r\n \"creationTime\": \"2015-11-11T00:36:33.4358511Z\",\r\n \"lastModified\": \"2015-11-11T00:36:33.4358511Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:36:34.0971118Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:36:33.8622243Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:36:33.8622243Z\",\r\n \"endTime\": \"2015-11-11T00:36:34.0971118Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA3026681B0E\",\r\n \"creationTime\": \"2015-11-11T00:36:33.6347918Z\",\r\n \"lastModified\": \"2015-11-11T00:36:33.6347918Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:36:33.6763646Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:36:33.4575199Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:36:33.4575199Z\",\r\n \"endTime\": \"2015-11-11T00:36:33.6763646Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3E3A1CC4FB\",\r\n \"creationTime\": \"2015-12-21T19:37:56.8585979Z\",\r\n \"lastModified\": \"2015-12-21T19:37:56.8585979Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:37:57.125923Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:37:56.9809185Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:37:56.9809185Z\",\r\n \"endTime\": \"2015-12-21T19:37:57.125923Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3E3A391233\",\r\n \"creationTime\": \"2015-12-21T19:37:57.0440755Z\",\r\n \"lastModified\": \"2015-12-21T19:37:57.0440755Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:37:57.0440755Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -621,19 +621,19 @@ "chunked" ], "request-id": [ - "f5fb3b76-618d-44c2-a14e-77b0d52b41f3" + "70caa06c-ed27-4013-9085-e39d61039788" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0cc9a5bd-bde1-4374-aeed-0274e48d65ff" + "4a5386fe-f9c2-43b7-8c4f-8afb33458d2b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:36:36 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,26 +642,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/filterTaskJob/tasks?$filter=startswith(id%2C'testTask')&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhpZCUyQyUyN3Rlc3RUYXNrJTI3JTI5JmFwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/filterTaskJob/tasks?$filter=startswith(id%2C'testTask')&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYi90YXNrcz8kZmlsdGVyPXN0YXJ0c3dpdGglMjhpZCUyQyUyN3Rlc3RUYXNrJTI3JTI5JmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0d897c4e-d871-40e9-8ae5-82a2340e72f7" + "20e3e7c5-97f5-4630-8cb9-5e1ffa611f5f" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:36 GMT" + "Mon, 21 Dec 2015 19:37:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA302649BFEF\",\r\n \"creationTime\": \"2015-11-11T00:36:33.4358511Z\",\r\n \"lastModified\": \"2015-11-11T00:36:33.4358511Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:36:34.0971118Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:36:33.8622243Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:36:33.8622243Z\",\r\n \"endTime\": \"2015-11-11T00:36:34.0971118Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA3026681B0E\",\r\n \"creationTime\": \"2015-11-11T00:36:33.6347918Z\",\r\n \"lastModified\": \"2015-11-11T00:36:33.6347918Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:36:33.6763646Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:36:33.4575199Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:36:33.4575199Z\",\r\n \"endTime\": \"2015-11-11T00:36:33.6763646Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3E3A1CC4FB\",\r\n \"creationTime\": \"2015-12-21T19:37:56.8585979Z\",\r\n \"lastModified\": \"2015-12-21T19:37:56.8585979Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:37:57.125923Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:37:56.9809185Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:37:56.9809185Z\",\r\n \"endTime\": \"2015-12-21T19:37:57.125923Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3E3A391233\",\r\n \"creationTime\": \"2015-12-21T19:37:57.0440755Z\",\r\n \"lastModified\": \"2015-12-21T19:37:57.0440755Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:37:57.0440755Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -670,19 +670,19 @@ "chunked" ], "request-id": [ - "328c85f3-e14a-4919-8ab7-ccdb0fc026c2" + "3e119247-f4f8-4b5d-865a-f9c257539071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0d897c4e-d871-40e9-8ae5-82a2340e72f7" + "20e3e7c5-97f5-4630-8cb9-5e1ffa611f5f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:36:36 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -691,53 +691,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/filterTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "411bcb8b-8c64-41aa-9de2-6623e5ea6571" + "f5b18358-a9a2-439a-90f6-37d914d684aa" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:36 GMT" + "Mon, 21 Dec 2015 19:37:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"filterTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob\",\r\n \"eTag\": \"0x8D2EA3025841CAD\",\r\n \"lastModified\": \"2015-11-11T00:36:32.1406125Z\",\r\n \"creationTime\": \"2015-11-11T00:36:32.1206134Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:36:32.1406125Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:36:32.1406125Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"filterTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/filterTaskJob\",\r\n \"eTag\": \"0x8D30A3E37D894A6\",\r\n \"lastModified\": \"2015-12-21T19:37:53.0562726Z\",\r\n \"creationTime\": \"2015-12-21T19:37:53.0086722Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:37:53.0562726Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:37:53.0562726Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:36:32 GMT" + "Mon, 21 Dec 2015 19:37:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "317fbc2e-1462-4e64-9e79-f6a4750ed041" + "f6ae6b13-50e8-4e19-88ee-e862a8973e9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "411bcb8b-8c64-41aa-9de2-6623e5ea6571" + "f5b18358-a9a2-439a-90f6-37d914d684aa" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:36:36 GMT" + "Mon, 21 Dec 2015 19:37:57 GMT" ], "ETag": [ - "0x8D2EA3025841CAD" + "0x8D30A3E37D894A6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -746,22 +746,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/filterTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/filterTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvZmlsdGVyVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "418ac06d-1474-4300-b071-77bee2a3ef43" + "87777aa1-379f-4b33-83a5-1ee5f012a5df" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:36:36 GMT" + "Mon, 21 Dec 2015 19:37:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -771,19 +771,19 @@ "chunked" ], "request-id": [ - "7a5dfc5e-5a4b-491c-b5d9-b70851cd1f52" + "2618b7f9-3b28-4709-84e1-ad41d93d727b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "418ac06d-1474-4300-b071-77bee2a3ef43" + "87777aa1-379f-4b33-83a5-1ee5f012a5df" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:36:37 GMT" + "Mon, 21 Dec 2015 19:38:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json index c89dcbb4868c..b2629c68806a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14995" ], "x-ms-request-id": [ - "02aa1b05-9c33-49bc-84a2-6fc4436c37e3" + "d8694e9c-32db-4573-928b-5103de682a39" ], "x-ms-correlation-request-id": [ - "02aa1b05-9c33-49bc-84a2-6fc4436c37e3" + "d8694e9c-32db-4573-928b-5103de682a39" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003401Z:02aa1b05-9c33-49bc-84a2-6fc4436c37e3" + "CENTRALUS:20151221T193233Z:d8694e9c-32db-4573-928b-5103de682a39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:01 GMT" + "Mon, 21 Dec 2015 19:32:32 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14994" ], "x-ms-request-id": [ - "01d7607c-806f-408c-a320-e72a20ea9e1a" + "6bf037df-8371-49fd-8d8a-90febeebf897" ], "x-ms-correlation-request-id": [ - "01d7607c-806f-408c-a320-e72a20ea9e1a" + "6bf037df-8371-49fd-8d8a-90febeebf897" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003407Z:01d7607c-806f-408c-a320-e72a20ea9e1a" + "CENTRALUS:20151221T193238Z:6bf037df-8371-49fd-8d8a-90febeebf897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:06 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "59f0d723-ad3e-4565-b68c-caa85c1f80bb" + "ee24285f-0d3e-41f0-b88f-d661b8b30b8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "7b6b576d-1720-4202-981e-11e8a8ae9d43" + "37bc5ac3-496d-4c05-bc0d-d95857e4ee00" ], "x-ms-correlation-request-id": [ - "7b6b576d-1720-4202-981e-11e8a8ae9d43" + "37bc5ac3-496d-4c05-bc0d-d95857e4ee00" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003402Z:7b6b576d-1720-4202-981e-11e8a8ae9d43" + "CENTRALUS:20151221T193234Z:37bc5ac3-496d-4c05-bc0d-d95857e4ee00" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:02 GMT" + "Mon, 21 Dec 2015 19:32:33 GMT" ], "ETag": [ - "0x8D2EA2FCCBF383F" + "0x8D30A3D79235548" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:07 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6b9d9c4c-65aa-49ed-9694-b18058368c7d" + "edbe36bf-3d75-40f9-a19c-3976b5410cdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "fd575111-1d62-45c8-9139-d7060fe29f5a" + "d32db9c8-f3ed-440b-a4a3-c3123065d578" ], "x-ms-correlation-request-id": [ - "fd575111-1d62-45c8-9139-d7060fe29f5a" + "d32db9c8-f3ed-440b-a4a3-c3123065d578" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003407Z:fd575111-1d62-45c8-9139-d7060fe29f5a" + "CENTRALUS:20151221T193238Z:d32db9c8-f3ed-440b-a4a3-c3123065d578" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:06 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ], "ETag": [ - "0x8D2EA2FCF57C43A" + "0x8D30A3D7B77A99D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "e07a51c5-4eea-4b32-b2db-66fa9d3b4cda" + "644b5c2c-877c-43df-a6e8-d9799cd54bf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-request-id": [ - "9948ae42-c019-4fd8-b550-ff0718524d66" + "f688942f-e1f6-4e99-8b2d-b758f895a152" ], "x-ms-correlation-request-id": [ - "9948ae42-c019-4fd8-b550-ff0718524d66" + "f688942f-e1f6-4e99-8b2d-b758f895a152" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003402Z:9948ae42-c019-4fd8-b550-ff0718524d66" + "CENTRALUS:20151221T193234Z:f688942f-e1f6-4e99-8b2d-b758f895a152" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:02 GMT" + "Mon, 21 Dec 2015 19:32:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "b068a4e9-c353-4480-a99a-d4bf3b892ece" + "710796bf-d572-4229-8c3a-f2993a90c19d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "e0e832ed-edfa-49e2-89a5-fb75ba594a5c" + "d1257426-dc13-445b-b200-03ca91d62664" ], "x-ms-correlation-request-id": [ - "e0e832ed-edfa-49e2-89a5-fb75ba594a5c" + "d1257426-dc13-445b-b200-03ca91d62664" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003407Z:e0e832ed-edfa-49e2-89a5-fb75ba594a5c" + "CENTRALUS:20151221T193238Z:d1257426-dc13-445b-b200-03ca91d62664" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:34:06 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"maxCountTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "98" ], "client-request-id": [ - "b2ad9e3b-5f6a-4258-b775-e5886503152a" + "9ef60b1d-dfab-4fb8-88a3-f3d9eebb7f9e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:02 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "31b2fb2c-ddeb-42fc-a9a1-e4ca263a1d73" + "2e9cbb02-0cab-481b-86f9-6aec76a09394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b2ad9e3b-5f6a-4258-b775-e5886503152a" + "9ef60b1d-dfab-4fb8-88a3-f3d9eebb7f9e" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "ETag": [ - "0x8D2EA2FCCCC8FC6" + "0x8D30A3D7947169A" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "84" ], "client-request-id": [ - "c047fd68-9105-45ae-a60d-0d306ff7a694" + "51185657-9337-4b61-b8b5-850deeae4c29" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:04 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0db21553-67fd-48e6-812b-5a0f345c0851" + "c6a1d5d0-fd87-4218-8487-e5ff03f4be0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c047fd68-9105-45ae-a60d-0d306ff7a694" + "51185657-9337-4b61-b8b5-850deeae4c29" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask1" ], "Date": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "ETag": [ - "0x8D2EA2FCD79C6E9" + "0x8D30A3D7A1B74F7" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "84" ], "client-request-id": [ - "7a9ad51f-8908-40e5-870c-4ebd689309ca" + "ffab6f27-5932-4bc2-bb17-db4fd81f8c66" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:04 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e4598a11-b73d-4a5e-8bf3-1352c657ee76" + "b00e839e-4a2d-47ca-8834-93ca71426ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7a9ad51f-8908-40e5-870c-4ebd689309ca" + "ffab6f27-5932-4bc2-bb17-db4fd81f8c66" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask2" ], "Date": [ - "Wed, 11 Nov 2015 00:34:04 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "ETag": [ - "0x8D2EA2FCD9650D3" + "0x8D30A3D7A3B216B" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask2" @@ -529,8 +529,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask3\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -541,35 +541,35 @@ "84" ], "client-request-id": [ - "24247118-720e-4924-b5a1-00dc0244d1af" + "02171f9f-3880-4dfe-9d2e-bd9c228a3f63" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:35 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:05 GMT" + "Mon, 21 Dec 2015 19:32:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c6dee044-afe5-477d-ae5d-704b503c8868" + "90d6a7a2-0438-41b5-bf0f-b380e2ee9750" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "24247118-720e-4924-b5a1-00dc0244d1af" + "02171f9f-3880-4dfe-9d2e-bd9c228a3f63" ], "DataServiceVersion": [ "3.0" @@ -578,10 +578,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask3" ], "Date": [ - "Wed, 11 Nov 2015 00:34:04 GMT" + "Mon, 21 Dec 2015 19:32:34 GMT" ], "ETag": [ - "0x8D2EA2FCDE4BEBF" + "0x8D30A3D7A571F29" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask3" @@ -593,26 +593,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2b3a927e-2cfd-44aa-bccc-a8a1f7bc511f" + "23a4de99-0061-4d1c-a5a4-1a3184722957" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:07 GMT" + "Mon, 21 Dec 2015 19:32:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2FCD79C6E9\",\r\n \"creationTime\": \"2015-11-11T00:34:04.4333801Z\",\r\n \"lastModified\": \"2015-11-11T00:34:04.4333801Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:04.5192505Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:34:04.3600317Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:04.3600317Z\",\r\n \"endTime\": \"2015-11-11T00:34:04.5192505Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA2FCD9650D3\",\r\n \"creationTime\": \"2015-11-11T00:34:04.6204115Z\",\r\n \"lastModified\": \"2015-11-11T00:34:04.6204115Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:04.8083027Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:34:04.605466Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:04.605466Z\",\r\n \"endTime\": \"2015-11-11T00:34:04.8082361Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D2EA2FCDE4BEBF\",\r\n \"creationTime\": \"2015-11-11T00:34:05.1344063Z\",\r\n \"lastModified\": \"2015-11-11T00:34:05.1344063Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:06.3658723Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:34:06.2558762Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:06.2558762Z\",\r\n \"endTime\": \"2015-11-11T00:34:06.3658723Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3D7A1B74F7\",\r\n \"creationTime\": \"2015-12-21T19:32:34.7274487Z\",\r\n \"lastModified\": \"2015-12-21T19:32:34.7274487Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:36.5598858Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:32:36.4288835Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:32:36.4288835Z\",\r\n \"endTime\": \"2015-12-21T19:32:36.5598858Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3D7A3B216B\",\r\n \"creationTime\": \"2015-12-21T19:32:34.9350251Z\",\r\n \"lastModified\": \"2015-12-21T19:32:34.9350251Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:37.4524259Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:32:37.325436Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:32:37.325436Z\",\r\n \"endTime\": \"2015-12-21T19:32:37.4524259Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D30A3D7A571F29\",\r\n \"creationTime\": \"2015-12-21T19:32:35.1184681Z\",\r\n \"lastModified\": \"2015-12-21T19:32:35.1184681Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:35.1184681Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -621,19 +621,19 @@ "chunked" ], "request-id": [ - "5caa0bb0-7445-4d07-b0cf-fdfe3852a0b4" + "d8486c8e-4efc-49e0-b5e9-4e88c83ab5c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2b3a927e-2cfd-44aa-bccc-a8a1f7bc511f" + "23a4de99-0061-4d1c-a5a4-1a3184722957" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:08 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,26 +642,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9575422f-155d-433e-a0c2-e60a9694d4a5" + "15ace3e2-ea39-4f63-9d82-29753c5cacbe" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:07 GMT" + "Mon, 21 Dec 2015 19:32:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2FCD79C6E9\",\r\n \"creationTime\": \"2015-11-11T00:34:04.4333801Z\",\r\n \"lastModified\": \"2015-11-11T00:34:04.4333801Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:04.5192505Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:34:04.3600317Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:04.3600317Z\",\r\n \"endTime\": \"2015-11-11T00:34:04.5192505Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA2FCD9650D3\",\r\n \"creationTime\": \"2015-11-11T00:34:04.6204115Z\",\r\n \"lastModified\": \"2015-11-11T00:34:04.6204115Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:04.8083027Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:34:04.605466Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:04.605466Z\",\r\n \"endTime\": \"2015-11-11T00:34:04.8082361Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D2EA2FCDE4BEBF\",\r\n \"creationTime\": \"2015-11-11T00:34:05.1344063Z\",\r\n \"lastModified\": \"2015-11-11T00:34:05.1344063Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:06.3658723Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:34:06.2558762Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:06.2558762Z\",\r\n \"endTime\": \"2015-11-11T00:34:06.3658723Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3D7A1B74F7\",\r\n \"creationTime\": \"2015-12-21T19:32:34.7274487Z\",\r\n \"lastModified\": \"2015-12-21T19:32:34.7274487Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:36.5598858Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:32:36.4288835Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:32:36.4288835Z\",\r\n \"endTime\": \"2015-12-21T19:32:36.5598858Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3D7A3B216B\",\r\n \"creationTime\": \"2015-12-21T19:32:34.9350251Z\",\r\n \"lastModified\": \"2015-12-21T19:32:34.9350251Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:37.4524259Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:32:37.325436Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:32:37.325436Z\",\r\n \"endTime\": \"2015-12-21T19:32:37.4524259Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask3\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob/tasks/testTask3\",\r\n \"eTag\": \"0x8D30A3D7A571F29\",\r\n \"creationTime\": \"2015-12-21T19:32:35.1184681Z\",\r\n \"lastModified\": \"2015-12-21T19:32:35.1184681Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:35.1184681Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -670,19 +670,19 @@ "chunked" ], "request-id": [ - "05d38418-21f9-41ba-bed9-eeda9a93d500" + "522d06a3-9f0e-42ab-8b1e-af119db542ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9575422f-155d-433e-a0c2-e60a9694d4a5" + "15ace3e2-ea39-4f63-9d82-29753c5cacbe" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:08 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -691,53 +691,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/maxCountTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "578d132d-d712-44ff-b6e4-82e047ea2cf9" + "bd51b529-d78c-4888-83f8-7240adf22bb3" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:07 GMT" + "Mon, 21 Dec 2015 19:32:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"maxCountTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob\",\r\n \"eTag\": \"0x8D2EA2FCCCC8FC6\",\r\n \"lastModified\": \"2015-11-11T00:34:03.2981958Z\",\r\n \"creationTime\": \"2015-11-11T00:34:03.2801961Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-11-11T00:34:03.2981958Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:34:03.2981958Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"maxCountTaskJob\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/maxCountTaskJob\",\r\n \"eTag\": \"0x8D30A3D7947169A\",\r\n \"lastModified\": \"2015-12-21T19:32:33.3356698Z\",\r\n \"creationTime\": \"2015-12-21T19:32:33.3156791Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:32:33.3356698Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:32:33.3356698Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:34:03 GMT" + "Mon, 21 Dec 2015 19:32:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8b259e1b-d4d6-477c-82ab-d6544b795032" + "dfe2c6af-acc4-46bc-85df-0609b69a7305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "578d132d-d712-44ff-b6e4-82e047ea2cf9" + "bd51b529-d78c-4888-83f8-7240adf22bb3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:08 GMT" + "Mon, 21 Dec 2015 19:32:37 GMT" ], "ETag": [ - "0x8D2EA2FCCCC8FC6" + "0x8D30A3D7947169A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -746,22 +746,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/maxCountTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/maxCountTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvbWF4Q291bnRUYXNrSm9iP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bebdf0ef-9ad0-4429-94ca-f9de91d51e46" + "10b8e43a-fc07-429c-acb8-dc964bf7cc31" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:34:07 GMT" + "Mon, 21 Dec 2015 19:32:38 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -771,19 +771,19 @@ "chunked" ], "request-id": [ - "376b5dc5-c284-4985-819b-7983723f39e1" + "3c8cba7c-ff69-415c-9e0a-7dc9bd703f3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bebdf0ef-9ad0-4429-94ca-f9de91d51e46" + "10b8e43a-fc07-429c-acb8-dc964bf7cc31" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:34:08 GMT" + "Mon, 21 Dec 2015 19:32:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json index 7eecc4b5d78c..321d178af98e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14981" ], "x-ms-request-id": [ - "95d376ca-466c-4158-91d3-84b7cc0024a0" + "f98acb4b-97c2-4f5a-9a60-849daf541671" ], "x-ms-correlation-request-id": [ - "95d376ca-466c-4158-91d3-84b7cc0024a0" + "f98acb4b-97c2-4f5a-9a60-849daf541671" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003242Z:95d376ca-466c-4158-91d3-84b7cc0024a0" + "CENTRALUS:20151221T193912Z:f98acb4b-97c2-4f5a-9a60-849daf541671" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:42 GMT" + "Mon, 21 Dec 2015 19:39:12 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14980" ], "x-ms-request-id": [ - "834c6000-0751-428e-942c-e356a14ab24c" + "7af67458-656c-4f10-9148-fe5e1aa56b1c" ], "x-ms-correlation-request-id": [ - "834c6000-0751-428e-942c-e356a14ab24c" + "7af67458-656c-4f10-9148-fe5e1aa56b1c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003247Z:834c6000-0751-428e-942c-e356a14ab24c" + "CENTRALUS:20151221T193917Z:7af67458-656c-4f10-9148-fe5e1aa56b1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:47 GMT" + "Mon, 21 Dec 2015 19:39:16 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:43 GMT" + "Mon, 21 Dec 2015 19:39:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0737ca71-01bd-4e8e-b8ea-406623f82e23" + "02beae65-2e45-4235-93cb-13edaa2b9447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14991" ], "x-ms-request-id": [ - "a4fcdad1-bfb3-4ad0-840f-9988c580f63e" + "931bfc5f-a8ca-4ab3-909c-104f04ff7bd3" ], "x-ms-correlation-request-id": [ - "a4fcdad1-bfb3-4ad0-840f-9988c580f63e" + "931bfc5f-a8ca-4ab3-909c-104f04ff7bd3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003243Z:a4fcdad1-bfb3-4ad0-840f-9988c580f63e" + "CENTRALUS:20151221T193913Z:931bfc5f-a8ca-4ab3-909c-104f04ff7bd3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:43 GMT" + "Mon, 21 Dec 2015 19:39:12 GMT" ], "ETag": [ - "0x8D2EA2F9D5C1DE1" + "0x8D30A3E66A72E1D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:47 GMT" + "Mon, 21 Dec 2015 19:39:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "60b5e4ae-6661-4dc0-8524-b3e8763360f3" + "f8eb8d2d-0937-4951-92a4-aeae782e3a8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14990" ], "x-ms-request-id": [ - "1f421821-fdba-4b51-b844-613d1f3f460f" + "82d22c94-fc69-4a3c-9c5f-d1b54403a6d0" ], "x-ms-correlation-request-id": [ - "1f421821-fdba-4b51-b844-613d1f3f460f" + "82d22c94-fc69-4a3c-9c5f-d1b54403a6d0" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003247Z:1f421821-fdba-4b51-b844-613d1f3f460f" + "CENTRALUS:20151221T193917Z:82d22c94-fc69-4a3c-9c5f-d1b54403a6d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:47 GMT" + "Mon, 21 Dec 2015 19:39:16 GMT" ], "ETag": [ - "0x8D2EA2F9FAF57AE" + "0x8D30A3E6900EB18" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "86973354-ac8d-41a7-aa55-47d200212ee7" + "b670241e-aae2-4c65-b87a-41da242809fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "de4719f7-bc10-49af-8708-641b1645287e" + "763e6a45-3831-4bbe-a0db-1fa6ad738a1a" ], "x-ms-correlation-request-id": [ - "de4719f7-bc10-49af-8708-641b1645287e" + "763e6a45-3831-4bbe-a0db-1fa6ad738a1a" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003244Z:de4719f7-bc10-49af-8708-641b1645287e" + "CENTRALUS:20151221T193913Z:763e6a45-3831-4bbe-a0db-1fa6ad738a1a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:43 GMT" + "Mon, 21 Dec 2015 19:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "55ca28b5-630c-40db-8430-d6d73f2572e3" + "2870731e-1825-4310-8cc3-cbaa47c35f05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "75e18bcd-600e-4850-aa91-d7e57046b6dd" + "517c2628-7cc7-4dbb-8336-1c3a8a79b225" ], "x-ms-correlation-request-id": [ - "75e18bcd-600e-4850-aa91-d7e57046b6dd" + "517c2628-7cc7-4dbb-8336-1c3a8a79b225" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T003247Z:75e18bcd-600e-4850-aa91-d7e57046b6dd" + "CENTRALUS:20151221T193917Z:517c2628-7cc7-4dbb-8336-1c3a8a79b225" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:32:47 GMT" + "Mon, 21 Dec 2015 19:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTerminateTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "103" ], "client-request-id": [ - "c5b83181-f3a7-4d15-8291-f5e81195d554" + "10af9058-7974-468d-9151-5c52ef87287b" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:43 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:44 GMT" + "Mon, 21 Dec 2015 19:39:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3a9057f9-e50e-4f26-a7ef-1647d171dd0e" + "75a4e699-c085-4f37-b1c2-0d2fef85a629" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c5b83181-f3a7-4d15-8291-f5e81195d554" + "10af9058-7974-468d-9151-5c52ef87287b" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:32:45 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "ETag": [ - "0x8D2EA2F9DBA3723" + "0x8D30A3E6718BA68" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "94" ], "client-request-id": [ - "d3454baf-9f76-4f64-a4c9-c8a0a2157461" + "613ecd11-60e1-464e-b5e8-2916624c40b8" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:44 GMT" + "Mon, 21 Dec 2015 19:39:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:45 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cba308de-f574-4e96-97fe-7e7379887e8a" + "7a2381b9-0856-4f57-907e-43d9a5966d1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "d3454baf-9f76-4f64-a4c9-c8a0a2157461" + "613ecd11-60e1-464e-b5e8-2916624c40b8" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" ], "Date": [ - "Wed, 11 Nov 2015 00:32:45 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "ETag": [ - "0x8D2EA2F9E3EC614" + "0x8D30A3E67AAD949" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" @@ -465,8 +465,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -477,35 +477,35 @@ "94" ], "client-request-id": [ - "82258b7f-271f-4846-a812-6a98f14adb7c" + "6ae4ce37-314c-44e7-8280-3a3c859e770a" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:44 GMT" + "Mon, 21 Dec 2015 19:39:14 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:45 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b19b3c07-4280-4235-8513-3e6541f2001d" + "faf82b76-3514-4daa-a88c-d7b3a2a056cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "82258b7f-271f-4846-a812-6a98f14adb7c" + "6ae4ce37-314c-44e7-8280-3a3c859e770a" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" ], "Date": [ - "Wed, 11 Nov 2015 00:32:45 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "ETag": [ - "0x8D2EA2F9E5A1B20" + "0x8D30A3E67CA8436" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" @@ -529,22 +529,22 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "80a3df7f-55dc-47bc-8083-743904086737" + "33ce58bb-413b-4da2-b530-614d2890203c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:47 GMT" + "Mon, 21 Dec 2015 19:39:17 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -554,16 +554,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:48 GMT" + "Mon, 21 Dec 2015 19:39:18 GMT" ], "request-id": [ - "6ece44da-7d75-44f9-9f08-a117cd87b94c" + "fe562226-c4e0-4b3e-8851-c0d14deeb83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "80a3df7f-55dc-47bc-8083-743904086737" + "33ce58bb-413b-4da2-b530-614d2890203c" ], "DataServiceVersion": [ "3.0" @@ -572,10 +572,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" ], "Date": [ - "Wed, 11 Nov 2015 00:32:49 GMT" + "Mon, 21 Dec 2015 19:39:20 GMT" ], "ETag": [ - "0x8D2EA2F9FF9BA51" + "0x8D30A3E6AA1C534" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -584,53 +584,53 @@ "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEuMi4xJnRpbWVvdXQ9MzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "17ff49b7-3bd3-4702-88ef-5969c45ee042" + "c3d153ae-d51a-4159-81ee-d4e640a13e65" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:48 GMT" + "Mon, 21 Dec 2015 19:39:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA2F9E5A1B20\",\r\n \"creationTime\": \"2015-11-11T00:32:45.3729056Z\",\r\n \"lastModified\": \"2015-11-11T00:32:45.3729056Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-11-11T00:32:45.6853302Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:32:45.3729056Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:32:45.6853302Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3E67CA8436\",\r\n \"creationTime\": \"2015-12-21T19:39:13.4947382Z\",\r\n \"lastModified\": \"2015-12-21T19:39:13.4947382Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-12-21T19:39:13.4947382Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:45 GMT" + "Mon, 21 Dec 2015 19:39:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9d77b344-cdb7-43ef-b7fa-2df8d402850c" + "1460f775-4d23-47b6-a786-4f92684a9e0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "17ff49b7-3bd3-4702-88ef-5969c45ee042" + "c3d153ae-d51a-4159-81ee-d4e640a13e65" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:32:49 GMT" + "Mon, 21 Dec 2015 19:39:20 GMT" ], "ETag": [ - "0x8D2EA2F9E5A1B20" + "0x8D30A3E67CA8436" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,22 +639,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?terminate&api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?terminate&api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "036f5332-9228-46e6-81bf-fc1eecc01b9d" + "cb56033f-75ef-4f5b-b27b-ac4ec67a1e3c" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:48 GMT" + "Mon, 21 Dec 2015 19:39:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -664,16 +664,16 @@ "0" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:32:48 GMT" + "Mon, 21 Dec 2015 19:39:20 GMT" ], "request-id": [ - "f0743525-df39-4e4f-81da-9d2c31c75333" + "d38f2e02-948c-462c-8206-50e03ef8dfa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "036f5332-9228-46e6-81bf-fc1eecc01b9d" + "cb56033f-75ef-4f5b-b27b-ac4ec67a1e3c" ], "DataServiceVersion": [ "3.0" @@ -682,10 +682,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" ], "Date": [ - "Wed, 11 Nov 2015 00:32:49 GMT" + "Mon, 21 Dec 2015 19:39:20 GMT" ], "ETag": [ - "0x8D2EA2FA0691AF7" + "0x8D30A3E6BE9E5D1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -694,26 +694,26 @@ "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "95717b5e-d6c0-4bdf-9015-597e194d1911" + "82ffbed3-b144-4c14-9b72-dc2ba8283d80" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:48 GMT" + "Mon, 21 Dec 2015 19:39:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2EA2F9FF9BA51\",\r\n \"creationTime\": \"2015-11-11T00:32:45.1937812Z\",\r\n \"lastModified\": \"2015-11-11T00:32:48.0967249Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:32:48.1307284Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:32:45.2932088Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:32:45.2932088Z\",\r\n \"endTime\": \"2015-11-11T00:32:48.1307284Z\",\r\n \"exitCode\": -1073741510,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2EA2FA0691AF7\",\r\n \"creationTime\": \"2015-11-11T00:32:45.3729056Z\",\r\n \"lastModified\": \"2015-11-11T00:32:48.8266487Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-11-11T00:32:48.8616355Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:32:45.6853302Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:32:45.6853302Z\",\r\n \"endTime\": \"2015-11-11T00:32:48.8616355Z\",\r\n \"exitCode\": -1073741510,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_2-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_2-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_2-20151110t233600z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D30A3E6AA1C534\",\r\n \"creationTime\": \"2015-12-21T19:39:13.2872009Z\",\r\n \"lastModified\": \"2015-12-21T19:39:18.2608692Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:39:18.3108715Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:39:15.0228033Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:39:15.0228033Z\",\r\n \"endTime\": \"2015-12-21T19:39:18.3108715Z\",\r\n \"exitCode\": -1073741510,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D30A3E6BE9E5D1\",\r\n \"creationTime\": \"2015-12-21T19:39:13.4947382Z\",\r\n \"lastModified\": \"2015-12-21T19:39:20.4112849Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-12-21T19:39:20.4112849Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:39:13.4947382Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-12-21T19:39:20.4112849Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -722,19 +722,19 @@ "chunked" ], "request-id": [ - "f370db8d-5259-4239-92bd-454ca3571b18" + "62419f91-2bb8-4aab-a4fb-201b61e1cfc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "95717b5e-d6c0-4bdf-9015-597e194d1911" + "82ffbed3-b144-4c14-9b72-dc2ba8283d80" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:32:50 GMT" + "Mon, 21 Dec 2015 19:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -743,22 +743,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "812965ae-0dc9-492c-bc98-9f3ff17726ca" + "8fcf129a-b479-45b1-85e2-bbf5ccbb3cda" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:32:49 GMT" + "Mon, 21 Dec 2015 19:39:18 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -768,19 +768,19 @@ "chunked" ], "request-id": [ - "b2389fde-fec6-4c5f-a278-eb01d79b3509" + "ea9e28f1-0ff9-4911-b7d2-e75600ec3781" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "812965ae-0dc9-492c-bc98-9f3ff17726ca" + "8fcf129a-b479-45b1-85e2-bbf5ccbb3cda" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:32:49 GMT" + "Mon, 21 Dec 2015 19:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestUpdateTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestUpdateTask.json index 323a5704841d..5eb702134d03 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestUpdateTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestUpdateTask.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14882" ], "x-ms-request-id": [ - "342dccf0-6b0d-4a4b-b3e3-fb755d5795f0" + "62fe4a91-2bf7-4d9f-9385-e430bcb39586" ], "x-ms-correlation-request-id": [ - "342dccf0-6b0d-4a4b-b3e3-fb755d5795f0" + "62fe4a91-2bf7-4d9f-9385-e430bcb39586" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002952Z:342dccf0-6b0d-4a4b-b3e3-fb755d5795f0" + "CENTRALUS:20151221T193953Z:62fe4a91-2bf7-4d9f-9385-e430bcb39586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:51 GMT" + "Mon, 21 Dec 2015 19:39:53 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-brazilsouth/providers/Microsoft.Batch/batchAccounts/batchtest\",\r\n \"name\": \"batchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-eastus/providers/Microsoft.Batch/batchAccounts/pstestaccount\",\r\n \"name\": \"pstestaccount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/46241355-bb95-46a9-ba6c-42b554d71925/resourceGroups/default-westus/providers/Microsoft.Batch/batchAccounts/jsmatlab\",\r\n \"name\": \"jsmatlab\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "455" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14881" ], "x-ms-request-id": [ - "f3a0eb44-3e74-4349-b6b9-c633316ba378" + "7372f082-a2e3-4d34-915d-2bd20d4d297c" ], "x-ms-correlation-request-id": [ - "f3a0eb44-3e74-4349-b6b9-c633316ba378" + "7372f082-a2e3-4d34-915d-2bd20d4d297c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002956Z:f3a0eb44-3e74-4349-b6b9-c633316ba378" + "CENTRALUS:20151221T193958Z:7372f082-a2e3-4d34-915d-2bd20d4d297c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:55 GMT" + "Mon, 21 Dec 2015 19:39:57 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:53 GMT" + "Mon, 21 Dec 2015 19:39:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4c4ed129-9bfc-426d-aee5-f2940934b1fd" + "17717020-855b-45ef-bcef-b2ff58c85af0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14974" ], "x-ms-request-id": [ - "33fd647c-1269-4e0a-b6f9-fbcb895d9612" + "d8134285-9b25-406f-975e-04a89af2d03c" ], "x-ms-correlation-request-id": [ - "33fd647c-1269-4e0a-b6f9-fbcb895d9612" + "d8134285-9b25-406f-975e-04a89af2d03c" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002952Z:33fd647c-1269-4e0a-b6f9-fbcb895d9612" + "CENTRALUS:20151221T193954Z:d8134285-9b25-406f-975e-04a89af2d03c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:52 GMT" + "Mon, 21 Dec 2015 19:39:54 GMT" ], "ETag": [ - "0x8D2EA2F382C47CD" + "0x8D30A3E7FD6490E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "93eefb31-1e22-4ce2-ac3e-c732ed380edf" + "e11c803b-bbcb-4c57-a799-8b934d55c3b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14973" ], "x-ms-request-id": [ - "83636ce0-3297-4df8-b599-65aa2d33209c" + "5257c2fb-c413-42b2-a675-cb0c8d8ac6b7" ], "x-ms-correlation-request-id": [ - "83636ce0-3297-4df8-b599-65aa2d33209c" + "5257c2fb-c413-42b2-a675-cb0c8d8ac6b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002956Z:83636ce0-3297-4df8-b599-65aa2d33209c" + "CENTRALUS:20151221T193958Z:5257c2fb-c413-42b2-a675-cb0c8d8ac6b7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:56 GMT" + "Mon, 21 Dec 2015 19:39:57 GMT" ], "ETag": [ - "0x8D2EA2F3A60827F" + "0x8D30A3E81F06B97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "b1fdedab-45b4-42c4-90f9-b6d5dd3dd23c" + "3ecdc85e-f55f-41ed-b630-3fe37535ad57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1183" ], "x-ms-request-id": [ - "22e4b6ae-5367-4687-ac74-0c3dddf5f604" + "c08c139c-a05f-475d-8d85-9ef89430b6d4" ], "x-ms-correlation-request-id": [ - "22e4b6ae-5367-4687-ac74-0c3dddf5f604" + "c08c139c-a05f-475d-8d85-9ef89430b6d4" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002953Z:22e4b6ae-5367-4687-ac74-0c3dddf5f604" + "CENTRALUS:20151221T193955Z:c08c139c-a05f-475d-8d85-9ef89430b6d4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:52 GMT" + "Mon, 21 Dec 2015 19:39:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"BXXODafLGpfb8boG1WOVc0+LgbpsXWhE0OnPiD3Yl/iUZ6SixyG4rxQmFSu08RrC7LUIuE9E7k4jkI/XV+McZw==\",\r\n \"secondary\": \"u9bk9P98NJdr0vTsgRMINRZrsxDipDbFzgRxhCm17FA1eCJlV+TGMP6udRhbOtl33wwtJ4HSnjelLW04/6vdMQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstestaccount\",\r\n \"primary\": \"PhmGgzyW7hNP+2h5GMRVr8HlagPEwDC7An0ARHJC3q9ICJgr38+oi3fzZ2c31XPFOuNFtYIsHuEKczjC0MAIww==\",\r\n \"secondary\": \"y9BWE8mmIQ4Fv4fnPS+0c7kxtFwRNg+NcxGJwnwFepj0U+N3Co/aNfQvKpnFOiLk3Goj3d99XvF9aRiTENEkzg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "235" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "a9ed7e60-3573-473a-9223-1e5357149181" + "8c21e43d-2fb1-441e-a315-f7917afbd8e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1182" ], "x-ms-request-id": [ - "127fef86-19b4-4179-bbf3-f60ef518665a" + "ea622fe4-1572-457f-974d-49d94074a2b3" ], "x-ms-correlation-request-id": [ - "127fef86-19b4-4179-bbf3-f60ef518665a" + "ea622fe4-1572-457f-974d-49d94074a2b3" ], "x-ms-routing-request-id": [ - "WESTUS:20151111T002956Z:127fef86-19b4-4179-bbf3-f60ef518665a" + "CENTRALUS:20151221T193958Z:ea622fe4-1572-457f-974d-49d94074a2b3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 11 Nov 2015 00:29:56 GMT" + "Mon, 21 Dec 2015 19:39:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestUri": "/jobs?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS4yLjEmdGltZW91dD0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"updateTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -349,35 +349,35 @@ "96" ], "client-request-id": [ - "a015c624-8dbb-415f-9034-f480a44fdc00" + "1672616a-f8f3-4632-bf28-6bc38831b18e" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:52 GMT" + "Mon, 21 Dec 2015 19:39:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:53 GMT" + "Mon, 21 Dec 2015 19:39:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9fad5fe5-740a-4c84-9c4e-bee1d66b2d08" + "ca06b9a2-9603-45fb-bcd9-cf6fc5f78bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a015c624-8dbb-415f-9034-f480a44fdc00" + "1672616a-f8f3-4632-bf28-6bc38831b18e" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Wed, 11 Nov 2015 00:29:54 GMT" + "Mon, 21 Dec 2015 19:39:55 GMT" ], "ETag": [ - "0x8D2EA2F37D38DC9" + "0x8D30A3E7FED0B1A" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/job-1" @@ -401,8 +401,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/updateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateTaskJob/tasks?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { @@ -413,35 +413,35 @@ "93" ], "client-request-id": [ - "eb5e4aec-b032-402d-a526-a13793918f51" + "b9855ad2-a689-4de0-9b22-f7e885accad5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:53 GMT" + "Mon, 21 Dec 2015 19:39:55 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:54 GMT" + "Mon, 21 Dec 2015 19:39:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "206c7788-a32e-4f43-bef4-c09ccb404aaa" + "be3aa7ba-f9b7-4ddf-97a6-7db64a757df8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "eb5e4aec-b032-402d-a526-a13793918f51" + "b9855ad2-a689-4de0-9b22-f7e885accad5" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:29:54 GMT" + "Mon, 21 Dec 2015 19:39:55 GMT" ], "ETag": [ - "0x8D2EA2F38A5E795" + "0x8D30A3E80BBA721" ], "Location": [ "https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask" @@ -465,53 +465,53 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/updateTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90beb74f-7e73-44dd-8db0-51341226ec22" + "0fdc5f8a-5db5-4a8e-9a3a-313a8a89d32d" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:56 GMT" + "Mon, 21 Dec 2015 19:39:58 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2F38A5E795\",\r\n \"creationTime\": \"2015-11-11T00:29:54.7420565Z\",\r\n \"lastModified\": \"2015-11-11T00:29:54.7420565Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:55.2749957Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:29:54.7420565Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:55.2749957Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3E80BBA721\",\r\n \"creationTime\": \"2015-12-21T19:39:55.3403681Z\",\r\n \"lastModified\": \"2015-12-21T19:39:55.3403681Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-12-21T19:39:57.2478948Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:39:55.3403681Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:39:57.2478948Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:54 GMT" + "Mon, 21 Dec 2015 19:39:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3562a9ea-e55c-4462-9419-bf435e38f3fd" + "d2e5f912-ddb5-445c-96e8-d4b536f671fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "90beb74f-7e73-44dd-8db0-51341226ec22" + "0fdc5f8a-5db5-4a8e-9a3a-313a8a89d32d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:58 GMT" ], "ETag": [ - "0x8D2EA2F38A5E795" + "0x8D30A3E80BBA721" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,53 +520,53 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/updateTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0457d1db-9e78-46b6-a808-28a4a7e12efc" + "f7c69949-3101-4ab5-ab5f-24b524897887" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D2EA2F3A0FDD6D\",\r\n \"creationTime\": \"2015-11-11T00:29:54.7420565Z\",\r\n \"lastModified\": \"2015-11-11T00:29:57.1141997Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-11-11T00:29:55.2749957Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-11-11T00:29:54.7420565Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-11-11T00:29:55.2749957Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_3-20151110t233600z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_3-20151110t233600z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_3-20151110t233600z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstestaccount.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D30A3E83475666\",\r\n \"creationTime\": \"2015-12-21T19:39:55.3403681Z\",\r\n \"lastModified\": \"2015-12-21T19:39:59.6112486Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-12-21T19:39:57.2478948Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-12-21T19:39:55.3403681Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-12-21T19:39:57.2478948Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-1783593343_34-20151117t222514z\",\r\n \"nodeUrl\": \"https://pstestaccount.eastus.batch.azure.com/pools/testpool/nodes/tvm-1783593343_34-20151117t222514z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-1783593343_34-20151117t222514z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "778d08c4-0723-42fb-bd50-ef717b026b3c" + "a5a82d8c-d085-44cb-96fc-43462c613595" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0457d1db-9e78-46b6-a808-28a4a7e12efc" + "f7c69949-3101-4ab5-ab5f-24b524897887" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:58 GMT" ], "ETag": [ - "0x8D2EA2F3A0FDD6D" + "0x8D30A3E83475666" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -575,8 +575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/updateTaskJob/tasks/testTask?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateTaskJob/tasks/testTask?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYi90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n }\r\n}", "RequestHeaders": { @@ -587,35 +587,35 @@ "119" ], "client-request-id": [ - "1ecb02f3-b32d-4e08-9f3a-d5eff35bf793" + "2743385a-ab28-4760-8c93-66039cd468a9" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:56 GMT" + "Mon, 21 Dec 2015 19:39:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fb137c47-fbd3-4577-a33a-ac7f858d3627" + "44e66e31-ec33-432d-89e7-89c3731c4445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1ecb02f3-b32d-4e08-9f3a-d5eff35bf793" + "2743385a-ab28-4760-8c93-66039cd468a9" ], "DataServiceVersion": [ "3.0" @@ -624,10 +624,10 @@ "https://pstestaccount.eastus.batch.azure.com/jobs/updateTaskJob/tasks/testTask" ], "Date": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:58 GMT" ], "ETag": [ - "0x8D2EA2F3A0FDD6D" + "0x8D30A3E83475666" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -636,22 +636,22 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/updateTaskJob?api-version=2015-06-01.2.0&timeout=30", - "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestUri": "/jobs/updateTaskJob?api-version=2015-11-01.2.1&timeout=30", + "EncodedRequestUri": "L2pvYnMvdXBkYXRlVGFza0pvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLjIuMSZ0aW1lb3V0PTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "af503f3d-1ea5-4992-a831-35214250f134" + "dc40d7a0-ef9f-4f33-b09e-50c372efe1d5" ], "ocp-date": [ - "Wed, 11 Nov 2015 00:29:57 GMT" + "Mon, 21 Dec 2015 19:39:59 GMT" ], "return-client-request-id": [ "true" ], "User-Agent": [ - "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.2.0", + "Microsoft.Azure.Batch.Protocol.BatchRestClient/3.0.0.0", "AzurePowershell/v1.0.0" ] }, @@ -661,19 +661,19 @@ "chunked" ], "request-id": [ - "ccef37c8-6b8c-4c67-82c1-083f92798509" + "04e451fb-4d78-469f-9e31-0b267eafe300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "af503f3d-1ea5-4992-a831-35214250f134" + "dc40d7a0-ef9f-4f33-b09e-50c372efe1d5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Wed, 11 Nov 2015 00:29:58 GMT" + "Mon, 21 Dec 2015 19:39:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchSubtaskCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchSubtaskCommandTests.cs new file mode 100644 index 000000000000..00b6de0839d1 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchSubtaskCommandTests.cs @@ -0,0 +1,183 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Protocol; +using Microsoft.Azure.Batch.Protocol.Models; +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System; +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.Subtasks +{ + public class GetBatchSubtaskCommandTests + { + private GetBatchSubtaskCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public GetBatchSubtaskCommandTests() + { + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new GetBatchSubtaskCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetBatchSubtaskParametersTest() + { + // Setup cmdlet without required parameters + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.JobId = null; + cmdlet.TaskId = null; + + // Build a SubtaskInformation instead of querying the service on a List Subtasks call + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.JobId = "job-1"; + cmdlet.TaskId = "task1"; + + // Verify no exceptions occur + cmdlet.ExecuteCmdlet(); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ListBatchSubtasksWithoutFiltersTest() + { + // Setup cmdlet to list Subtasks without filters. Use WorkItemName and JobName. + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.JobId = "job-1"; + cmdlet.TaskId = "task1"; + + int[] idsOfConstructedSubtasks = new[] { 1, 2, 3 }; + + // Build some SubtaskInformation objects instead of querying the service on a List Subtasks call + CloudTaskListSubtasksResponse response = BatchTestHelpers.CreateCloudTaskListSubtasksResponse(idsOfConstructedSubtasks); + RequestInterceptor interceptor = CreateFakeListSubtasksInterceptor(cmdlet.TaskId, response); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Setup the cmdlet to write pipeline output to a list that can be examined later + List pipeline = new List(); + commandRuntimeMock.Setup(r => + r.WriteObject(It.IsAny())) + .Callback(s => pipeline.Add((PSSubtaskInformation)s)); + + cmdlet.ExecuteCmdlet(); + + // Verify that the cmdlet wrote the constructed Subtasks to the pipeline + Assert.Equal(3, pipeline.Count); + int SubtaskCount = 0; + foreach (PSSubtaskInformation s in pipeline) + { + Assert.True(idsOfConstructedSubtasks.Contains(s.Id.Value)); + SubtaskCount++; + } + Assert.Equal(idsOfConstructedSubtasks.Length, SubtaskCount); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ListBatchSubtasksMaxCountTest() + { + // Verify default max count + Assert.Equal(Microsoft.Azure.Commands.Batch.Utils.Constants.DefaultMaxCount, cmdlet.MaxCount); + + // Setup cmdlet to list Subtasks with a max count + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.JobId = "job-1"; + cmdlet.TaskId = "task1"; + int maxCount = 2; + cmdlet.MaxCount = maxCount; + + int[] idsOfConstructedSubtasks = new[] { 1, 2, 3 }; + + // Build some SubtaskInformation objects instead of querying the service on a List Subtasks call + CloudTaskListSubtasksResponse response = BatchTestHelpers.CreateCloudTaskListSubtasksResponse(idsOfConstructedSubtasks); + RequestInterceptor interceptor = CreateFakeListSubtasksInterceptor(cmdlet.TaskId, response); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Setup the cmdlet to write pipeline output to a list that can be examined later + List pipeline = new List(); + commandRuntimeMock.Setup(r => + r.WriteObject(It.IsAny())) + .Callback(s => pipeline.Add((PSSubtaskInformation)s)); + + cmdlet.ExecuteCmdlet(); + + // Verify that the max count was respected + Assert.Equal(maxCount, pipeline.Count); + + // Verify setting max count <= 0 doesn't return nothing + cmdlet.MaxCount = -5; + pipeline.Clear(); + cmdlet.ExecuteCmdlet(); + + Assert.Equal(idsOfConstructedSubtasks.Length, pipeline.Count); + } + + // TO DO: Since we have to fetch the task, the interceptor needs to handle that case too. Once + // the cmdlet can directly call the List Subtasks method by itself, update these test cases to + // use the generic interceptor creation helper. + private RequestInterceptor CreateFakeListSubtasksInterceptor(string taskId, CloudTaskListSubtasksResponse listSubtasksResponse) + { + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest listSubtaskRequest = baseRequest as + BatchRequest; + + if (listSubtaskRequest != null) + { + listSubtaskRequest.ServiceRequestFunc = (cancellationToken) => + { + Task task = Task.FromResult(listSubtasksResponse); + return task; + }; + } + else + { + BatchRequest getTaskRequest = + (BatchRequest)baseRequest; + + getTaskRequest.ServiceRequestFunc = (cancellationToken) => + { + CloudTaskGetResponse response = BatchTestHelpers.CreateCloudTaskGetResponse(taskId); + Task task = Task.FromResult(response); + return task; + }; + } + }); + + return interceptor; + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config b/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config index dc60a19847ee..83ffdf61a2e1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config @@ -1,6 +1,6 @@  - + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj index d015bf9f4da0..d9eb1f60d0fd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj @@ -44,9 +44,9 @@ ..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll - - False - ..\..\..\packages\Azure.Batch.2.0.2\lib\net45\Microsoft.Azure.Batch.dll + + ..\..\..\packages\Azure.Batch.3.0.0\lib\net45\Microsoft.Azure.Batch.dll + True ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll @@ -157,6 +157,8 @@ + + @@ -191,12 +193,16 @@ + - + + + + @@ -223,6 +229,7 @@ + @@ -295,6 +302,7 @@ Resources.resx + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/DisableBatchComputeNodeSchedulingCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/DisableBatchComputeNodeSchedulingCommand.cs new file mode 100644 index 000000000000..55641ef8b4d0 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/DisableBatchComputeNodeSchedulingCommand.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// 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; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet(VerbsLifecycle.Disable, Constants.AzureBatchComputeNodeScheduling, DefaultParameterSetName = Constants.IdParameterSet)] + public class DisableBatchComputeNodeSchedulingCommand : BatchObjectModelCmdletBase + { + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the pool that contains the compute node.")] + [ValidateNotNullOrEmpty] + public string PoolId { get; set; } + + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the compute node.")] + [ValidateNotNullOrEmpty] + public string Id { get; set; } + + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public PSComputeNode ComputeNode { get; set; } + + [Parameter] + [ValidateNotNullOrEmpty] + public DisableComputeNodeSchedulingOption? DisableSchedulingOption { get; set; } + + public override void ExecuteCmdlet() + { + DisableComputeNodeSchedulingParameters parameters = new DisableComputeNodeSchedulingParameters(this.BatchContext, + this.PoolId, this.Id, this.ComputeNode, this.AdditionalBehaviors) + { + DisableSchedulingOption = this.DisableSchedulingOption + }; + + BatchClient.DisableComputeNodeScheduling(parameters); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/EnableBatchComputeNodeSchedulingCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/EnableBatchComputeNodeSchedulingCommand.cs new file mode 100644 index 000000000000..31aa459c239d --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/EnableBatchComputeNodeSchedulingCommand.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Batch.Models; +using System; +using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet(VerbsLifecycle.Enable, Constants.AzureBatchComputeNodeScheduling, DefaultParameterSetName = Constants.IdParameterSet)] + public class EnableBatchComputeNodeSchedulingCommand : BatchObjectModelCmdletBase + { + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the pool that contains the compute node.")] + [ValidateNotNullOrEmpty] + public string PoolId { get; set; } + + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the compute node.")] + [ValidateNotNullOrEmpty] + public string Id { get; set; } + + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public PSComputeNode ComputeNode { get; set; } + + public override void ExecuteCmdlet() + { + ComputeNodeOperationParameters parameters = new ComputeNodeOperationParameters(this.BatchContext, this.PoolId, + this.Id, this.ComputeNode, this.AdditionalBehaviors); + + BatchClient.EnableComputeNodeScheduling(parameters); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml b/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml index bbbbb46e7f82..cd1b23d14e8a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml @@ -496,13 +496,20 @@ String - + AutoScaleFormula Specifies the formula for the desired number of compute nodes in the pool. String + + AutoScaleEvaluationInterval + + Specifies time interval at which to automatically adjust the pool size according to the AutoScale formula. The default value is 15 minutes. The minimum allowed value is 5 minutes. + + TimeSpan + BatchContext @@ -513,7 +520,7 @@ - + AutoScaleFormula Specifies the formula for the desired number of compute nodes in the pool. @@ -525,6 +532,18 @@ none + + AutoScaleEvaluationInterval + + Specifies time interval at which to automatically adjust the pool size according to the AutoScale formula. The default value is 15 minutes. The minimum allowed value is 5 minutes. + + TimeSpan + + TimeSpan + + + none + BatchContext @@ -6100,6 +6119,13 @@ String + + AutoScaleEvaluationInterval + + Specifies time interval at which to automatically adjust the pool size according to the AutoScale formula. The default value is 15 minutes. The minimum allowed value is 5 minutes. + + TimeSpan + AutoScaleFormula @@ -6316,6 +6342,18 @@ + + AutoScaleEvaluationInterval + + Specifies time interval at which to automatically adjust the pool size according to the AutoScale formula. The default value is 15 minutes. The minimum allowed value is 5 minutes. + + TimeSpan + + TimeSpan + + + none + AutoScaleFormula @@ -6656,6 +6694,13 @@ IDictionary + + MultiInstanceSettings + + Specifies information about how to run the multi-instance task. + + PSMultiInstanceSettings + ResourceFiles @@ -6735,6 +6780,13 @@ PSCloudJob + + MultiInstanceSettings + + Specifies information about how to run the multi-instance task. + + PSMultiInstanceSettings + ResourceFiles @@ -6880,6 +6932,18 @@ none + + MultiInstanceSettings + + Specifies information about how to run the multi-instance task. + + PSMultiInstanceSettings + + PSTaskConstraints + + + none + ResourceFiles @@ -12182,4 +12246,781 @@ + + + + + Disable-AzureBatchComputeNodeScheduling + + + Disables task scheduling on the specified compute node. + + + + + Disable + AzureBatchComputeNodeScheduling + + + + Disables task scheduling on the specified compute node. + + + + + Disable-AzureBatchComputeNodeScheduling + + PoolId + + The id of the pool. + + string + + + Id + + The id of the compute node. + + string + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + DisableSchedulingOption + + Specifies what to do with currently running tasks. The default is Requeue. + + DisableComputeNodeSchedulingOption + + + + Disable-AzureBatchComputeNodeScheduling + + ComputeNode + + The PSComputeNode object representing the compute node to disable task scheduling on. Use the Get-AzureBatchComputeNode cmdlet to get a PSComputeNode instance. + + PSComputeNode + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + DisableSchedulingOption + + Specifies what to do with currently running tasks. The default is Requeue. + + DisableComputeNodeSchedulingOption + + + + + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + + BatchAccountContext + + BatchAccountContext + + + + + + ComputeNode + + The PSComputeNode object representing the compute node to disable task scheduling on. Use the Get-AzureBatchComputeNode cmdlet to get a PSComputeNode instance. + + + PSComputeNode + + PSComputeNode + + + + + + DisableSchedulingOption + + Specifies what to do with currently running tasks. The default is Requeue. + + + DisableComputeNodeSchedulingOption + + DisableComputeNodeSchedulingOption + + + + + + Id + + The id of the compute node. + + + string + + string + + + + + + PoolId + + The id of the pool. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Disable-AzureBatchComputeNodeScheduling "myPool" "tvm-1783593343_34-20151117t222514z" -BatchContext $context + + + Description + ----------- + Disables task scheduling on compute node "tvm-1783593343_34-20151117t222514z" in pool "myPool". + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + Get-AzureBatchComputeNode "myPool" "tvm-1783593343_34-20151117t222514z" -BatchContext $context | Disable-AzureBatchComputeNodeScheduling -BatchContext $context + + + Description + ----------- + Disables task scheduling on compute node "tvm-1783593343_34-20151117t222514z" in pool "myPool". + + + + + + + + + + + + + + + + + + + + + + + + Enable-AzureBatchComputeNodeScheduling + + + Enables task scheduling on the specified compute node. + + + + + Enable + AzureBatchComputeNodeScheduling + + + + Enables task scheduling on the specified compute node. + + + + + Enable-AzureBatchComputeNodeScheduling + + PoolId + + The id of the pool. + + string + + + Id + + The id of the compute node. + + string + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + + Enable-AzureBatchComputeNodeScheduling + + ComputeNode + + The PSComputeNode object representing the compute node to enable task scheduling on. Use the Get-AzureBatchComputeNode cmdlet to get a PSComputeNode instance. + + PSComputeNode + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys 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-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + + BatchAccountContext + + BatchAccountContext + + + + + + ComputeNode + + The PSComputeNode object representing the compute node to enable task scheduling on. Use the Get-AzureBatchComputeNode cmdlet to get a PSComputeNode instance. + + + PSComputeNode + + PSComputeNode + + + + + + Id + + The id of the compute node. + + + string + + string + + + + + + PoolId + + The id of the pool. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Enable-AzureBatchComputeNodeScheduling "myPool" "tvm-1783593343_34-20151117t222514z" -BatchContext $context + + + Description + ----------- + Enables task scheduling on compute node "tvm-1783593343_34-20151117t222514z" in pool "myPool". + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + Get-AzureBatchComputeNode "myPool" "tvm-1783593343_34-20151117t222514z" -BatchContext $context | Enable-AzureBatchComputeNodeScheduling -BatchContext $context + + + Description + ----------- + Enables task scheduling on compute node "tvm-1783593343_34-20151117t222514z" in pool "myPool". + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureBatchSubtask + + + Gets the subtask information of the specified task. + + + + + Get + AzureBatchSubtask + + + + Gets the subtask information of the specified task. + + + + + Get-AzureBatchSubtask + + JobId + + The id of the job. + + string + + + TaskId + + The id of the task. + + string + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + MaxCount + + The maximum number of subtasks 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 + + + + Get-AzureBatchSubtask + + Task + + The PSCloudTask object representing the task. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask instance. + + PSCloudTask + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + MaxCount + + The maximum number of subtasks 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-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + + BatchAccountContext + + BatchAccountContext + + + + + + JobId + + The id of the job. + + + string + + string + + + + + + MaxCount + + The maximum number of subtasks 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 + + + + + + Task + + The PSCloudTask object representing the task. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask instance. + + + PSCloudTask + + PSCloudTask + + + + + + TaskId + + The id of the task. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + PSSubtaskInformation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Get-AzureBatchSubtask "job-01" "myTask" -BatchContext $context + + ComputeNodeInformation : Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation + EndTime : 1/1/1601 12:01:45 AM + ExitCode : 0 + Id : 1 + PreviousState : Running + PreviousStateTransitionTime : 1/1/1601 12:01:37 AM + SchedulingError : + StartTime : 1/1/1601 12:01:37 AM + State : Completed + StateTransitionTime : 1/1/1601 12:01:45 AM + + ComputeNodeInformation : Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation + EndTime : 1/1/1601 12:01:45 AM + ExitCode : 0 + Id : 2 + PreviousState : Running + PreviousStateTransitionTime : 1/1/1601 12:01:37 AM + SchedulingError : + StartTime : 1/1/1601 12:01:37 AM + State : Completed + StateTransitionTime : 1/1/1601 12:01:45 AM + + + Description + ----------- + Gets the subtask information for task "myTask" under job "job-01". + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + Get-AzureBatchTask "job-01" "myTask" -BatchContext $context | Get-AzureBatchSubtask -BatchContext $context + + ComputeNodeInformation : Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation + EndTime : 1/1/1601 12:01:45 AM + ExitCode : 0 + Id : 1 + PreviousState : Running + PreviousStateTransitionTime : 1/1/1601 12:01:37 AM + SchedulingError : + StartTime : 1/1/1601 12:01:37 AM + State : Completed + StateTransitionTime : 1/1/1601 12:01:45 AM + + ComputeNodeInformation : Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation + EndTime : 1/1/1601 12:01:45 AM + ExitCode : 0 + Id : 2 + PreviousState : Running + PreviousStateTransitionTime : 1/1/1601 12:01:37 AM + SchedulingError : + StartTime : 1/1/1601 12:01:37 AM + State : Completed + StateTransitionTime : 1/1/1601 12:01:45 AM + + + Description + ----------- + Gets the subtask information for task "myTask" under job "job-01". + + + + + + + + + + + + + + + + + + + + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAffinityInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAffinityInformation.cs index 8e76420d8544..30786dc1bcf3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAffinityInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAffinityInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoPoolSpecification.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoPoolSpecification.cs index cf709a4d9d0a..fe8fb24a498a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoPoolSpecification.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoPoolSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleEvaluation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleEvaluation.cs index 0ff8b6204e7e..90797fcc4804 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleEvaluation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleEvaluation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRun.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRun.cs index 5c19a7298103..c0f8fcd1cdd5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRun.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRun.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRunError.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRunError.cs index 6f77b3ff26bc..85fc80e6e51d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRunError.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSAutoScaleRunError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificate.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificate.cs index a9b0577740eb..3e108ded4b6f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificate.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificate.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificateReference.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificateReference.cs index 1a4c8ce09676..9d302814f6e8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificateReference.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCertificateReference.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -96,7 +96,7 @@ public string ThumbprintAlgorithm } } - public Microsoft.Azure.Batch.Common.CertificateVisibility Visibility + public Microsoft.Azure.Batch.Common.CertificateVisibility? Visibility { get { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJob.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJob.cs index beded874bd43..183643fb9a19 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJob.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJob.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJobSchedule.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJobSchedule.cs index 7f3d62401a98..fb6f0c5e49c3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJobSchedule.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudJobSchedule.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudPool.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudPool.cs index 9593c207d8ad..45d654c1765e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudPool.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudPool.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -85,6 +85,18 @@ public System.Boolean? AutoScaleEnabled } } + public System.TimeSpan? AutoScaleEvaluationInterval + { + get + { + return this.omObject.AutoScaleEvaluationInterval; + } + set + { + this.omObject.AutoScaleEvaluationInterval = value; + } + } + public string AutoScaleFormula { get diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudTask.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudTask.cs index 067e1e51a5ee..70ea9501b9dd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudTask.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSCloudTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -38,6 +38,8 @@ public class PSCloudTask private PSComputeNodeInformation computeNodeInformation; + private PSMultiInstanceSettings multiInstanceSettings; + private IList environmentSettings; private PSTaskExecutionInformation executionInformation; @@ -112,6 +114,31 @@ public PSComputeNodeInformation ComputeNodeInformation } } + public PSMultiInstanceSettings MultiInstanceSettings + { + get + { + if (((this.multiInstanceSettings == null) + && (this.omObject.MultiInstanceSettings != null))) + { + this.multiInstanceSettings = new PSMultiInstanceSettings(this.omObject.MultiInstanceSettings); + } + return this.multiInstanceSettings; + } + set + { + if ((value == null)) + { + this.omObject.MultiInstanceSettings = null; + } + else + { + this.omObject.MultiInstanceSettings = value.omObject; + } + this.multiInstanceSettings = value; + } + } + public System.DateTime? CreationTime { get diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNode.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNode.cs index 7def3e978d93..56ea9cf9ace6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNode.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNode.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -69,6 +69,14 @@ public string Url } } + public Microsoft.Azure.Batch.Common.SchedulingState? SchedulingState + { + get + { + return this.omObject.SchedulingState; + } + } + public Microsoft.Azure.Batch.Common.ComputeNodeState? State { get diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeError.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeError.cs index 1685c2728056..0c43c5924e5d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeError.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeInformation.cs index 35ba5ebb3a07..6dbd3852ab57 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -74,5 +74,21 @@ public string PoolId return this.omObject.PoolId; } } + + public string TaskRootDirectory + { + get + { + return this.omObject.TaskRootDirectory; + } + } + + public string TaskRootDirectoryUrl + { + get + { + return this.omObject.TaskRootDirectoryUrl; + } + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeUser.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeUser.cs index 4fb83d38f266..1a867e36bcbb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeUser.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSComputeNodeUser.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSDeleteCertificateError.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSDeleteCertificateError.cs index b2a8cf3ea641..9a7af93dfa9e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSDeleteCertificateError.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSDeleteCertificateError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSEnvironmentSetting.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSEnvironmentSetting.cs index 227a59400624..61768549974f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSEnvironmentSetting.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSEnvironmentSetting.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSFileProperties.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSFileProperties.cs index 2956e775ee50..fce611ce257f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSFileProperties.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSFileProperties.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobConstraints.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobConstraints.cs index 200d51976f1b..f3a6e42b3c2b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobConstraints.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobConstraints.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobExecutionInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobExecutionInformation.cs index 4c333eaaac34..5b9f6425eadb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobExecutionInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobManagerTask.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobManagerTask.cs index 8c6be0511a4b..72247ab195c4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobManagerTask.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobManagerTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs index 3e13c16bafa9..60b38e4be216 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTask.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTask.cs index 96a041843dc9..922ac935cf2e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTask.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,7 +34,7 @@ public class PSJobPreparationTask internal Microsoft.Azure.Batch.JobPreparationTask omObject; - private IEnumerable resourceFiles; + private IList resourceFiles; private IList environmentSettings; @@ -78,7 +78,7 @@ public string CommandLine } } - public IEnumerable ResourceFiles + public IList ResourceFiles { get { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs index 9f03c8be262d..99f95ca078d7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -106,6 +106,14 @@ public Microsoft.Azure.Batch.Common.JobPreparationTaskState State } } + public string TaskRootDirectory + { + get + { + return this.omObject.TaskRootDirectory; + } + } + public string TaskRootDirectoryUrl { get diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTask.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTask.cs index cef4e02f59fd..684c3b77a366 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTask.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs index d64702bf7f8e..d7b5cc4b5ad4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,7 +34,7 @@ public class PSJobReleaseTaskExecutionInformation internal Microsoft.Azure.Batch.JobReleaseTaskExecutionInformation omObject; - private PSTaskSchedulingError taskSchedulingError; + private PSTaskSchedulingError schedulingError; internal PSJobReleaseTaskExecutionInformation(Microsoft.Azure.Batch.JobReleaseTaskExecutionInformation omObject) { @@ -77,6 +77,14 @@ public Microsoft.Azure.Batch.Common.JobReleaseTaskState State } } + public string TaskRootDirectory + { + get + { + return this.omObject.TaskRootDirectory; + } + } + public string TaskRootDirectoryUrl { get @@ -85,16 +93,16 @@ public string TaskRootDirectoryUrl } } - public PSTaskSchedulingError TaskSchedulingError + public PSTaskSchedulingError SchedulingError { get { - if (((this.taskSchedulingError == null) - && (this.omObject.TaskSchedulingError != null))) + if (((this.schedulingError == null) + && (this.omObject.SchedulingError != null))) { - this.taskSchedulingError = new PSTaskSchedulingError(this.omObject.TaskSchedulingError); + this.schedulingError = new PSTaskSchedulingError(this.omObject.SchedulingError); } - return this.taskSchedulingError; + return this.schedulingError; } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleExecutionInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleExecutionInformation.cs index 76cd31419cea..e01f4da3beb3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleExecutionInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleStatistics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleStatistics.cs index 80dee69b856b..0369ed380238 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleStatistics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobScheduleStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSchedulingError.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSchedulingError.cs index 08c89ca2c627..4601071d65d4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSchedulingError.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSchedulingError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSpecification.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSpecification.cs index c717c22a83e2..5dbe7cd61bf7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSpecification.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobStatistics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobStatistics.cs index 95dd2bc45a28..54c0b16fdfb7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobStatistics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSJobStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMetadataItem.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMetadataItem.cs index 9f621bb240d5..26f4136a83ec 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMetadataItem.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMetadataItem.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMultiInstanceSettings.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMultiInstanceSettings.cs new file mode 100644 index 000000000000..cba87366996b --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSMultiInstanceSettings.cs @@ -0,0 +1,112 @@ +// ----------------------------------------------------------------------------- +// +// 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. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public class PSMultiInstanceSettings + { + + internal Microsoft.Azure.Batch.MultiInstanceSettings omObject; + + private IList commonResourceFiles; + + public PSMultiInstanceSettings(int numberOfInstances) + { + this.omObject = new Microsoft.Azure.Batch.MultiInstanceSettings(numberOfInstances); + } + + internal PSMultiInstanceSettings(Microsoft.Azure.Batch.MultiInstanceSettings omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public IList CommonResourceFiles + { + get + { + if (((this.commonResourceFiles == null) + && (this.omObject.CommonResourceFiles != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.CommonResourceFiles.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSResourceFile(enumerator.Current)); + } + this.commonResourceFiles = list; + } + return this.commonResourceFiles; + } + set + { + if ((value == null)) + { + this.omObject.CommonResourceFiles = null; + } + else + { + this.omObject.CommonResourceFiles = new List(); + } + this.commonResourceFiles = value; + } + } + + public string CoordinationCommandLine + { + get + { + return this.omObject.CoordinationCommandLine; + } + set + { + this.omObject.CoordinationCommandLine = value; + } + } + + public int NumberOfInstances + { + get + { + return this.omObject.NumberOfInstances; + } + set + { + this.omObject.NumberOfInstances = value; + } + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNameValuePair.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNameValuePair.cs index 3fa2f98afd11..7d22c081218e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNameValuePair.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNameValuePair.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNodeFile.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNodeFile.cs index c81da1b55145..d5a1581f387e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNodeFile.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSNodeFile.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolInformation.cs index a3883d31f61d..9232472f23a7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolSpecification.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolSpecification.cs index 5bb1ada6971f..0321e01f50ba 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolSpecification.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -68,6 +68,18 @@ public System.Boolean? AutoScaleEnabled } } + public System.TimeSpan? AutoScaleEvaluationInterval + { + get + { + return this.omObject.AutoScaleEvaluationInterval; + } + set + { + this.omObject.AutoScaleEvaluationInterval = value; + } + } + public string AutoScaleFormula { get diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolStatistics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolStatistics.cs index ab1ff509d338..35b6f5306ee0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolStatistics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolUsageMetrics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolUsageMetrics.cs index 653181b2be6a..edbde2dfce88 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolUsageMetrics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSPoolUsageMetrics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSRecentJob.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSRecentJob.cs index d26fa52de922..c9c0c220fda8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSRecentJob.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSRecentJob.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResizeError.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResizeError.cs index 7d06f9668380..8146018d244a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResizeError.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResizeError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceFile.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceFile.cs index e31b3e468c2b..8abcf82b4bef 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceFile.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceFile.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceStatistics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceStatistics.cs index a1a2fe65908a..13c727d2899a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceStatistics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSResourceStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSchedule.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSchedule.cs index e0bdd6d15a20..68f45eed0ad6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSchedule.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSchedule.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTask.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTask.cs index 459888d0fd27..06bf271e0453 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTask.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTaskInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTaskInformation.cs index b93d99a16f58..4ee56e0d23fc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTaskInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSStartTaskInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSubtaskInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSubtaskInformation.cs new file mode 100644 index 000000000000..b914ce1b2958 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSSubtaskInformation.cs @@ -0,0 +1,140 @@ +// ----------------------------------------------------------------------------- +// +// 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. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public class PSSubtaskInformation + { + + internal Microsoft.Azure.Batch.SubtaskInformation omObject; + + private PSComputeNodeInformation computeNodeInformation; + + private PSTaskSchedulingError schedulingError; + + internal PSSubtaskInformation(Microsoft.Azure.Batch.SubtaskInformation omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public PSComputeNodeInformation ComputeNodeInformation + { + get + { + if (((this.computeNodeInformation == null) + && (this.omObject.ComputeNodeInformation != null))) + { + this.computeNodeInformation = new PSComputeNodeInformation(this.omObject.ComputeNodeInformation); + } + return this.computeNodeInformation; + } + } + + public System.DateTime? EndTime + { + get + { + return this.omObject.EndTime; + } + } + + public System.Int32? ExitCode + { + get + { + return this.omObject.ExitCode; + } + } + + public System.Int32? Id + { + get + { + return this.omObject.Id; + } + } + + public Microsoft.Azure.Batch.Common.TaskState? PreviousState + { + get + { + return this.omObject.PreviousState; + } + } + + public System.DateTime? PreviousStateTransitionTime + { + get + { + return this.omObject.PreviousStateTransitionTime; + } + } + + public PSTaskSchedulingError SchedulingError + { + get + { + if (((this.schedulingError == null) + && (this.omObject.SchedulingError != null))) + { + this.schedulingError = new PSTaskSchedulingError(this.omObject.SchedulingError); + } + return this.schedulingError; + } + } + + public System.DateTime? StartTime + { + get + { + return this.omObject.StartTime; + } + } + + public Microsoft.Azure.Batch.Common.TaskState? State + { + get + { + return this.omObject.State; + } + } + + public System.DateTime? StateTransitionTime + { + get + { + return this.omObject.StateTransitionTime; + } + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskConstraints.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskConstraints.cs index 493cc882641d..8c3d5f5e0438 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskConstraints.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskConstraints.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskExecutionInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskExecutionInformation.cs index 569607054c6a..01b7cefbc30a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskExecutionInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskInformation.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskInformation.cs index f83f911ab67a..a70c33c2d0b3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskInformation.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -77,6 +77,14 @@ public string TaskId } } + public System.Int32? SubtaskId + { + get + { + return this.omObject.SubtaskId; + } + } + public Microsoft.Azure.Batch.Common.TaskState TaskState { get diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingError.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingError.cs index 64fe5bf8d2b4..285b069cdf04 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingError.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingPolicy.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingPolicy.cs index 94529ef5ca2f..b66337ee0cf6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingPolicy.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskSchedulingPolicy.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskStatistics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskStatistics.cs index 81c7ddd5fe9d..60e021d035f3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskStatistics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSTaskStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSUsageStatistics.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSUsageStatistics.cs index 1caa0ffbfef8..2ec860ac3591 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSUsageStatistics.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models.Generated/PSUsageStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs index 8b3ac5324b51..ac2acee4cbf5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs @@ -143,5 +143,56 @@ public void ReimageComputeNode(ReimageComputeNodeParameters parameters) poolOperations.Reimage(parameters.PoolId, parameters.ComputeNodeId, parameters.ReimageOption, parameters.AdditionalBehaviors); } } + + /// + /// Enables task scheduling on the specified compute node. + /// + /// The parameters specifying the compute node. + public void EnableComputeNodeScheduling(ComputeNodeOperationParameters parameters) + { + if (parameters == null) + { + throw new ArgumentNullException("parameters"); + } + + string computeNodeId = parameters.ComputeNode == null ? parameters.ComputeNodeId : parameters.ComputeNode.Id; + WriteVerbose(string.Format(Resources.EnableComputeNodeScheduling, computeNodeId)); + + if (parameters.ComputeNode != null) + { + parameters.ComputeNode.omObject.EnableScheduling(parameters.AdditionalBehaviors); + } + else + { + PoolOperations poolOperations = parameters.Context.BatchOMClient.PoolOperations; + poolOperations.EnableComputeNodeScheduling(parameters.PoolId, parameters.ComputeNodeId, parameters.AdditionalBehaviors); + } + } + + /// + /// Disables task scheduling on the specified compute node. + /// + /// The parameters specifying the compute node. + public void DisableComputeNodeScheduling(DisableComputeNodeSchedulingParameters parameters) + { + if (parameters == null) + { + throw new ArgumentNullException("parameters"); + } + + string computeNodeId = parameters.ComputeNode == null ? parameters.ComputeNodeId : parameters.ComputeNode.Id; + WriteVerbose(string.Format(Resources.DisableComputeNodeScheduling, computeNodeId)); + + if (parameters.ComputeNode != null) + { + parameters.ComputeNode.omObject.DisableScheduling(parameters.DisableSchedulingOption, parameters.AdditionalBehaviors); + } + else + { + PoolOperations poolOperations = parameters.Context.BatchOMClient.PoolOperations; + poolOperations.DisableComputeNodeScheduling(parameters.PoolId, parameters.ComputeNodeId, parameters.DisableSchedulingOption, + parameters.AdditionalBehaviors); + } + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs index 0526c5ea3a0d..bc589cb61595 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs @@ -92,6 +92,7 @@ public void CreatePool(NewPoolParameters parameters) if (!string.IsNullOrEmpty(parameters.AutoScaleFormula)) { pool.AutoScaleEnabled = true; + pool.AutoScaleEvaluationInterval = parameters.AutoScaleEvaluationInterval; pool.AutoScaleFormula = parameters.AutoScaleFormula; } else if (parameters.TargetDedicated.HasValue) @@ -207,8 +208,8 @@ public void StopResizePool(BatchAccountContext context, string poolId, IEnumerab /// /// Enables automatic scaling on the specified pool. /// - /// The parameters specifying the pool and autoscale formula. - public void EnableAutoScale(AutoScaleParameters parameters) + /// The parameters specifying the pool and autoscale parameters. + public void EnableAutoScale(EnableAutoScaleParameters parameters) { if (parameters == null) { @@ -219,7 +220,8 @@ public void EnableAutoScale(AutoScaleParameters parameters) WriteVerbose(string.Format(Resources.EnableAutoScale, poolId, parameters.AutoScaleFormula)); PoolOperations poolOperations = parameters.Context.BatchOMClient.PoolOperations; - poolOperations.EnableAutoScale(poolId, parameters.AutoScaleFormula, parameters.AdditionalBehaviors); + poolOperations.EnableAutoScale(poolId, parameters.AutoScaleFormula, parameters.AutoScaleEvaluationInterval, + parameters.AdditionalBehaviors); } /// @@ -244,7 +246,7 @@ public void DisableAutoScale(PoolOperationParameters parameters) /// Gets the result of evaluating an automatic scaling formula on the specified pool. /// /// The parameters specifying the pool and autoscale formula. - public PSAutoScaleEvaluation EvaluateAutoScale(AutoScaleParameters parameters) + public PSAutoScaleEvaluation EvaluateAutoScale(EvaluateAutoScaleParameters parameters) { if (parameters == null) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs index b03205a20f1b..7f61af99fc24 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs @@ -124,6 +124,12 @@ public void CreateTask(NewTaskParameters parameters) task.Constraints = parameters.Constraints.omObject; } + if (parameters.MultiInstanceSettings != null) + { + Utils.Utils.MultiInstanceSettingsSyncCollections(parameters.MultiInstanceSettings); + task.MultiInstanceSettings = parameters.MultiInstanceSettings.omObject; + } + WriteVerbose(string.Format(Resources.CreatingTask, parameters.TaskId)); if (parameters.Job != null) { @@ -199,5 +205,36 @@ public void TerminateTask(TaskOperationParameters parameters) jobOperations.TerminateTask(parameters.JobId, parameters.TaskId, parameters.AdditionalBehaviors); } } + + /// + /// Lists the subtasks matching the specified filter options. + /// + /// The options to use when querying for subtasks. + /// The subtasks matching the specified filter options. + public IEnumerable ListSubtasks(ListSubtaskOptions options) + { + if (options == null) + { + throw new ArgumentNullException("options"); + } + + string taskId = options.Task == null ? options.TaskId : options.Task.Id; + string verboseLogString = string.Format(Resources.GetSubtaskNoFilter, taskId); + WriteVerbose(verboseLogString); + + IPagedEnumerable subtasks = null; + if (options.Task != null) + { + subtasks = options.Task.omObject.ListSubtasks(additionalBehaviors: options.AdditionalBehaviors); + } + else + { + JobOperations jobOperations = options.Context.BatchOMClient.JobOperations; + subtasks = jobOperations.ListSubtasks(options.JobId, options.TaskId, additionalBehaviors: options.AdditionalBehaviors); + } + Func mappingFunction = s => { return new PSSubtaskInformation(s); }; + return PSPagedEnumerable.CreateWithMaxCount( + subtasks, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/DisableComputeNodeSchedulingParameters.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/DisableComputeNodeSchedulingParameters.cs new file mode 100644 index 000000000000..e733ab4345ce --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/DisableComputeNodeSchedulingParameters.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Properties; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public class DisableComputeNodeSchedulingParameters : ComputeNodeOperationParameters + { + public DisableComputeNodeSchedulingParameters(BatchAccountContext context, string poolId, string computeNodeId, + PSComputeNode computeNode, IEnumerable additionalBehaviors = null) + : base(context, poolId, computeNodeId, computeNode, additionalBehaviors) + { } + + /// + /// Specifies what to do with currently running tasks. + /// + public DisableComputeNodeSchedulingOption? DisableSchedulingOption { get; set; } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/EnableAutoScaleParameters.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/EnableAutoScaleParameters.cs new file mode 100644 index 000000000000..6338ff61284a --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/EnableAutoScaleParameters.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// 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 EnableAutoScaleParameters : PoolOperationParameters + { + public EnableAutoScaleParameters(BatchAccountContext context, string poolId, PSCloudPool pool, + IEnumerable additionalBehaviors = null) + : base(context, poolId, pool, additionalBehaviors) + { } + + /// + /// The formula for the desired number of compute nodes in the pool. + /// + public string AutoScaleFormula { get; set; } + + /// + /// The time interval at which to automatically adjust the pool size according to the AutoScale formula. + /// + public TimeSpan? AutoScaleEvaluationInterval { get; set; } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/AutoScaleParameters.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/EvaluateAutoScaleParameters.cs similarity index 88% rename from src/ResourceManager/AzureBatch/Commands.Batch/Models/AutoScaleParameters.cs rename to src/ResourceManager/AzureBatch/Commands.Batch/Models/EvaluateAutoScaleParameters.cs index b41e83429fe4..936281ab2f73 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/AutoScaleParameters.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/EvaluateAutoScaleParameters.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Commands.Batch.Models { - public class AutoScaleParameters : PoolOperationParameters + public class EvaluateAutoScaleParameters : PoolOperationParameters { - public AutoScaleParameters(BatchAccountContext context, string poolId, PSCloudPool pool, string autoScaleFormula, + public EvaluateAutoScaleParameters(BatchAccountContext context, string poolId, PSCloudPool pool, string autoScaleFormula, IEnumerable additionalBehaviors = null) : base(context, poolId, pool, additionalBehaviors) { if (string.IsNullOrWhiteSpace(autoScaleFormula)) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/ListSubtaskOptions.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/ListSubtaskOptions.cs new file mode 100644 index 000000000000..b5043b8c2293 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/ListSubtaskOptions.cs @@ -0,0 +1,32 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public class ListSubtaskOptions : TaskOperationParameters + { + public ListSubtaskOptions(BatchAccountContext context, string jobId, string taskId, + PSCloudTask task, IEnumerable additionalBehaviors = null) + : base(context, jobId, taskId, task, additionalBehaviors) + { } + + /// + /// The maximum number of subtasks to return. + /// + public int MaxCount { get; set; } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewPoolParameters.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewPoolParameters.cs index 4092829f488e..234b1ffa53df 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewPoolParameters.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewPoolParameters.cs @@ -67,6 +67,11 @@ public NewPoolParameters(BatchAccountContext context, string poolId, IEnumerable /// public int? TargetDedicated { get; set; } + /// + /// The time interval at which to automatically adjust the pool size according to the AutoScaleFormula. + /// + public TimeSpan? AutoScaleEvaluationInterval { get; set; } + /// /// The AutoScale formula to use with the pool. /// diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewTaskParameters.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewTaskParameters.cs index ddc7f8843e2e..59fd17ca6987 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewTaskParameters.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/NewTaskParameters.cs @@ -71,5 +71,10 @@ public NewTaskParameters(BatchAccountContext context, string jobId, PSCloudJob j /// The task constraints. /// public PSTaskConstraints Constraints { get; set; } + + /// + /// Information about how to run the multi-instance task. + /// + public PSMultiInstanceSettings MultiInstanceSettings { get; set; } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/PSPagedEnumerable.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/PSPagedEnumerable.cs index 011258c89858..5cf8b051b002 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/PSPagedEnumerable.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/PSPagedEnumerable.cs @@ -16,6 +16,7 @@ using System.Collections; using System.Collections.Generic; using System.Linq; +using System.Threading; using System.Threading.Tasks; using Microsoft.Azure.Batch; @@ -123,14 +124,14 @@ public bool MoveNext() return ((IEnumerator)this.omEnumerator).MoveNext(); } - public Task MoveNextAsync() + public Task MoveNextAsync(CancellationToken cancellationToken) { - return this.omEnumerator.MoveNextAsync(); + return this.omEnumerator.MoveNextAsync(cancellationToken); } - public Task ResetAsync() + public Task ResetAsync(CancellationToken cancellationToken) { - return this.omEnumerator.ResetAsync(); + return this.omEnumerator.ResetAsync(cancellationToken); } public void Reset() diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs index 9e295ca675b4..df9ea805a4e7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs @@ -29,15 +29,23 @@ public class EnableBatchAutoScaleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string Id { get; set; } - [Parameter(Position = 1, Mandatory = true, - HelpMessage = "The formula for the desired number of compute nodes in the pool.")] + [Parameter(Position = 1)] [ValidateNotNullOrEmpty] public string AutoScaleFormula { get; set; } + [Parameter(Position = 2)] + [ValidateNotNullOrEmpty] + public TimeSpan? AutoScaleEvaluationInterval { get; set; } + public override void ExecuteCmdlet() { - AutoScaleParameters parameters = new AutoScaleParameters(this.BatchContext, this.Id, null, - this.AutoScaleFormula, this.AdditionalBehaviors); + EnableAutoScaleParameters parameters = new EnableAutoScaleParameters(this.BatchContext, this.Id, + pool: null, additionalBehaviors: this.AdditionalBehaviors) + { + AutoScaleFormula = this.AutoScaleFormula, + AutoScaleEvaluationInterval = this.AutoScaleEvaluationInterval + }; + BatchClient.EnableAutoScale(parameters); } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs index 876486307c3f..69fb814477b2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs @@ -56,6 +56,10 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public int? TargetDedicated { get; set; } + [Parameter(ParameterSetName = AutoScaleParameterSet)] + [ValidateNotNullOrEmpty] + public TimeSpan? AutoScaleEvaluationInterval { get; set; } + [Parameter(ParameterSetName = AutoScaleParameterSet)] [ValidateNotNullOrEmpty] public string AutoScaleFormula { get; set; } @@ -93,6 +97,7 @@ public override void ExecuteCmdlet() TargetOSVersion = this.TargetOSVersion, ResizeTimeout = this.ResizeTimeout, TargetDedicated = this.TargetDedicated, + AutoScaleEvaluationInterval = this.AutoScaleEvaluationInterval, AutoScaleFormula = this.AutoScaleFormula, MaxTasksPerComputeNode = this.MaxTasksPerComputeNode, TaskSchedulingPolicy = this.TaskSchedulingPolicy, diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs index 3e100095444f..704c857d148b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs @@ -35,7 +35,7 @@ public class TestBatchAutoScaleCommand : BatchObjectModelCmdletBase public override void ExecuteCmdlet() { - AutoScaleParameters parameters = new AutoScaleParameters(this.BatchContext, this.Id, null, + EvaluateAutoScaleParameters parameters = new EvaluateAutoScaleParameters(this.BatchContext, this.Id, null, this.AutoScaleFormula, this.AdditionalBehaviors); WriteObject(BatchClient.EvaluateAutoScale(parameters)); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs index 21b58c0af113..0684b6a2476c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs @@ -177,6 +177,15 @@ internal static string DisableAutoScale { } } + /// + /// Looks up a localized string similar to Disabling task scheduling on compute node {0}.. + /// + internal static string DisableComputeNodeScheduling { + get { + return ResourceManager.GetString("DisableComputeNodeScheduling", resourceCulture); + } + } + /// /// Looks up a localized string similar to Disabling job {0}.. /// @@ -222,6 +231,15 @@ internal static string EnableAutoScale { } } + /// + /// Looks up a localized string similar to Enabling task scheduling on compute node {0}.. + /// + internal static string EnableComputeNodeScheduling { + get { + return ResourceManager.GetString("EnableComputeNodeScheduling", resourceCulture); + } + } + /// /// Looks up a localized string similar to Enabling job {0}.. /// @@ -483,6 +501,24 @@ internal static string GetResourceGroupAccounts { } } + /// + /// Looks up a localized string similar to Getting all subtask information for task {0}.. + /// + internal static string GetSubtaskNoFilter { + get { + return ResourceManager.GetString("GetSubtaskNoFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Getting subtask information matching the specified OData filter for task {0}.. + /// + internal static string GetSubtaskOData { + get { + return ResourceManager.GetString("GetSubtaskOData", resourceCulture); + } + } + /// /// Looks up a localized string similar to Getting task "{0}" from job "{1}". /// diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx index 0c97f8f6bcf1..7d1b5c758f0a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx @@ -156,6 +156,9 @@ Disabling automatic scaling on pool {0}. + + Disabling task scheduling on compute node {0}. + Disabling job {0}. @@ -171,6 +174,9 @@ Enabling automatic scaling on pool {0} using the formula: {1} + + Enabling task scheduling on compute node {0}. + Enabling job {0}. @@ -258,6 +264,12 @@ Getting accounts in resource group {0} + + Getting all subtask information for task {0}. + + + Getting subtask information matching the specified OData filter for task {0}. + Getting task "{0}" from job "{1}" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchSubtaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchSubtaskCommand.cs new file mode 100644 index 000000000000..c323fe517581 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchSubtaskCommand.cs @@ -0,0 +1,64 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Batch.Models; +using System; +using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchSubtask, DefaultParameterSetName = Constants.ODataFilterParameterSet), + OutputType(typeof(PSSubtaskInformation))] + public class GetBatchSubtaskCommand : BatchObjectModelCmdletBase + { + private int maxCount = Constants.DefaultMaxCount; + + [Parameter(Position = 0, ParameterSetName = Constants.ODataFilterParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job which contains the task.")] + [ValidateNotNullOrEmpty] + public string JobId { get; set; } + + [Parameter(Position = 1, ParameterSetName = Constants.ODataFilterParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task.")] + [ValidateNotNullOrEmpty] + public string TaskId { get; set; } + + [Parameter(Position = 0, ParameterSetName = Constants.ParentObjectParameterSet, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public PSCloudTask Task { get; set; } + + [Parameter] + public int MaxCount + { + get { return this.maxCount; } + set { this.maxCount = value; } + } + + public override void ExecuteCmdlet() + { + ListSubtaskOptions options = new ListSubtaskOptions(this.BatchContext, this.JobId, + this.TaskId, this.Task, this.AdditionalBehaviors) + { + MaxCount = this.MaxCount + }; + + foreach (PSSubtaskInformation subtask in BatchClient.ListSubtasks(options)) + { + WriteObject(subtask); + } + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs index c71272fc45dc..56cb696c0b2d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs @@ -64,6 +64,10 @@ public class NewBatchTaskCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public PSTaskConstraints Constraints { get; set; } + [Parameter] + [ValidateNotNullOrEmpty] + public PSMultiInstanceSettings MultiInstanceSettings { get; set; } + public override void ExecuteCmdlet() { NewTaskParameters parameters = new NewTaskParameters(this.BatchContext, this.JobId, this.Job, @@ -75,7 +79,8 @@ public override void ExecuteCmdlet() EnvironmentSettings = this.EnvironmentSettings, RunElevated = this.RunElevated.IsPresent, AffinityInformation = this.AffinityInformation, - Constraints = this.Constraints + Constraints = this.Constraints, + MultiInstanceSettings = this.MultiInstanceSettings }; BatchClient.CreateTask(parameters); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs index 0685dd5bdaab..1ece628b2296 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs @@ -28,10 +28,12 @@ public class Constants public const string AzureBatchPool = "AzureBatchPool"; public const string AzureBatchPoolResize = "AzureBatchPoolResize"; public const string AzureBatchComputeNode = "AzureBatchComputeNode"; + public const string AzureBatchComputeNodeScheduling = "AzureBatchComputeNodeScheduling"; public const string AzureBatchComputeNodeUser = "AzureBatchComputeNodeUser"; public const string AzureBatchJobSchedule = "AzureBatchJobSchedule"; public const string AzureBatchJob = "AzureBatchJob"; public const string AzureBatchTask = "AzureBatchTask"; + public const string AzureBatchSubtask = "AzureBatchSubtask"; public const string AzureBatchNodeFile = "AzureBatchNodeFile"; public const string AzureBatchNodeFileContent = "AzureBatchNodeFileContent"; public const string AzureBatchRemoteDesktopProtocolFile = "AzureBatchRemoteDesktopProtocolFile"; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Utils.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Utils.cs index 45e7f393e194..4ecf3f7c880e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Utils.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Utils.cs @@ -284,6 +284,22 @@ internal static void StartTaskSyncCollections(PSStartTask startTask) } } + /// + /// Syncs the collections on a PSMultiInstanceSettings with its wrapped OM object + /// + internal static void MultiInstanceSettingsSyncCollections(PSMultiInstanceSettings multiInstanceSettings) + { + if (multiInstanceSettings != null) + { + multiInstanceSettings.omObject.CommonResourceFiles = CreateSyncedList(multiInstanceSettings.CommonResourceFiles, + (r) => + { + ResourceFile resourceFile = new ResourceFile(r.BlobSource, r.FilePath); + return resourceFile; + }); + } + } + /// /// Creates a list of OM objects matching a list of PowerShell objects /// diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/packages.config b/src/ResourceManager/AzureBatch/Commands.Batch/packages.config index d2175d2f4852..13243cbf6eb9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/packages.config +++ b/src/ResourceManager/AzureBatch/Commands.Batch/packages.config @@ -1,6 +1,6 @@  - + diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 index c79d53cb96d7..9a1ff87633cb 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 @@ -57,35 +57,30 @@ function Test-ThreatDetectionDatabaseUpdatePolicy { # Test Set-AzureRmSqlDatabaseAuditingPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageAccountName $params.storageAccount - Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" -EmailAdmins $false -ExcludedDetectionType "Successful_SQLi", "Attempted_SQLi" + Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" -EmailAdmins $false -ExcludedDetectionType "Sql_Injection_Vulnerability" $policy = Get-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert Assert-AreEqual $policy.ThreatDetectionState "Enabled" Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" Assert-False {$policy.EmailAdmins} - Assert-AreEqual $policy.ExcludedDetectionTypes.Length 2 - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Successful_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Attempted_SQLi)} + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 1 + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection_Vulnerability)} # Test - Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -ExcludedDetectionType "Successful_SQLi", "Attempted_SQLi", "Client_GEO_Anomaly", "Failed_Logins_Anomaly", "Failed_Queries_Anomaly", "Data_Extraction_Anomaly", "Data_Alteration_Anomaly" + Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -ExcludedDetectionType "Sql_Injection", "Sql_Injection_Vulnerability", "Access_Anomaly", "Usage_Anomaly" $policy = Get-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert Assert-AreEqual $policy.ThreatDetectionState "Enabled" Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" Assert-False {$policy.EmailAdmins} - Assert-AreEqual $policy.ExcludedDetectionTypes.Length 7 - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Successful_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Attempted_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Client_GEO_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Logins_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Queries_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Extraction_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Alteration_Anomaly)} - + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 4 + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection_Vulnerability)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Access_Anomaly)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Usage_Anomaly)} # Test Remove-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName @@ -95,14 +90,21 @@ function Test-ThreatDetectionDatabaseUpdatePolicy Assert-AreEqual $policy.ThreatDetectionState "Disabled" Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" Assert-False {$policy.EmailAdmins} - Assert-AreEqual $policy.ExcludedDetectionTypes.Length 7 - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Successful_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Attempted_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Client_GEO_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Logins_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Queries_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Extraction_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Alteration_Anomaly)} + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 4 + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection_Vulnerability)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Access_Anomaly)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Usage_Anomaly)} + + # Test + Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -ExcludedDetectionType "None" + $policy = Get-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName + + # Assert + Assert-AreEqual $policy.ThreatDetectionState "Enabled" + Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" + Assert-False {$policy.EmailAdmins} + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 0 } finally { @@ -183,6 +185,9 @@ function Test-InvalidArgumentsThreatDetection # Check that EmailAdmins is not False and NotificationRecipientsEmails is not empty Assert-Throws {Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -EmailAdmins $false} Assert-Throws {Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -EmailAdmins $false -NotificationRecipientsEmails ""} + + # Check that ExcludedDetectionType doesn't hold None and any other type + Assert-Throws {Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -EmailAdmins $true -ExcludedDetectionType "None", "Sql_Injection_Vulnerability" } } finally { diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json index 53b31e832ae2..72ddea5cf6c4 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14957" ], "x-ms-request-id": [ - "26c0cdd6-b24f-4224-a6ee-68c2c6c659ca" + "94220559-59d1-4e32-ad04-de994b9d56df" ], "x-ms-correlation-request-id": [ - "26c0cdd6-b24f-4224-a6ee-68c2c6c659ca" + "94220559-59d1-4e32-ad04-de994b9d56df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063752Z:26c0cdd6-b24f-4224-a6ee-68c2c6c659ca" + "WESTEUROPE:20160103T134529Z:94220559-59d1-4e32-ad04-de994b9d56df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:37:52 GMT" + "Sun, 03 Jan 2016 13:45:28 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "96be18c3-852d-456e-993f-ed0fd1de89ef" + "1fa63c1f-a8ce-469a-a0b3-bab1aba43f21" ], "x-ms-correlation-request-id": [ - "96be18c3-852d-456e-993f-ed0fd1de89ef" + "1fa63c1f-a8ce-469a-a0b3-bab1aba43f21" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063758Z:96be18c3-852d-456e-993f-ed0fd1de89ef" + "WESTEUROPE:20160103T134533Z:1fa63c1f-a8ce-469a-a0b3-bab1aba43f21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:37:58 GMT" + "Sun, 03 Jan 2016 13:45:32 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14956" ], "x-ms-request-id": [ - "b9a1b237-ae56-4c57-a7fa-04b319392631" + "7fdc8952-c289-4efc-acb3-5cbc02128011" ], "x-ms-correlation-request-id": [ - "b9a1b237-ae56-4c57-a7fa-04b319392631" + "7fdc8952-c289-4efc-acb3-5cbc02128011" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063758Z:b9a1b237-ae56-4c57-a7fa-04b319392631" + "WESTEUROPE:20160103T134533Z:7fdc8952-c289-4efc-acb3-5cbc02128011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:37:58 GMT" + "Sun, 03 Jan 2016 13:45:32 GMT" ] }, "StatusCode": 200 @@ -169,10 +169,1117 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-12-07T06:38:05.9803254Z\",\r\n \"duration\": \"PT4.9287208S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-01-03T13:45:38.086233Z\",\r\n \"duration\": \"PT3.3185987S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1802" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587497781507100647?api-version=2014-04-01-preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "b0dd0ae1-dccc-4115-ac5e-cf215dd3787c" + ], + "x-ms-correlation-request-id": [ + "b0dd0ae1-dccc-4115-ac5e-cf215dd3787c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134539Z:b0dd0ae1-dccc-4115-ac5e-cf215dd3787c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "f4dfef65-ff89-4f9f-8075-c0d0ee7b03f8" + ], + "x-ms-correlation-request-id": [ + "f4dfef65-ff89-4f9f-8075-c0d0ee7b03f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134540Z:f4dfef65-ff89-4f9f-8075-c0d0ee7b03f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "d4e5f932-c8ee-4f48-9a11-a1eee02f2981" + ], + "x-ms-correlation-request-id": [ + "d4e5f932-c8ee-4f48-9a11-a1eee02f2981" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134544Z:d4e5f932-c8ee-4f48-9a11-a1eee02f2981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "1498694a-3e1d-4391-817f-d28120c5740e" + ], + "x-ms-correlation-request-id": [ + "1498694a-3e1d-4391-817f-d28120c5740e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134548Z:1498694a-3e1d-4391-817f-d28120c5740e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "14db00a4-72e1-467c-8994-fc293e171827" + ], + "x-ms-correlation-request-id": [ + "14db00a4-72e1-467c-8994-fc293e171827" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134551Z:14db00a4-72e1-467c-8994-fc293e171827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "52f0e27a-147a-4b6f-a37b-84b53b8f4aeb" + ], + "x-ms-correlation-request-id": [ + "52f0e27a-147a-4b6f-a37b-84b53b8f4aeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134555Z:52f0e27a-147a-4b6f-a37b-84b53b8f4aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "07bfa358-40d7-4e4a-94ab-54b61b991737" + ], + "x-ms-correlation-request-id": [ + "07bfa358-40d7-4e4a-94ab-54b61b991737" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134558Z:07bfa358-40d7-4e4a-94ab-54b61b991737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "f91b6148-f5f6-4b19-9bd3-949ea5a79ed6" + ], + "x-ms-correlation-request-id": [ + "f91b6148-f5f6-4b19-9bd3-949ea5a79ed6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134602Z:f91b6148-f5f6-4b19-9bd3-949ea5a79ed6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "1656a7a2-e7a9-4705-b40b-585414f7d736" + ], + "x-ms-correlation-request-id": [ + "1656a7a2-e7a9-4705-b40b-585414f7d736" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134606Z:1656a7a2-e7a9-4705-b40b-585414f7d736" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "3a670214-16ab-4d4b-81cf-4c08c39a80a6" + ], + "x-ms-correlation-request-id": [ + "3a670214-16ab-4d4b-81cf-4c08c39a80a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134609Z:3a670214-16ab-4d4b-81cf-4c08c39a80a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "7d1f6bef-85c9-4c51-8366-bc4a6b22a819" + ], + "x-ms-correlation-request-id": [ + "7d1f6bef-85c9-4c51-8366-bc4a6b22a819" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134613Z:7d1f6bef-85c9-4c51-8366-bc4a6b22a819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "90ac4c38-fd38-4600-a100-3c60da01eecc" + ], + "x-ms-correlation-request-id": [ + "90ac4c38-fd38-4600-a100-3c60da01eecc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134617Z:90ac4c38-fd38-4600-a100-3c60da01eecc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "e6f8a428-35cd-4f38-aa69-c8501ff57535" + ], + "x-ms-correlation-request-id": [ + "e6f8a428-35cd-4f38-aa69-c8501ff57535" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134620Z:e6f8a428-35cd-4f38-aa69-c8501ff57535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "a9333638-d1e3-4158-afb0-974ea462ab2e" + ], + "x-ms-correlation-request-id": [ + "a9333638-d1e3-4158-afb0-974ea462ab2e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134624Z:a9333638-d1e3-4158-afb0-974ea462ab2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "5d9b3134-149d-484f-963c-98adcd998a86" + ], + "x-ms-correlation-request-id": [ + "5d9b3134-149d-484f-963c-98adcd998a86" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134627Z:5d9b3134-149d-484f-963c-98adcd998a86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "e284cc3d-7d9c-4755-a4b7-f32a8552f082" + ], + "x-ms-correlation-request-id": [ + "e284cc3d-7d9c-4755-a4b7-f32a8552f082" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134631Z:e284cc3d-7d9c-4755-a4b7-f32a8552f082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "e6d59345-0ca4-4aa6-8aad-b4d65741094a" + ], + "x-ms-correlation-request-id": [ + "e6d59345-0ca4-4aa6-8aad-b4d65741094a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134635Z:e6d59345-0ca4-4aa6-8aad-b4d65741094a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "e7b541ed-b6c9-4030-a87e-6c4c14249ca5" + ], + "x-ms-correlation-request-id": [ + "e7b541ed-b6c9-4030-a87e-6c4c14249ca5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134639Z:e7b541ed-b6c9-4030-a87e-6c4c14249ca5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "4b54d2ae-b1dc-4b95-9029-eb179991ada4" + ], + "x-ms-correlation-request-id": [ + "4b54d2ae-b1dc-4b95-9029-eb179991ada4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134643Z:4b54d2ae-b1dc-4b95-9029-eb179991ada4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "0df0b4e0-0656-41b4-a99c-4b14c66831bf" + ], + "x-ms-correlation-request-id": [ + "0df0b4e0-0656-41b4-a99c-4b14c66831bf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134647Z:0df0b4e0-0656-41b4-a99c-4b14c66831bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "20161aa2-ae28-4c28-9586-563ebb89f6a4" + ], + "x-ms-correlation-request-id": [ + "20161aa2-ae28-4c28-9586-563ebb89f6a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134651Z:20161aa2-ae28-4c28-9586-563ebb89f6a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2007" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "94031d6b-1687-45c7-94c7-16872c06e3a7" + ], + "x-ms-correlation-request-id": [ + "94031d6b-1687-45c7-94c7-16872c06e3a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134655Z:94031d6b-1687-45c7-94c7-16872c06e3a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2007" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "163516c6-1805-4ccd-814d-945628e84fcc" + ], + "x-ms-correlation-request-id": [ + "163516c6-1805-4ccd-814d-945628e84fcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134658Z:163516c6-1805-4ccd-814d-945628e84fcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1803" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,20 +1290,17 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587521366044260903?api-version=2014-04-01-preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" ], "x-ms-request-id": [ - "3855adde-75f7-4e88-8915-235c66da690c" + "0fe95d01-c29c-469f-a53f-51f5763a4a7d" ], "x-ms-correlation-request-id": [ - "3855adde-75f7-4e88-8915-235c66da690c" + "0fe95d01-c29c-469f-a53f-51f5763a4a7d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063808Z:3855adde-75f7-4e88-8915-235c66da690c" + "WESTEUROPE:20160103T134702Z:0fe95d01-c29c-469f-a53f-51f5763a4a7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,10 +1309,10 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:07 GMT" + "Sun, 03 Jan 2016 13:47:02 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", @@ -220,10 +1324,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,16 +1339,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14908" ], "x-ms-request-id": [ - "4d477d5c-c0aa-4b8e-8e72-549098dd4165" + "c1920c45-8a27-40b6-ab63-86746aa42fa5" ], "x-ms-correlation-request-id": [ - "4d477d5c-c0aa-4b8e-8e72-549098dd4165" + "c1920c45-8a27-40b6-ab63-86746aa42fa5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063810Z:4d477d5c-c0aa-4b8e-8e72-549098dd4165" + "WESTEUROPE:20160103T134706Z:c1920c45-8a27-40b6-ab63-86746aa42fa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,7 +1357,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:09 GMT" + "Sun, 03 Jan 2016 13:47:05 GMT" ] }, "StatusCode": 200 @@ -268,10 +1372,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +1387,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14906" ], "x-ms-request-id": [ - "62e957d9-5bea-4412-8876-bb0fa16f8f66" + "7a67d5a7-2488-4129-b2a5-2b27e4db871f" ], "x-ms-correlation-request-id": [ - "62e957d9-5bea-4412-8876-bb0fa16f8f66" + "7a67d5a7-2488-4129-b2a5-2b27e4db871f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063814Z:62e957d9-5bea-4412-8876-bb0fa16f8f66" + "WESTEUROPE:20160103T134710Z:7a67d5a7-2488-4129-b2a5-2b27e4db871f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,7 +1405,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:13 GMT" + "Sun, 03 Jan 2016 13:47:09 GMT" ] }, "StatusCode": 200 @@ -316,10 +1420,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +1435,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14904" ], "x-ms-request-id": [ - "aacd2d8a-5277-41da-90dc-5fe5119ac524" + "51a2ae20-097d-4964-bddc-c572390aec54" ], "x-ms-correlation-request-id": [ - "aacd2d8a-5277-41da-90dc-5fe5119ac524" + "51a2ae20-097d-4964-bddc-c572390aec54" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063819Z:aacd2d8a-5277-41da-90dc-5fe5119ac524" + "WESTEUROPE:20160103T134714Z:51a2ae20-097d-4964-bddc-c572390aec54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +1453,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:19 GMT" + "Sun, 03 Jan 2016 13:47:14 GMT" ] }, "StatusCode": 200 @@ -364,10 +1468,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -379,16 +1483,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14902" ], "x-ms-request-id": [ - "e7822bde-dcb5-4f55-9037-52ce40e577d9" + "51413ad7-7fb3-4ddf-8002-6f20a0a72742" ], "x-ms-correlation-request-id": [ - "e7822bde-dcb5-4f55-9037-52ce40e577d9" + "51413ad7-7fb3-4ddf-8002-6f20a0a72742" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063823Z:e7822bde-dcb5-4f55-9037-52ce40e577d9" + "WESTEUROPE:20160103T134718Z:51413ad7-7fb3-4ddf-8002-6f20a0a72742" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,7 +1501,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:23 GMT" + "Sun, 03 Jan 2016 13:47:18 GMT" ] }, "StatusCode": 200 @@ -412,10 +1516,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -427,16 +1531,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14900" ], "x-ms-request-id": [ - "b66ad91d-62ca-4c11-b684-2d56a37b2257" + "63c1f588-610e-40c2-a2cb-68f144f47d78" ], "x-ms-correlation-request-id": [ - "b66ad91d-62ca-4c11-b684-2d56a37b2257" + "63c1f588-610e-40c2-a2cb-68f144f47d78" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063828Z:b66ad91d-62ca-4c11-b684-2d56a37b2257" + "WESTEUROPE:20160103T134722Z:63c1f588-610e-40c2-a2cb-68f144f47d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +1549,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:27 GMT" + "Sun, 03 Jan 2016 13:47:22 GMT" ] }, "StatusCode": 200 @@ -460,10 +1564,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,16 +1579,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14898" ], "x-ms-request-id": [ - "8e6cd4f9-ef90-4ae6-b39b-8e961c0f5967" + "c3511428-aadd-4238-a9d9-1964a581b7e4" ], "x-ms-correlation-request-id": [ - "8e6cd4f9-ef90-4ae6-b39b-8e961c0f5967" + "c3511428-aadd-4238-a9d9-1964a581b7e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063832Z:8e6cd4f9-ef90-4ae6-b39b-8e961c0f5967" + "WESTEUROPE:20160103T134726Z:c3511428-aadd-4238-a9d9-1964a581b7e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,7 +1597,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:32 GMT" + "Sun, 03 Jan 2016 13:47:25 GMT" ] }, "StatusCode": 200 @@ -508,10 +1612,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -523,16 +1627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14896" ], "x-ms-request-id": [ - "6d6da964-0804-47fa-9bda-992ceb3d8e81" + "55083cfb-8a49-4ed1-b1be-10aef3ff40cd" ], "x-ms-correlation-request-id": [ - "6d6da964-0804-47fa-9bda-992ceb3d8e81" + "55083cfb-8a49-4ed1-b1be-10aef3ff40cd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063837Z:6d6da964-0804-47fa-9bda-992ceb3d8e81" + "WESTEUROPE:20160103T134730Z:55083cfb-8a49-4ed1-b1be-10aef3ff40cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,7 +1645,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:36 GMT" + "Sun, 03 Jan 2016 13:47:29 GMT" ] }, "StatusCode": 200 @@ -556,10 +1660,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:32.253439Z\",\r\n \"duration\": \"PT1M0.2894206S\",\r\n \"trackingId\": \"4e0d4b87-8cef-4fd0-8056-f50923e65f9f\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -571,16 +1675,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14894" ], "x-ms-request-id": [ - "a3c6166c-988a-4d0d-b21d-97feba5b9ecb" + "4887e4d7-7870-42a8-a445-ea6831d65f1a" ], "x-ms-correlation-request-id": [ - "a3c6166c-988a-4d0d-b21d-97feba5b9ecb" + "4887e4d7-7870-42a8-a445-ea6831d65f1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063841Z:a3c6166c-988a-4d0d-b21d-97feba5b9ecb" + "WESTEUROPE:20160103T134734Z:4887e4d7-7870-42a8-a445-ea6831d65f1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +1693,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:40 GMT" + "Sun, 03 Jan 2016 13:47:33 GMT" ] }, "StatusCode": 200 @@ -604,10 +1708,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:33.7657551Z\",\r\n \"duration\": \"PT1M1.8017367S\",\r\n \"trackingId\": \"4e0d4b87-8cef-4fd0-8056-f50923e65f9f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -619,16 +1723,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14891" ], "x-ms-request-id": [ - "2356416d-eabb-470f-9742-fa4a418042de" + "37563c2c-050b-4ef0-945e-8ffb95b4ffc8" ], "x-ms-correlation-request-id": [ - "2356416d-eabb-470f-9742-fa4a418042de" + "37563c2c-050b-4ef0-945e-8ffb95b4ffc8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063846Z:2356416d-eabb-470f-9742-fa4a418042de" + "WESTEUROPE:20160103T134737Z:37563c2c-050b-4ef0-945e-8ffb95b4ffc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -637,7 +1741,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:46 GMT" + "Sun, 03 Jan 2016 13:47:37 GMT" ] }, "StatusCode": 200 @@ -652,10 +1756,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:33.7657551Z\",\r\n \"duration\": \"PT1M1.8017367S\",\r\n \"trackingId\": \"4e0d4b87-8cef-4fd0-8056-f50923e65f9f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,16 +1771,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14889" ], "x-ms-request-id": [ - "46f793b9-dec1-4700-8177-ce27c30675ed" + "c8bf62fc-103b-4a8a-b660-c8b217f987ce" ], "x-ms-correlation-request-id": [ - "46f793b9-dec1-4700-8177-ce27c30675ed" + "c8bf62fc-103b-4a8a-b660-c8b217f987ce" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063850Z:46f793b9-dec1-4700-8177-ce27c30675ed" + "WESTEUROPE:20160103T134741Z:c8bf62fc-103b-4a8a-b660-c8b217f987ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,7 +1789,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:50 GMT" + "Sun, 03 Jan 2016 13:47:40 GMT" ] }, "StatusCode": 200 @@ -700,10 +1804,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:42.1063917Z\",\r\n \"duration\": \"PT1M10.1423733S\",\r\n \"trackingId\": \"6e724c3a-26b0-4627-a758-5b92d8aef47b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,16 +1819,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14887" ], "x-ms-request-id": [ - "4754d5ba-9a93-498c-947d-aee0807878ed" + "e0d219f1-19ee-46d1-9802-995d95c7879b" ], "x-ms-correlation-request-id": [ - "4754d5ba-9a93-498c-947d-aee0807878ed" + "e0d219f1-19ee-46d1-9802-995d95c7879b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063855Z:4754d5ba-9a93-498c-947d-aee0807878ed" + "WESTEUROPE:20160103T134745Z:e0d219f1-19ee-46d1-9802-995d95c7879b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +1837,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:54 GMT" + "Sun, 03 Jan 2016 13:47:45 GMT" ] }, "StatusCode": 200 @@ -748,10 +1852,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:58.7036313Z\",\r\n \"duration\": \"PT49.170751S\",\r\n \"trackingId\": \"debbe3b3-3478-48d4-82f5-4524be84e551\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:42.1063917Z\",\r\n \"duration\": \"PT1M10.1423733S\",\r\n \"trackingId\": \"6e724c3a-26b0-4627-a758-5b92d8aef47b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "651" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -763,16 +1867,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14885" ], "x-ms-request-id": [ - "b9ec1866-2a1b-434b-8372-cb72a2c90b70" + "c34f8d16-3c0d-49a6-925c-8c4ea771f352" ], "x-ms-correlation-request-id": [ - "b9ec1866-2a1b-434b-8372-cb72a2c90b70" + "c34f8d16-3c0d-49a6-925c-8c4ea771f352" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063859Z:b9ec1866-2a1b-434b-8372-cb72a2c90b70" + "WESTEUROPE:20160103T134749Z:c34f8d16-3c0d-49a6-925c-8c4ea771f352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +1885,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:59 GMT" + "Sun, 03 Jan 2016 13:47:49 GMT" ] }, "StatusCode": 200 @@ -796,10 +1900,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:58.7036313Z\",\r\n \"duration\": \"PT49.170751S\",\r\n \"trackingId\": \"debbe3b3-3478-48d4-82f5-4524be84e551\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:49.5590617Z\",\r\n \"duration\": \"PT1M17.5950433S\",\r\n \"trackingId\": \"abd9abcc-3c55-4d5d-8abe-0fde44620e45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "651" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -811,16 +1915,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14883" ], "x-ms-request-id": [ - "c439b5c6-8747-4c8e-bc02-b6dafa1ea2ef" + "e3d887bd-e526-4d10-8471-1059ca2c8151" ], "x-ms-correlation-request-id": [ - "c439b5c6-8747-4c8e-bc02-b6dafa1ea2ef" + "e3d887bd-e526-4d10-8471-1059ca2c8151" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063903Z:c439b5c6-8747-4c8e-bc02-b6dafa1ea2ef" + "WESTEUROPE:20160103T134753Z:e3d887bd-e526-4d10-8471-1059ca2c8151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,7 +1933,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:03 GMT" + "Sun, 03 Jan 2016 13:47:53 GMT" ] }, "StatusCode": 200 @@ -844,10 +1948,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:58.7036313Z\",\r\n \"duration\": \"PT49.170751S\",\r\n \"trackingId\": \"debbe3b3-3478-48d4-82f5-4524be84e551\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:49.5590617Z\",\r\n \"duration\": \"PT1M17.5950433S\",\r\n \"trackingId\": \"abd9abcc-3c55-4d5d-8abe-0fde44620e45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1297" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -859,16 +1963,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14881" ], "x-ms-request-id": [ - "2ff9d898-234a-4a8c-81da-def7c07181d0" + "67889928-e8cb-437b-b363-6b5faf084edb" ], "x-ms-correlation-request-id": [ - "2ff9d898-234a-4a8c-81da-def7c07181d0" + "67889928-e8cb-437b-b363-6b5faf084edb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063908Z:2ff9d898-234a-4a8c-81da-def7c07181d0" + "WESTEUROPE:20160103T134757Z:67889928-e8cb-437b-b363-6b5faf084edb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,7 +1981,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:08 GMT" + "Sun, 03 Jan 2016 13:47:56 GMT" ] }, "StatusCode": 200 @@ -892,10 +1996,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:47:57.8598045Z\",\r\n \"duration\": \"PT1M25.8957861S\",\r\n \"trackingId\": \"cf7cd27a-6679-4304-85a5-235661378207\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "2011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -907,16 +2011,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14879" ], "x-ms-request-id": [ - "67f0010a-248b-4e6e-9a10-1ff410176536" + "f4d4780c-c3c8-4aeb-a28e-0d18d2e48095" ], "x-ms-correlation-request-id": [ - "67f0010a-248b-4e6e-9a10-1ff410176536" + "f4d4780c-c3c8-4aeb-a28e-0d18d2e48095" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063913Z:67f0010a-248b-4e6e-9a10-1ff410176536" + "WESTEUROPE:20160103T134801Z:f4d4780c-c3c8-4aeb-a28e-0d18d2e48095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,14 +2029,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:13 GMT" + "Sun, 03 Jan 2016 13:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -940,10 +2044,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-01-03T13:45:38.086233Z\",\r\n \"duration\": \"PT3.3185987S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,16 +2059,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14954" ], "x-ms-request-id": [ - "859a2467-076c-431e-b5e3-20a7b2b0c959" + "2a24587e-71a5-49ce-8812-152ec8dcfd9e" ], "x-ms-correlation-request-id": [ - "859a2467-076c-431e-b5e3-20a7b2b0c959" + "2a24587e-71a5-49ce-8812-152ec8dcfd9e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063918Z:859a2467-076c-431e-b5e3-20a7b2b0c959" + "WESTEUROPE:20160103T134541Z:2a24587e-71a5-49ce-8812-152ec8dcfd9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -973,14 +2077,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:18 GMT" + "Sun, 03 Jan 2016 13:45:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,10 +2092,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1003,16 +2107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14952" ], "x-ms-request-id": [ - "d999a2ac-ff26-4da3-9394-7963b2ce46b6" + "8aec2ad3-6e5f-42cf-a379-266ea3c9fecf" ], "x-ms-correlation-request-id": [ - "d999a2ac-ff26-4da3-9394-7963b2ce46b6" + "8aec2ad3-6e5f-42cf-a379-266ea3c9fecf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063923Z:d999a2ac-ff26-4da3-9394-7963b2ce46b6" + "WESTEUROPE:20160103T134545Z:8aec2ad3-6e5f-42cf-a379-266ea3c9fecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,14 +2125,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:23 GMT" + "Sun, 03 Jan 2016 13:45:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,10 +2140,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1051,16 +2155,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14950" ], "x-ms-request-id": [ - "9aa03564-a6f1-4881-b5ac-cf0dc60e36a1" + "baa089d8-bb3d-4364-8c3f-5151660e6cff" ], "x-ms-correlation-request-id": [ - "9aa03564-a6f1-4881-b5ac-cf0dc60e36a1" + "baa089d8-bb3d-4364-8c3f-5151660e6cff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063928Z:9aa03564-a6f1-4881-b5ac-cf0dc60e36a1" + "WESTEUROPE:20160103T134548Z:baa089d8-bb3d-4364-8c3f-5151660e6cff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,14 +2173,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:27 GMT" + "Sun, 03 Jan 2016 13:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1084,10 +2188,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,16 +2203,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14948" ], "x-ms-request-id": [ - "549c7a88-f1d7-4bab-80ca-a62ee481701f" + "cc36b9a2-2f52-4bff-8548-4d8d66b9f7f1" ], "x-ms-correlation-request-id": [ - "549c7a88-f1d7-4bab-80ca-a62ee481701f" + "cc36b9a2-2f52-4bff-8548-4d8d66b9f7f1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063933Z:549c7a88-f1d7-4bab-80ca-a62ee481701f" + "WESTEUROPE:20160103T134552Z:cc36b9a2-2f52-4bff-8548-4d8d66b9f7f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1117,14 +2221,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:33 GMT" + "Sun, 03 Jan 2016 13:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1132,10 +2236,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1147,16 +2251,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14946" ], "x-ms-request-id": [ - "851ebc74-73a7-42cc-946c-d0813586caf5" + "d5287fba-cba5-48f7-9bf7-a59c8deedf09" ], "x-ms-correlation-request-id": [ - "851ebc74-73a7-42cc-946c-d0813586caf5" + "d5287fba-cba5-48f7-9bf7-a59c8deedf09" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063938Z:851ebc74-73a7-42cc-946c-d0813586caf5" + "WESTEUROPE:20160103T134555Z:d5287fba-cba5-48f7-9bf7-a59c8deedf09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1165,14 +2269,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:37 GMT" + "Sun, 03 Jan 2016 13:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,10 +2284,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1195,16 +2299,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14944" ], "x-ms-request-id": [ - "7c3c06c6-ee2f-40d9-a25f-b1ec2ca07672" + "46b1fc10-3cca-4ff9-a9fb-7d48e655e907" ], "x-ms-correlation-request-id": [ - "7c3c06c6-ee2f-40d9-a25f-b1ec2ca07672" + "46b1fc10-3cca-4ff9-a9fb-7d48e655e907" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063943Z:7c3c06c6-ee2f-40d9-a25f-b1ec2ca07672" + "WESTEUROPE:20160103T134559Z:46b1fc10-3cca-4ff9-a9fb-7d48e655e907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1213,14 +2317,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:42 GMT" + "Sun, 03 Jan 2016 13:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1228,10 +2332,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1243,16 +2347,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14942" ], "x-ms-request-id": [ - "4bc36d34-dfc6-4190-89c2-0857a386e45e" + "2f5ad312-5fba-40bd-93a6-c59fa68c1f00" ], "x-ms-correlation-request-id": [ - "4bc36d34-dfc6-4190-89c2-0857a386e45e" + "2f5ad312-5fba-40bd-93a6-c59fa68c1f00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063947Z:4bc36d34-dfc6-4190-89c2-0857a386e45e" + "WESTEUROPE:20160103T134603Z:2f5ad312-5fba-40bd-93a6-c59fa68c1f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,14 +2365,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:47 GMT" + "Sun, 03 Jan 2016 13:46:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1276,10 +2380,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1291,16 +2395,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14940" ], "x-ms-request-id": [ - "2ef8be27-625a-4c64-8cf3-ee4c435fcbde" + "b9947a37-8394-45ca-88a6-be5448f87c89" ], "x-ms-correlation-request-id": [ - "2ef8be27-625a-4c64-8cf3-ee4c435fcbde" + "b9947a37-8394-45ca-88a6-be5448f87c89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063952Z:2ef8be27-625a-4c64-8cf3-ee4c435fcbde" + "WESTEUROPE:20160103T134606Z:b9947a37-8394-45ca-88a6-be5448f87c89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1309,14 +2413,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:51 GMT" + "Sun, 03 Jan 2016 13:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1324,10 +2428,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1339,16 +2443,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14938" ], "x-ms-request-id": [ - "90b63b6e-a025-4a07-a4a6-e8c1b8564cf6" + "df34ed32-40f2-42e7-9e2f-d2b4189d9f11" ], "x-ms-correlation-request-id": [ - "90b63b6e-a025-4a07-a4a6-e8c1b8564cf6" + "df34ed32-40f2-42e7-9e2f-d2b4189d9f11" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063957Z:90b63b6e-a025-4a07-a4a6-e8c1b8564cf6" + "WESTEUROPE:20160103T134610Z:df34ed32-40f2-42e7-9e2f-d2b4189d9f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,14 +2461,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:57 GMT" + "Sun, 03 Jan 2016 13:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1372,10 +2476,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:59.3285297Z\",\r\n \"duration\": \"PT52.285424S\",\r\n \"trackingId\": \"b9ce33d4-d2d0-472f-8d7c-aa03cfaea8cf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2005" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1387,16 +2491,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14936" ], "x-ms-request-id": [ - "8754b498-6263-4b9a-9e12-ed0729b8f913" + "6277aed8-bbc0-429f-8cc7-93b4b0a434ed" ], "x-ms-correlation-request-id": [ - "8754b498-6263-4b9a-9e12-ed0729b8f913" + "6277aed8-bbc0-429f-8cc7-93b4b0a434ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064002Z:8754b498-6263-4b9a-9e12-ed0729b8f913" + "WESTEUROPE:20160103T134614Z:6277aed8-bbc0-429f-8cc7-93b4b0a434ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1405,14 +2509,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:01 GMT" + "Sun, 03 Jan 2016 13:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1420,10 +2524,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:59.3285297Z\",\r\n \"duration\": \"PT52.285424S\",\r\n \"trackingId\": \"b9ce33d4-d2d0-472f-8d7c-aa03cfaea8cf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2005" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1435,16 +2539,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14934" ], "x-ms-request-id": [ - "4cec515c-30b6-4e52-b062-3a0d15ab6d8c" + "3dd8df5a-0fbb-47e5-9406-b7c0e74dae5e" ], "x-ms-correlation-request-id": [ - "4cec515c-30b6-4e52-b062-3a0d15ab6d8c" + "3dd8df5a-0fbb-47e5-9406-b7c0e74dae5e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064007Z:4cec515c-30b6-4e52-b062-3a0d15ab6d8c" + "WESTEUROPE:20160103T134617Z:3dd8df5a-0fbb-47e5-9406-b7c0e74dae5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1453,14 +2557,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:06 GMT" + "Sun, 03 Jan 2016 13:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1468,10 +2572,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:40:07.1143178Z\",\r\n \"duration\": \"PT1M0.0712121S\",\r\n \"trackingId\": \"473a15d6-7813-4bb9-b684-1fdb25df53ef\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2009" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1483,16 +2587,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14932" ], "x-ms-request-id": [ - "3d4c11ac-8774-4519-be4b-c8d56f600fe1" + "7fe772da-8630-45ce-9972-bd11469e0b8d" ], "x-ms-correlation-request-id": [ - "3d4c11ac-8774-4519-be4b-c8d56f600fe1" + "7fe772da-8630-45ce-9972-bd11469e0b8d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064012Z:3d4c11ac-8774-4519-be4b-c8d56f600fe1" + "WESTEUROPE:20160103T134621Z:7fe772da-8630-45ce-9972-bd11469e0b8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1501,7 +2605,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:12 GMT" + "Sun, 03 Jan 2016 13:46:20 GMT" ] }, "StatusCode": 200 @@ -1516,10 +2620,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1531,16 +2635,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14930" ], "x-ms-request-id": [ - "42a08549-0154-4045-9b44-673491313537" + "f6528a2f-72c7-4920-8458-f66d3124501c" ], "x-ms-correlation-request-id": [ - "42a08549-0154-4045-9b44-673491313537" + "f6528a2f-72c7-4920-8458-f66d3124501c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063811Z:42a08549-0154-4045-9b44-673491313537" + "WESTEUROPE:20160103T134625Z:f6528a2f-72c7-4920-8458-f66d3124501c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1549,7 +2653,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:10 GMT" + "Sun, 03 Jan 2016 13:46:24 GMT" ] }, "StatusCode": 200 @@ -1564,10 +2668,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1579,16 +2683,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14928" ], "x-ms-request-id": [ - "f0ccd48c-b76b-4b2f-8564-20444c819e88" + "29335fb5-229a-4416-9ad0-f43b86ab6cba" ], "x-ms-correlation-request-id": [ - "f0ccd48c-b76b-4b2f-8564-20444c819e88" + "29335fb5-229a-4416-9ad0-f43b86ab6cba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063815Z:f0ccd48c-b76b-4b2f-8564-20444c819e88" + "WESTEUROPE:20160103T134628Z:29335fb5-229a-4416-9ad0-f43b86ab6cba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1597,7 +2701,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:15 GMT" + "Sun, 03 Jan 2016 13:46:27 GMT" ] }, "StatusCode": 200 @@ -1612,10 +2716,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1627,16 +2731,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14926" ], "x-ms-request-id": [ - "58dede3e-ed0d-48d5-95cc-3f765c222fc8" + "10131627-979c-4d82-b58c-d2620255a9c9" ], "x-ms-correlation-request-id": [ - "58dede3e-ed0d-48d5-95cc-3f765c222fc8" + "10131627-979c-4d82-b58c-d2620255a9c9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063820Z:58dede3e-ed0d-48d5-95cc-3f765c222fc8" + "WESTEUROPE:20160103T134632Z:10131627-979c-4d82-b58c-d2620255a9c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1645,7 +2749,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:20 GMT" + "Sun, 03 Jan 2016 13:46:31 GMT" ] }, "StatusCode": 200 @@ -1660,10 +2764,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1675,16 +2779,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14923" ], "x-ms-request-id": [ - "c19bb104-2762-4192-91b0-b9c5c9cf521e" + "3d303924-5646-4c23-974a-9134c8030ca9" ], "x-ms-correlation-request-id": [ - "c19bb104-2762-4192-91b0-b9c5c9cf521e" + "3d303924-5646-4c23-974a-9134c8030ca9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063824Z:c19bb104-2762-4192-91b0-b9c5c9cf521e" + "WESTEUROPE:20160103T134636Z:3d303924-5646-4c23-974a-9134c8030ca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1693,7 +2797,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:24 GMT" + "Sun, 03 Jan 2016 13:46:36 GMT" ] }, "StatusCode": 200 @@ -1708,10 +2812,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1723,16 +2827,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14921" ], "x-ms-request-id": [ - "c5a7430a-7753-445e-99ac-3b494d2fcc1d" + "f1a5b5d6-73d1-4f85-962b-54ec70dc73c6" ], "x-ms-correlation-request-id": [ - "c5a7430a-7753-445e-99ac-3b494d2fcc1d" + "f1a5b5d6-73d1-4f85-962b-54ec70dc73c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063829Z:c5a7430a-7753-445e-99ac-3b494d2fcc1d" + "WESTEUROPE:20160103T134640Z:f1a5b5d6-73d1-4f85-962b-54ec70dc73c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,7 +2845,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:28 GMT" + "Sun, 03 Jan 2016 13:46:39 GMT" ] }, "StatusCode": 200 @@ -1756,10 +2860,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1771,16 +2875,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14919" ], "x-ms-request-id": [ - "fe69a822-d650-4f2d-afdf-6a4ed38d8fbe" + "ccc091e8-a966-445a-8e1e-e59a58d74f00" ], "x-ms-correlation-request-id": [ - "fe69a822-d650-4f2d-afdf-6a4ed38d8fbe" + "ccc091e8-a966-445a-8e1e-e59a58d74f00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063833Z:fe69a822-d650-4f2d-afdf-6a4ed38d8fbe" + "WESTEUROPE:20160103T134643Z:ccc091e8-a966-445a-8e1e-e59a58d74f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1789,7 +2893,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:33 GMT" + "Sun, 03 Jan 2016 13:46:43 GMT" ] }, "StatusCode": 200 @@ -1804,10 +2908,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,16 +2923,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14917" ], "x-ms-request-id": [ - "c1fa747b-f81e-4b9c-a37a-1d7fe8d131ed" + "0c73c664-9b28-40ff-8439-26c376298997" ], "x-ms-correlation-request-id": [ - "c1fa747b-f81e-4b9c-a37a-1d7fe8d131ed" + "0c73c664-9b28-40ff-8439-26c376298997" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063838Z:c1fa747b-f81e-4b9c-a37a-1d7fe8d131ed" + "WESTEUROPE:20160103T134647Z:0c73c664-9b28-40ff-8439-26c376298997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1837,7 +2941,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:37 GMT" + "Sun, 03 Jan 2016 13:46:47 GMT" ] }, "StatusCode": 200 @@ -1852,10 +2956,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1867,16 +2971,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14915" ], "x-ms-request-id": [ - "b034606a-275f-4335-9fe9-ea440a1ccded" + "ff3c9cf3-ea53-46ec-828b-2dd250c0559b" ], "x-ms-correlation-request-id": [ - "b034606a-275f-4335-9fe9-ea440a1ccded" + "ff3c9cf3-ea53-46ec-828b-2dd250c0559b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063842Z:b034606a-275f-4335-9fe9-ea440a1ccded" + "WESTEUROPE:20160103T134651Z:ff3c9cf3-ea53-46ec-828b-2dd250c0559b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,7 +2989,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:41 GMT" + "Sun, 03 Jan 2016 13:46:51 GMT" ] }, "StatusCode": 200 @@ -1900,10 +3004,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1915,16 +3019,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14913" ], "x-ms-request-id": [ - "9785902f-deb2-475d-938f-952d3f804d59" + "46daf301-3a90-40f3-b759-a6e38812a963" ], "x-ms-correlation-request-id": [ - "9785902f-deb2-475d-938f-952d3f804d59" + "46daf301-3a90-40f3-b759-a6e38812a963" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063847Z:9785902f-deb2-475d-938f-952d3f804d59" + "WESTEUROPE:20160103T134655Z:46daf301-3a90-40f3-b759-a6e38812a963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,7 +3037,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:47 GMT" + "Sun, 03 Jan 2016 13:46:55 GMT" ] }, "StatusCode": 200 @@ -1948,10 +3052,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1963,16 +3067,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14911" ], "x-ms-request-id": [ - "297a769e-bde1-40b2-89b1-39c5b4e6e66d" + "7085553f-12bc-4c56-906f-de8ba7e7c7d2" ], "x-ms-correlation-request-id": [ - "297a769e-bde1-40b2-89b1-39c5b4e6e66d" + "7085553f-12bc-4c56-906f-de8ba7e7c7d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063851Z:297a769e-bde1-40b2-89b1-39c5b4e6e66d" + "WESTEUROPE:20160103T134659Z:7085553f-12bc-4c56-906f-de8ba7e7c7d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1981,7 +3085,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:51 GMT" + "Sun, 03 Jan 2016 13:46:59 GMT" ] }, "StatusCode": 200 @@ -1996,10 +3100,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2011,16 +3115,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14909" ], "x-ms-request-id": [ - "4fc37884-63dc-4c60-a6f9-17dffae26093" + "70c08076-2819-4f66-afbd-ac0328f64b59" ], "x-ms-correlation-request-id": [ - "4fc37884-63dc-4c60-a6f9-17dffae26093" + "70c08076-2819-4f66-afbd-ac0328f64b59" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063856Z:4fc37884-63dc-4c60-a6f9-17dffae26093" + "WESTEUROPE:20160103T134703Z:70c08076-2819-4f66-afbd-ac0328f64b59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2029,7 +3133,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:55 GMT" + "Sun, 03 Jan 2016 13:47:02 GMT" ] }, "StatusCode": 200 @@ -2044,10 +3148,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2059,16 +3163,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14907" ], "x-ms-request-id": [ - "6081aeb8-fce6-4787-87ae-16e37bc5d6ef" + "59e305b9-39d1-4e93-be70-15f7b1e6a114" ], "x-ms-correlation-request-id": [ - "6081aeb8-fce6-4787-87ae-16e37bc5d6ef" + "59e305b9-39d1-4e93-be70-15f7b1e6a114" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063900Z:6081aeb8-fce6-4787-87ae-16e37bc5d6ef" + "WESTEUROPE:20160103T134707Z:59e305b9-39d1-4e93-be70-15f7b1e6a114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,7 +3181,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:00 GMT" + "Sun, 03 Jan 2016 13:47:06 GMT" ] }, "StatusCode": 200 @@ -2092,10 +3196,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2107,16 +3211,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14905" ], "x-ms-request-id": [ - "0a9f2531-1b3c-4ee4-beac-b393baa2099e" + "4c1c0cbd-d6fe-4212-9864-ecdfc1612744" ], "x-ms-correlation-request-id": [ - "0a9f2531-1b3c-4ee4-beac-b393baa2099e" + "4c1c0cbd-d6fe-4212-9864-ecdfc1612744" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063904Z:0a9f2531-1b3c-4ee4-beac-b393baa2099e" + "WESTEUROPE:20160103T134711Z:4c1c0cbd-d6fe-4212-9864-ecdfc1612744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2125,7 +3229,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:04 GMT" + "Sun, 03 Jan 2016 13:47:10 GMT" ] }, "StatusCode": 200 @@ -2140,10 +3244,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,16 +3259,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14903" ], "x-ms-request-id": [ - "2304b878-e768-40b8-9238-8cc46fed7e69" + "a1efcf4f-cefa-4385-8d17-1ccb5cfac0d4" ], "x-ms-correlation-request-id": [ - "2304b878-e768-40b8-9238-8cc46fed7e69" + "a1efcf4f-cefa-4385-8d17-1ccb5cfac0d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063909Z:2304b878-e768-40b8-9238-8cc46fed7e69" + "WESTEUROPE:20160103T134715Z:a1efcf4f-cefa-4385-8d17-1ccb5cfac0d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2173,7 +3277,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:09 GMT" + "Sun, 03 Jan 2016 13:47:15 GMT" ] }, "StatusCode": 200 @@ -2188,10 +3292,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2203,16 +3307,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14901" ], "x-ms-request-id": [ - "c388bf20-747c-4955-be31-d28c4629d763" + "f32ba0e2-44b6-4c40-afdd-c8d0f340a869" ], "x-ms-correlation-request-id": [ - "c388bf20-747c-4955-be31-d28c4629d763" + "f32ba0e2-44b6-4c40-afdd-c8d0f340a869" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063914Z:c388bf20-747c-4955-be31-d28c4629d763" + "WESTEUROPE:20160103T134719Z:f32ba0e2-44b6-4c40-afdd-c8d0f340a869" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2221,7 +3325,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:14 GMT" + "Sun, 03 Jan 2016 13:47:18 GMT" ] }, "StatusCode": 200 @@ -2236,10 +3340,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2251,16 +3355,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14899" ], "x-ms-request-id": [ - "1b58a18b-b619-4aea-9fe3-ac00b8623fbd" + "4c5a479f-7bd3-4ca2-8b9d-246c56992797" ], "x-ms-correlation-request-id": [ - "1b58a18b-b619-4aea-9fe3-ac00b8623fbd" + "4c5a479f-7bd3-4ca2-8b9d-246c56992797" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063919Z:1b58a18b-b619-4aea-9fe3-ac00b8623fbd" + "WESTEUROPE:20160103T134723Z:4c5a479f-7bd3-4ca2-8b9d-246c56992797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,7 +3373,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:19 GMT" + "Sun, 03 Jan 2016 13:47:22 GMT" ] }, "StatusCode": 200 @@ -2284,10 +3388,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2299,16 +3403,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14897" ], "x-ms-request-id": [ - "be62d119-5e5d-4e12-a9d8-b0aabc978ae5" + "efcac52c-fba3-4f76-a052-f513ffe852f2" ], "x-ms-correlation-request-id": [ - "be62d119-5e5d-4e12-a9d8-b0aabc978ae5" + "efcac52c-fba3-4f76-a052-f513ffe852f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063924Z:be62d119-5e5d-4e12-a9d8-b0aabc978ae5" + "WESTEUROPE:20160103T134726Z:efcac52c-fba3-4f76-a052-f513ffe852f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2317,7 +3421,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:24 GMT" + "Sun, 03 Jan 2016 13:47:26 GMT" ] }, "StatusCode": 200 @@ -2332,10 +3436,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2347,16 +3451,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14895" ], "x-ms-request-id": [ - "57ef8bb5-9b69-4d7d-9645-fe2b833dbcb5" + "2b999df9-4801-4e74-8826-c8c8ccc6f449" ], "x-ms-correlation-request-id": [ - "57ef8bb5-9b69-4d7d-9645-fe2b833dbcb5" + "2b999df9-4801-4e74-8826-c8c8ccc6f449" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063929Z:57ef8bb5-9b69-4d7d-9645-fe2b833dbcb5" + "WESTEUROPE:20160103T134730Z:2b999df9-4801-4e74-8826-c8c8ccc6f449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,7 +3469,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:28 GMT" + "Sun, 03 Jan 2016 13:47:30 GMT" ] }, "StatusCode": 200 @@ -2380,10 +3484,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2395,16 +3499,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14893" ], "x-ms-request-id": [ - "5323ca02-8861-44b2-9d60-7444817c3bb4" + "3eeb2594-8365-44ce-88e3-56c188ba5d51" ], "x-ms-correlation-request-id": [ - "5323ca02-8861-44b2-9d60-7444817c3bb4" + "3eeb2594-8365-44ce-88e3-56c188ba5d51" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063934Z:5323ca02-8861-44b2-9d60-7444817c3bb4" + "WESTEUROPE:20160103T134734Z:3eeb2594-8365-44ce-88e3-56c188ba5d51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2413,7 +3517,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:34 GMT" + "Sun, 03 Jan 2016 13:47:34 GMT" ] }, "StatusCode": 200 @@ -2428,10 +3532,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2443,16 +3547,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14890" ], "x-ms-request-id": [ - "a159a80f-0259-4fa4-a8c6-10c378b06c11" + "b21cefb0-e628-48d3-bc1c-e435b23bd4b7" ], "x-ms-correlation-request-id": [ - "a159a80f-0259-4fa4-a8c6-10c378b06c11" + "b21cefb0-e628-48d3-bc1c-e435b23bd4b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063939Z:a159a80f-0259-4fa4-a8c6-10c378b06c11" + "WESTEUROPE:20160103T134738Z:b21cefb0-e628-48d3-bc1c-e435b23bd4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2461,7 +3565,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:38 GMT" + "Sun, 03 Jan 2016 13:47:37 GMT" ] }, "StatusCode": 200 @@ -2476,10 +3580,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2491,16 +3595,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14888" ], "x-ms-request-id": [ - "cb80d397-0847-4e01-9f7b-0d875065c0d0" + "50cfd7ef-9638-41f6-bbb3-c786099ee1b6" ], "x-ms-correlation-request-id": [ - "cb80d397-0847-4e01-9f7b-0d875065c0d0" + "50cfd7ef-9638-41f6-bbb3-c786099ee1b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063944Z:cb80d397-0847-4e01-9f7b-0d875065c0d0" + "WESTEUROPE:20160103T134742Z:50cfd7ef-9638-41f6-bbb3-c786099ee1b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2509,7 +3613,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:43 GMT" + "Sun, 03 Jan 2016 13:47:41 GMT" ] }, "StatusCode": 200 @@ -2524,10 +3628,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2539,16 +3643,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14886" ], "x-ms-request-id": [ - "bdbd341b-827c-4ffc-ab93-c78b8b60c65e" + "c247ce67-efb1-4e8f-9104-0374bbc198af" ], "x-ms-correlation-request-id": [ - "bdbd341b-827c-4ffc-ab93-c78b8b60c65e" + "c247ce67-efb1-4e8f-9104-0374bbc198af" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063948Z:bdbd341b-827c-4ffc-ab93-c78b8b60c65e" + "WESTEUROPE:20160103T134746Z:c247ce67-efb1-4e8f-9104-0374bbc198af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2557,7 +3661,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:48 GMT" + "Sun, 03 Jan 2016 13:47:46 GMT" ] }, "StatusCode": 200 @@ -2572,10 +3676,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2587,16 +3691,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14884" ], "x-ms-request-id": [ - "f24ffa26-87b8-4c2e-bc87-2f2e52db2809" + "7eab2687-4d20-4dee-8a2c-892d22dfdff1" ], "x-ms-correlation-request-id": [ - "f24ffa26-87b8-4c2e-bc87-2f2e52db2809" + "7eab2687-4d20-4dee-8a2c-892d22dfdff1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063953Z:f24ffa26-87b8-4c2e-bc87-2f2e52db2809" + "WESTEUROPE:20160103T134750Z:7eab2687-4d20-4dee-8a2c-892d22dfdff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2605,7 +3709,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:52 GMT" + "Sun, 03 Jan 2016 13:47:50 GMT" ] }, "StatusCode": 200 @@ -2620,10 +3724,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2635,16 +3739,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14882" ], "x-ms-request-id": [ - "6b675468-e181-4110-8792-42f2fe605a3f" + "04884c8d-9e6f-4d59-a258-7d8ca2260e5d" ], "x-ms-correlation-request-id": [ - "6b675468-e181-4110-8792-42f2fe605a3f" + "04884c8d-9e6f-4d59-a258-7d8ca2260e5d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063958Z:6b675468-e181-4110-8792-42f2fe605a3f" + "WESTEUROPE:20160103T134754Z:04884c8d-9e6f-4d59-a258-7d8ca2260e5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2653,7 +3757,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:58 GMT" + "Sun, 03 Jan 2016 13:47:53 GMT" ] }, "StatusCode": 200 @@ -2668,10 +3772,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2683,16 +3787,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14880" ], "x-ms-request-id": [ - "8c7cbf74-2082-40b9-aa13-2a60edad7212" + "dbf8da2d-2b63-4225-bd4c-f462241d4379" ], "x-ms-correlation-request-id": [ - "8c7cbf74-2082-40b9-aa13-2a60edad7212" + "dbf8da2d-2b63-4225-bd4c-f462241d4379" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064003Z:8c7cbf74-2082-40b9-aa13-2a60edad7212" + "WESTEUROPE:20160103T134758Z:dbf8da2d-2b63-4225-bd4c-f462241d4379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2701,7 +3805,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:02 GMT" + "Sun, 03 Jan 2016 13:47:57 GMT" ] }, "StatusCode": 200 @@ -2716,10 +3820,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:47:58.492608Z\",\r\n \"duration\": \"PT2M23.7249737S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "2026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2731,16 +3835,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14878" ], "x-ms-request-id": [ - "fe188d4b-1274-4852-9212-e85d28c43fc5" + "a4927821-7e4c-47fa-a116-f171425c30d1" ], "x-ms-correlation-request-id": [ - "fe188d4b-1274-4852-9212-e85d28c43fc5" + "a4927821-7e4c-47fa-a116-f171425c30d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064008Z:fe188d4b-1274-4852-9212-e85d28c43fc5" + "WESTEUROPE:20160103T134801Z:a4927821-7e4c-47fa-a116-f171425c30d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,55 +3853,61 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:07 GMT" + "Sun, 03 Jan 2016 13:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDM/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": [ + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:40:07.6937827Z\",\r\n \"duration\": \"PT2M6.6421781S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "2026" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "d4e34447-e799-41eb-ac17-ba23913bd5fc" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "b2e161bc-f233-4936-a902-6b9aab59a53a" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" ], "x-ms-correlation-request-id": [ - "b2e161bc-f233-4936-a902-6b9aab59a53a" + "178717e3-441c-4717-a2ef-732900c1a715" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064013Z:b2e161bc-f233-4936-a902-6b9aab59a53a" + "WESTEUROPE:20160103T134805Z:178717e3-441c-4717-a2ef-732900c1a715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:13 GMT" + "Sun, 03 Jan 2016 13:48:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 @@ -2812,7 +3922,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -2824,7 +3934,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3bcd497d-43e6-4f5f-b577-370cbad9c095" + "9d588996-8afc-4bd8-b818-77e0522bb999" ], "X-Content-Type-Options": [ "nosniff" @@ -2833,13 +3943,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14950" ], "x-ms-correlation-request-id": [ - "f5730584-7ebc-408c-83f6-aca3ef3896ea" + "63e812e3-d477-447e-883f-9f3b539598db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064017Z:f5730584-7ebc-408c-83f6-aca3ef3896ea" + "WESTEUROPE:20160103T134808Z:63e812e3-d477-447e-883f-9f3b539598db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +3958,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:17 GMT" + "Sun, 03 Jan 2016 13:48:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2866,7 +3976,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -2878,7 +3988,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d3c0d495-0f62-4e2f-9ec3-8c25621bdfb8" + "27d70a70-4fbf-4b79-abd4-eddaf7398d6a" ], "X-Content-Type-Options": [ "nosniff" @@ -2887,13 +3997,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14941" ], "x-ms-correlation-request-id": [ - "f2df2374-e9c9-47e3-90cf-d8e4d093bb0c" + "606b74f8-dd6b-4954-854d-b107d168493c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064020Z:f2df2374-e9c9-47e3-90cf-d8e4d093bb0c" + "WESTEUROPE:20160103T134842Z:606b74f8-dd6b-4954-854d-b107d168493c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2902,7 +4012,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:20 GMT" + "Sun, 03 Jan 2016 13:48:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2920,7 +4030,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -2932,7 +4042,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5800bca9-2486-4ff1-a706-979a55a76462" + "9246b5fa-9472-4f93-9a0e-4ee1b4a74335" ], "X-Content-Type-Options": [ "nosniff" @@ -2941,13 +4051,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14939" ], "x-ms-correlation-request-id": [ - "d53f0ae7-7d48-47ac-9440-eadbdd7324f3" + "e1cd27b9-8421-4564-a613-1c21264155a7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064112Z:d53f0ae7-7d48-47ac-9440-eadbdd7324f3" + "WESTEUROPE:20160103T134845Z:e1cd27b9-8421-4564-a613-1c21264155a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2956,7 +4066,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:12 GMT" + "Sun, 03 Jan 2016 13:48:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2974,7 +4084,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "19195b53-eee7-4738-8ff3-67d505211f8f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -2986,7 +4096,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0d305783-036b-492b-a5eb-e2d21a3b161c" + "43d96505-9081-4076-8593-3b9f5e268a9a" ], "X-Content-Type-Options": [ "nosniff" @@ -2995,13 +4105,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14936" ], "x-ms-correlation-request-id": [ - "dfa76297-d4b6-41b4-b4c3-7488f57dc24e" + "9cebf430-5e9f-49d0-9de8-8c34f3299c20" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064115Z:dfa76297-d4b6-41b4-b4c3-7488f57dc24e" + "WESTEUROPE:20160103T134901Z:9cebf430-5e9f-49d0-9de8-8c34f3299c20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3010,7 +4120,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:15 GMT" + "Sun, 03 Jan 2016 13:49:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3028,7 +4138,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6abc324a-7423-45d6-ac3b-2e45a7c47898" + "ef1a830b-edc3-4a40-9441-acf25793b795" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -3040,7 +4150,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d4dc767b-b4b9-46c4-9fde-bdf2114e2621" + "3801d612-05b8-46e4-a5fb-7f4ec4257afa" ], "X-Content-Type-Options": [ "nosniff" @@ -3049,13 +4159,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14931" ], "x-ms-correlation-request-id": [ - "e25affda-328a-4845-9d34-3dcbbda31199" + "ee3afb93-c442-45da-ae1a-34a5cd30e94d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064131Z:e25affda-328a-4845-9d34-3dcbbda31199" + "WESTEUROPE:20160103T134903Z:ee3afb93-c442-45da-ae1a-34a5cd30e94d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3064,7 +4174,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:31 GMT" + "Sun, 03 Jan 2016 13:49:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3082,7 +4192,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "df36de0c-9fa5-4c6b-8aea-1f53b4273050" + "7c895adf-4b23-4f4f-906a-f196cd411d91" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -3094,7 +4204,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "68cfa97f-91be-412b-ad54-569548446877" + "a14e4c7d-23ae-4dcd-8694-a15fda4795c2" ], "X-Content-Type-Options": [ "nosniff" @@ -3103,13 +4213,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14929" ], "x-ms-correlation-request-id": [ - "66931781-d5b0-45d4-953f-a09b857e08bb" + "c6ee57e8-0836-4738-a006-625838a76064" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064134Z:66931781-d5b0-45d4-953f-a09b857e08bb" + "WESTEUROPE:20160103T134905Z:c6ee57e8-0836-4738-a006-625838a76064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3118,7 +4228,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:34 GMT" + "Sun, 03 Jan 2016 13:49:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3136,7 +4246,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "96478e0a-b110-4a00-8fd7-3568d422f553" + "8a471afc-8c96-44d7-a73a-82ba3141b5d9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -3148,7 +4258,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ddeab14e-385b-4dde-9a15-b01d94ac1ece" + "026e25b5-f85a-460e-ac3c-ae8961dc29eb" ], "X-Content-Type-Options": [ "nosniff" @@ -3157,13 +4267,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14927" ], "x-ms-correlation-request-id": [ - "6fdc626c-8da4-41bc-acde-7ee912ff94a0" + "53678572-1cee-4bae-9042-e4b573ef66d5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064137Z:6fdc626c-8da4-41bc-acde-7ee912ff94a0" + "WESTEUROPE:20160103T134907Z:53678572-1cee-4bae-9042-e4b573ef66d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3172,7 +4282,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:37 GMT" + "Sun, 03 Jan 2016 13:49:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3190,7 +4300,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3202,7 +4312,61 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4f4f5184-766c-4861-97ee-85c52e9c1cc3" + "ad4c7f95-b22a-4d74-ab97-955cd3af3987" + ], + "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": [ + "3371e4cd-7f9d-42a9-ada3-e0cb9f0a103b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134807Z:3371e4cd-7f9d-42a9-ada3-e0cb9f0a103b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:48:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f7b34459-eeec-4167-b975-c782958d56aa" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "11446ad9-14e6-43e2-8e62-1a913dcef5cd" ], "X-Content-Type-Options": [ "nosniff" @@ -3214,19 +4378,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14940" ], "x-ms-correlation-request-id": [ - "7e3a3753-b7d7-4602-911d-47d6c9cd9690" + "d1097622-d078-4e23-911e-0017bfcd852c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064020Z:7e3a3753-b7d7-4602-911d-47d6c9cd9690" + "WESTEUROPE:20160103T134844Z:d1097622-d078-4e23-911e-0017bfcd852c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:19 GMT" + "Sun, 03 Jan 2016 13:48:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3244,7 +4408,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "19195b53-eee7-4738-8ff3-67d505211f8f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3256,7 +4420,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e6efdc04-d4a8-4061-bd7a-ec38c10a8ca7" + "454bdf5e-ae55-4b61-b457-6c81cd0c1208" ], "X-Content-Type-Options": [ "nosniff" @@ -3268,19 +4432,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14935" ], "x-ms-correlation-request-id": [ - "c8293018-7bf1-48de-944c-c7c54e7dd835" + "306b01fe-efe7-4888-a018-dcb3a7ae60a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064115Z:c8293018-7bf1-48de-944c-c7c54e7dd835" + "WESTEUROPE:20160103T134902Z:306b01fe-efe7-4888-a018-dcb3a7ae60a0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:15 GMT" + "Sun, 03 Jan 2016 13:49:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3298,7 +4462,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6abc324a-7423-45d6-ac3b-2e45a7c47898" + "ef1a830b-edc3-4a40-9441-acf25793b795" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3310,7 +4474,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "20b8748d-5a17-4248-9950-35ed08e71588" + "7df13252-c373-4c21-8048-91d044a0d216" ], "X-Content-Type-Options": [ "nosniff" @@ -3322,19 +4486,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14930" ], "x-ms-correlation-request-id": [ - "580f25fc-3af9-41f8-b882-5ecdf68b9319" + "d13deab2-d22e-424b-88ac-f6c4cbad076e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064134Z:580f25fc-3af9-41f8-b882-5ecdf68b9319" + "WESTEUROPE:20160103T134905Z:d13deab2-d22e-424b-88ac-f6c4cbad076e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:34 GMT" + "Sun, 03 Jan 2016 13:49:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3352,7 +4516,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "df36de0c-9fa5-4c6b-8aea-1f53b4273050" + "7c895adf-4b23-4f4f-906a-f196cd411d91" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3364,7 +4528,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5812bff7-08d4-4d8d-b0cb-6838238dc296" + "adbf4152-1e69-49fc-8138-eb0480740daa" ], "X-Content-Type-Options": [ "nosniff" @@ -3376,19 +4540,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14928" ], "x-ms-correlation-request-id": [ - "adbef4f4-825a-4e6d-a5ab-3b673b1cbce8" + "60da10a5-e4e6-40c9-af9f-ca15b90c5ba6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064137Z:adbef4f4-825a-4e6d-a5ab-3b673b1cbce8" + "WESTEUROPE:20160103T134907Z:60da10a5-e4e6-40c9-af9f-ca15b90c5ba6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:37 GMT" + "Sun, 03 Jan 2016 13:49:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3406,7 +4570,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "96478e0a-b110-4a00-8fd7-3568d422f553" + "8a471afc-8c96-44d7-a73a-82ba3141b5d9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3418,7 +4582,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fe6d7e96-0581-4211-a3be-5fd2b8440555" + "f9870f9f-af18-48c0-9576-f23e82dcc2e7" ], "X-Content-Type-Options": [ "nosniff" @@ -3430,19 +4594,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14926" ], "x-ms-correlation-request-id": [ - "6da748cd-c3d3-4dbb-a4c0-84d57f219d81" + "7d571bfb-ae68-4247-9e59-e265a7c467db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064140Z:6da748cd-c3d3-4dbb-a4c0-84d57f219d81" + "WESTEUROPE:20160103T134909Z:7d571bfb-ae68-4247-9e59-e265a7c467db" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:39 GMT" + "Sun, 03 Jan 2016 13:49:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3460,7 +4624,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3472,7 +4636,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ae60edfb-8264-4313-a3d3-6e4328a773e1" + "28b4fd3b-e6ad-408d-b71e-88aba6346d96" ], "X-Content-Type-Options": [ "nosniff" @@ -3484,19 +4648,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14949" ], "x-ms-correlation-request-id": [ - "73a99fa8-88c5-4edd-93ea-514f097a4a94" + "d084e3fc-65e9-44fe-aed1-7afcb8162a0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064023Z:73a99fa8-88c5-4edd-93ea-514f097a4a94" + "WESTEUROPE:20160103T134810Z:d084e3fc-65e9-44fe-aed1-7afcb8162a0a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:22 GMT" + "Sun, 03 Jan 2016 13:48:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3514,7 +4678,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5b60ac30-af50-4117-ab75-8e4d98147c5e" + "7d513c3f-c32f-4eb0-976e-eca9623e3d9a" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3526,7 +4690,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fc9599a3-df52-4272-b60d-14f7de5526f3" + "79328423-729c-4dfd-923e-45f3d9f6f89f" ], "X-Content-Type-Options": [ "nosniff" @@ -3538,19 +4702,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14948" ], "x-ms-correlation-request-id": [ - "dd4f5946-c31f-4a97-ab9f-97dd39b48e56" + "d1b89e85-07ac-4b43-adb5-bd358898c1f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064026Z:dd4f5946-c31f-4a97-ab9f-97dd39b48e56" + "WESTEUROPE:20160103T134811Z:d1b89e85-07ac-4b43-adb5-bd358898c1f2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:25 GMT" + "Sun, 03 Jan 2016 13:48:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3568,7 +4732,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3580,7 +4744,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "55665292-110f-4e51-994f-78c68985c474" + "a567884c-beb3-4ee1-8e9e-109716df5967" ], "X-Content-Type-Options": [ "nosniff" @@ -3592,19 +4756,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14945" ], "x-ms-correlation-request-id": [ - "fed70613-28cd-4071-9360-4c91bbffd821" + "9c52b724-50a2-48bd-b699-d2c9d18cace1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064053Z:fed70613-28cd-4071-9360-4c91bbffd821" + "WESTEUROPE:20160103T134829Z:9c52b724-50a2-48bd-b699-d2c9d18cace1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:52 GMT" + "Sun, 03 Jan 2016 13:48:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3622,7 +4786,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3634,7 +4798,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "af7f3e6e-def1-4103-9057-cf053899a6e9" + "7d10fb18-f217-47c0-bc9c-f49ed39ffaae" ], "X-Content-Type-Options": [ "nosniff" @@ -3646,19 +4810,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14938" ], "x-ms-correlation-request-id": [ - "844f9e10-ff50-40a1-946b-08a0935d42e0" + "43303533-840e-40b5-b8d8-052cba506b9a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064118Z:844f9e10-ff50-40a1-946b-08a0935d42e0" + "WESTEUROPE:20160103T134846Z:43303533-840e-40b5-b8d8-052cba506b9a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:18 GMT" + "Sun, 03 Jan 2016 13:48:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3676,7 +4840,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fb5ef4b8-aeff-41a4-a79a-9d312928c5eb" + "0b549b58-5f5a-43ad-9b56-2e9ccb134947" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3688,7 +4852,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "efbc07dd-4445-4689-b007-d53d186d6330" + "5a92f0af-45f1-4b95-afaa-1fda6a468ec8" ], "X-Content-Type-Options": [ "nosniff" @@ -3700,19 +4864,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14936" ], "x-ms-correlation-request-id": [ - "89b3e032-8956-4d1f-a0b4-9e5b74c26b70" + "915d30ef-94fe-4d76-b3e9-19cfaac4a9be" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064124Z:89b3e032-8956-4d1f-a0b4-9e5b74c26b70" + "WESTEUROPE:20160103T134850Z:915d30ef-94fe-4d76-b3e9-19cfaac4a9be" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:23 GMT" + "Sun, 03 Jan 2016 13:48:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3730,19 +4894,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5b60ac30-af50-4117-ab75-8e4d98147c5e" + "7d513c3f-c32f-4eb0-976e-eca9623e3d9a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd2ae139-3093-45b3-9754-c472346b4db1\",\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-12-07T06:39:20.043Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-12-07T06:49:57.477Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fd1fe42b-2a30-4bd3-8d76-c61c38e437ce\",\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\": \"2016-01-03T13:46:40.55Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T13:57:22.707Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "871" + "870" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "936972b1-105b-43e9-9376-8468ee8b6c20" + "d0143a9e-8337-493d-a05c-b6cc327c8789" ], "X-Content-Type-Options": [ "nosniff" @@ -3754,19 +4918,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14947" ], "x-ms-correlation-request-id": [ - "2fd2a3f9-4373-4f38-a026-bbb919f6997e" + "edd5a825-a2ab-446a-a65e-b5690809d7b8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064029Z:2fd2a3f9-4373-4f38-a026-bbb919f6997e" + "WESTEUROPE:20160103T134813Z:edd5a825-a2ab-446a-a65e-b5690809d7b8" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:28 GMT" + "Sun, 03 Jan 2016 13:48:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3784,19 +4948,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd2ae139-3093-45b3-9754-c472346b4db1\",\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-12-07T06:39:20.043Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-12-07T06:49:57.477Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fd1fe42b-2a30-4bd3-8d76-c61c38e437ce\",\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\": \"2016-01-03T13:46:40.55Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T13:57:22.707Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "871" + "870" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "dd63d047-29cd-4d3a-8152-d89b9178db87" + "4cca929e-8119-4ee5-acb9-c3a93879e2bc" ], "X-Content-Type-Options": [ "nosniff" @@ -3808,19 +4972,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14943" ], "x-ms-correlation-request-id": [ - "bb754535-9908-46fd-8f48-fd8eb2373a45" + "511a5dca-d7c0-401a-ad30-36bb889862c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064059Z:bb754535-9908-46fd-8f48-fd8eb2373a45" + "WESTEUROPE:20160103T134833Z:511a5dca-d7c0-401a-ad30-36bb889862c1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:58 GMT" + "Sun, 03 Jan 2016 13:48:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3838,19 +5002,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fb5ef4b8-aeff-41a4-a79a-9d312928c5eb" + "0b549b58-5f5a-43ad-9b56-2e9ccb134947" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd2ae139-3093-45b3-9754-c472346b4db1\",\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-12-07T06:39:20.043Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-12-07T06:49:57.477Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fd1fe42b-2a30-4bd3-8d76-c61c38e437ce\",\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\": \"2016-01-03T13:46:40.55Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T13:57:22.707Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "871" + "870" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7152dfef-f703-4ea3-9baa-c03c488d4428" + "c0bec30e-2ae3-4148-9021-a6a8cc26f059" ], "X-Content-Type-Options": [ "nosniff" @@ -3862,19 +5026,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14935" ], "x-ms-correlation-request-id": [ - "0694bd9c-f977-4447-9f82-476c450d4982" + "d73644da-4841-476d-bcec-cc6c699ecb52" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:0694bd9c-f977-4447-9f82-476c450d4982" + "WESTEUROPE:20160103T134852Z:d73644da-4841-476d-bcec-cc6c699ecb52" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:26 GMT" + "Sun, 03 Jan 2016 13:48:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3892,10 +5056,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7124" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3907,16 +5071,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14877" ], "x-ms-request-id": [ - "56c7cf1e-6e0e-45b0-98ce-4308716a708d" + "1f0c8001-e238-4e41-95a2-c619daa0c886" ], "x-ms-correlation-request-id": [ - "56c7cf1e-6e0e-45b0-98ce-4308716a708d" + "1f0c8001-e238-4e41-95a2-c619daa0c886" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064029Z:56c7cf1e-6e0e-45b0-98ce-4308716a708d" + "WESTEUROPE:20160103T134813Z:1f0c8001-e238-4e41-95a2-c619daa0c886" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3925,7 +5089,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:28 GMT" + "Sun, 03 Jan 2016 13:48:13 GMT" ] }, "StatusCode": 200 @@ -3940,10 +5104,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7124" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3955,16 +5119,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14875" ], "x-ms-request-id": [ - "8717cc54-c59a-4121-ae07-cb323d4c8dad" + "d9eac27e-fae5-4271-8925-3dd4d23f6c14" ], "x-ms-correlation-request-id": [ - "8717cc54-c59a-4121-ae07-cb323d4c8dad" + "d9eac27e-fae5-4271-8925-3dd4d23f6c14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064040Z:8717cc54-c59a-4121-ae07-cb323d4c8dad" + "WESTEUROPE:20160103T134824Z:d9eac27e-fae5-4271-8925-3dd4d23f6c14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3973,7 +5137,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:40 GMT" + "Sun, 03 Jan 2016 13:48:23 GMT" ] }, "StatusCode": 200 @@ -3988,10 +5152,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7124" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4003,16 +5167,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14871" ], "x-ms-request-id": [ - "4a362d54-2944-4830-8ab1-ef0b4c2d5871" + "e136c29b-4342-4cc1-a7fa-8807caa30317" ], "x-ms-correlation-request-id": [ - "4a362d54-2944-4830-8ab1-ef0b4c2d5871" + "e136c29b-4342-4cc1-a7fa-8807caa30317" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:4a362d54-2944-4830-8ab1-ef0b4c2d5871" + "WESTEUROPE:20160103T134852Z:e136c29b-4342-4cc1-a7fa-8807caa30317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4021,7 +5185,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:26 GMT" + "Sun, 03 Jan 2016 13:48:51 GMT" ] }, "StatusCode": 200 @@ -4051,16 +5215,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14876" ], "x-ms-request-id": [ - "2cb424a6-9595-4ce5-82d0-f983562cfddc" + "14b36f41-c65b-4915-a3c1-cd18bdf0e57c" ], "x-ms-correlation-request-id": [ - "2cb424a6-9595-4ce5-82d0-f983562cfddc" + "14b36f41-c65b-4915-a3c1-cd18bdf0e57c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064029Z:2cb424a6-9595-4ce5-82d0-f983562cfddc" + "WESTEUROPE:20160103T134814Z:14b36f41-c65b-4915-a3c1-cd18bdf0e57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4069,7 +5233,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:28 GMT" + "Sun, 03 Jan 2016 13:48:13 GMT" ] }, "StatusCode": 200 @@ -4099,16 +5263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14874" ], "x-ms-request-id": [ - "5fb3a302-a86a-47f2-8d81-f34517f53993" + "b1ef753d-6f3e-4ab7-a0bd-dddaa33b9f30" ], "x-ms-correlation-request-id": [ - "5fb3a302-a86a-47f2-8d81-f34517f53993" + "b1ef753d-6f3e-4ab7-a0bd-dddaa33b9f30" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064040Z:5fb3a302-a86a-47f2-8d81-f34517f53993" + "WESTEUROPE:20160103T134824Z:b1ef753d-6f3e-4ab7-a0bd-dddaa33b9f30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4117,7 +5281,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:40 GMT" + "Sun, 03 Jan 2016 13:48:23 GMT" ] }, "StatusCode": 200 @@ -4147,16 +5311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14870" ], "x-ms-request-id": [ - "97ad352f-88a9-4d40-9656-b834a1ace21d" + "fe15f248-60a0-4d61-a774-a310cd5c8526" ], "x-ms-correlation-request-id": [ - "97ad352f-88a9-4d40-9656-b834a1ace21d" + "fe15f248-60a0-4d61-a774-a310cd5c8526" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:97ad352f-88a9-4d40-9656-b834a1ace21d" + "WESTEUROPE:20160103T134852Z:fe15f248-60a0-4d61-a774-a310cd5c8526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4165,7 +5329,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:27 GMT" + "Sun, 03 Jan 2016 13:48:52 GMT" ] }, "StatusCode": 200 @@ -4201,13 +5365,13 @@ "gateway" ], "x-ms-request-id": [ - "c59346aa-e7d4-4224-9fa1-350ba5453c9f" + "f2669a50-a56c-48ae-8a60-f64b850554ae" ], "x-ms-correlation-request-id": [ - "c59346aa-e7d4-4224-9fa1-350ba5453c9f" + "f2669a50-a56c-48ae-8a60-f64b850554ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064031Z:c59346aa-e7d4-4224-9fa1-350ba5453c9f" + "WESTEUROPE:20160103T134815Z:f2669a50-a56c-48ae-8a60-f64b850554ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4216,7 +5380,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:30 GMT" + "Sun, 03 Jan 2016 13:48:14 GMT" ] }, "StatusCode": 404 @@ -4252,13 +5416,13 @@ "gateway" ], "x-ms-request-id": [ - "04bada66-ee98-478f-b9e9-ca3df75673cb" + "d8b65dd1-7ce0-40ce-acdd-76b81a3ea7f0" ], "x-ms-correlation-request-id": [ - "04bada66-ee98-478f-b9e9-ca3df75673cb" + "d8b65dd1-7ce0-40ce-acdd-76b81a3ea7f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064041Z:04bada66-ee98-478f-b9e9-ca3df75673cb" + "WESTEUROPE:20160103T134824Z:d8b65dd1-7ce0-40ce-acdd-76b81a3ea7f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4267,7 +5431,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:41 GMT" + "Sun, 03 Jan 2016 13:48:24 GMT" ] }, "StatusCode": 404 @@ -4303,13 +5467,13 @@ "gateway" ], "x-ms-request-id": [ - "e26dd6cb-7afb-4520-8e38-ed793a7c068a" + "e381468b-c0a4-44d1-afb9-19a830dcca50" ], "x-ms-correlation-request-id": [ - "e26dd6cb-7afb-4520-8e38-ed793a7c068a" + "e381468b-c0a4-44d1-afb9-19a830dcca50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064059Z:e26dd6cb-7afb-4520-8e38-ed793a7c068a" + "WESTEUROPE:20160103T134833Z:e381468b-c0a4-44d1-afb9-19a830dcca50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4318,7 +5482,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:59 GMT" + "Sun, 03 Jan 2016 13:48:33 GMT" ] }, "StatusCode": 404 @@ -4354,13 +5518,13 @@ "gateway" ], "x-ms-request-id": [ - "6f87585d-f4f5-47d6-ad5a-fc769d880f1f" + "95a4a112-1806-4a24-8c31-acfa6be0408d" ], "x-ms-correlation-request-id": [ - "6f87585d-f4f5-47d6-ad5a-fc769d880f1f" + "95a4a112-1806-4a24-8c31-acfa6be0408d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064106Z:6f87585d-f4f5-47d6-ad5a-fc769d880f1f" + "WESTEUROPE:20160103T134838Z:95a4a112-1806-4a24-8c31-acfa6be0408d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4369,7 +5533,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:06 GMT" + "Sun, 03 Jan 2016 13:48:38 GMT" ] }, "StatusCode": 404 @@ -4405,13 +5569,13 @@ "gateway" ], "x-ms-request-id": [ - "024dbcdf-b138-480b-8398-cf172ce8a640" + "71090e8a-5f00-4453-bc98-90ab55976318" ], "x-ms-correlation-request-id": [ - "024dbcdf-b138-480b-8398-cf172ce8a640" + "71090e8a-5f00-4453-bc98-90ab55976318" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064107Z:024dbcdf-b138-480b-8398-cf172ce8a640" + "WESTEUROPE:20160103T134839Z:71090e8a-5f00-4453-bc98-90ab55976318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4420,7 +5584,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:07 GMT" + "Sun, 03 Jan 2016 13:48:38 GMT" ] }, "StatusCode": 404 @@ -4456,13 +5620,13 @@ "gateway" ], "x-ms-request-id": [ - "9e9ed5a2-2bec-4d35-b997-e90c12da6a4a" + "1f3c3b66-20b8-4af2-80bb-8d5b3c9f36b1" ], "x-ms-correlation-request-id": [ - "9e9ed5a2-2bec-4d35-b997-e90c12da6a4a" + "1f3c3b66-20b8-4af2-80bb-8d5b3c9f36b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:9e9ed5a2-2bec-4d35-b997-e90c12da6a4a" + "WESTEUROPE:20160103T134853Z:1f3c3b66-20b8-4af2-80bb-8d5b3c9f36b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4471,7 +5635,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:27 GMT" + "Sun, 03 Jan 2016 13:48:53 GMT" ] }, "StatusCode": 404 @@ -4483,13 +5647,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e1fca3a-ff17-4eac-938d-ca6b714f98a7" + "027e0b81-08c7-4dd6-a28e-29826e71eebd" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4504,16 +5668,16 @@ "no-cache" ], "x-ms-request-id": [ - "9f764699-10f1-46fb-a0cc-71de9b9da373" + "6dd62718-a70a-4a84-bfc5-daf96a541bdb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "9f764699-10f1-46fb-a0cc-71de9b9da373" + "6dd62718-a70a-4a84-bfc5-daf96a541bdb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064032Z:9f764699-10f1-46fb-a0cc-71de9b9da373" + "WESTEUROPE:20160103T134817Z:6dd62718-a70a-4a84-bfc5-daf96a541bdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4522,7 +5686,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:32 GMT" + "Sun, 03 Jan 2016 13:48:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4537,13 +5701,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d036102-c621-42fd-8033-17b88e464dd6" + "da34a8cb-c76c-4d96-b208-fca22a053b5e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4558,16 +5722,16 @@ "no-cache" ], "x-ms-request-id": [ - "53cf5019-34f2-4d2b-8da6-adb13e2a0e55" + "432d94f8-05c5-44a2-9eb0-582a32707e48" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "53cf5019-34f2-4d2b-8da6-adb13e2a0e55" + "432d94f8-05c5-44a2-9eb0-582a32707e48" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064042Z:53cf5019-34f2-4d2b-8da6-adb13e2a0e55" + "WESTEUROPE:20160103T134825Z:432d94f8-05c5-44a2-9eb0-582a32707e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4576,7 +5740,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:41 GMT" + "Sun, 03 Jan 2016 13:48:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4591,13 +5755,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7df1853-ff91-43f6-a718-246f0fce606d" + "4b6ae954-2ab6-4ab7-8d7e-f7a821a255df" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4612,16 +5776,16 @@ "no-cache" ], "x-ms-request-id": [ - "bd55fc70-cc53-4432-a315-b3974dc330d8" + "7ab0c348-6e73-4538-9e19-2335eff91847" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "bd55fc70-cc53-4432-a315-b3974dc330d8" + "7ab0c348-6e73-4538-9e19-2335eff91847" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064100Z:bd55fc70-cc53-4432-a315-b3974dc330d8" + "WESTEUROPE:20160103T134834Z:7ab0c348-6e73-4538-9e19-2335eff91847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4630,7 +5794,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:59 GMT" + "Sun, 03 Jan 2016 13:48:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4645,13 +5809,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce33fcc2-ecf4-49e8-9bf6-f69e031026e3" + "e3b97364-f253-4931-a230-db0072560642" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4666,16 +5830,16 @@ "no-cache" ], "x-ms-request-id": [ - "b601be75-9941-4afe-8b52-13fc9dc1b6c9" + "1ea306c8-6292-4ec1-87a1-6d74936c2bfa" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "b601be75-9941-4afe-8b52-13fc9dc1b6c9" + "1ea306c8-6292-4ec1-87a1-6d74936c2bfa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064107Z:b601be75-9941-4afe-8b52-13fc9dc1b6c9" + "WESTEUROPE:20160103T134839Z:1ea306c8-6292-4ec1-87a1-6d74936c2bfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4684,7 +5848,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:06 GMT" + "Sun, 03 Jan 2016 13:48:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4699,13 +5863,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6ed5625-8561-414e-950b-7905803491b6" + "f0342be2-d44b-4afa-b34d-e5496335b565" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4720,16 +5884,16 @@ "no-cache" ], "x-ms-request-id": [ - "b861db90-2f78-4e77-9f6d-9cc14314012d" + "2592e95b-8d01-47ce-a8aa-69e21410c8e3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "b861db90-2f78-4e77-9f6d-9cc14314012d" + "2592e95b-8d01-47ce-a8aa-69e21410c8e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064108Z:b861db90-2f78-4e77-9f6d-9cc14314012d" + "WESTEUROPE:20160103T134840Z:2592e95b-8d01-47ce-a8aa-69e21410c8e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4738,7 +5902,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:07 GMT" + "Sun, 03 Jan 2016 13:48:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4753,13 +5917,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6018a52-6760-440e-9b90-fbb8bac2ef47" + "d70d5dcd-4009-4ee0-8cb7-85040844c3e8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4774,16 +5938,16 @@ "no-cache" ], "x-ms-request-id": [ - "c39bf1bc-7362-4ace-98f0-fbc8b3d13e8d" + "6b5d55de-283e-4c49-a7d3-b030c467f47e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "c39bf1bc-7362-4ace-98f0-fbc8b3d13e8d" + "6b5d55de-283e-4c49-a7d3-b030c467f47e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064128Z:c39bf1bc-7362-4ace-98f0-fbc8b3d13e8d" + "WESTEUROPE:20160103T134853Z:6b5d55de-283e-4c49-a7d3-b030c467f47e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4792,7 +5956,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:28 GMT" + "Sun, 03 Jan 2016 13:48:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4804,7 +5968,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4816,10 +5980,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5b60ac30-af50-4117-ab75-8e4d98147c5e" + "7d513c3f-c32f-4eb0-976e-eca9623e3d9a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1126" @@ -4828,7 +5992,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e8301a77-077e-4db8-aa24-d796b7682243" + "cf8cfc4b-f26c-4983-b4d8-b2eaccba639e" ], "X-Content-Type-Options": [ "nosniff" @@ -4843,19 +6007,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "81dd0c3e-c585-4259-9bdf-016f852f9aac" + "b29ba2cf-71a0-48c7-8b66-e15a4390ede7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064037Z:81dd0c3e-c585-4259-9bdf-016f852f9aac" + "WESTEUROPE:20160103T134822Z:b29ba2cf-71a0-48c7-8b66-e15a4390ede7" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:37 GMT" + "Sun, 03 Jan 2016 13:48:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4867,7 +6031,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4879,10 +6043,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1125" @@ -4891,7 +6055,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e5819e9f-214d-48a9-bca9-7999e33aee5e" + "0f28389b-5632-40d4-8c8a-b39fabfe7ed4" ], "X-Content-Type-Options": [ "nosniff" @@ -4906,19 +6070,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "fbaf348d-eea5-4fa6-a467-b7889ff556f2" + "de2b9f7d-bdf9-439a-87d4-40325dd83e23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064103Z:fbaf348d-eea5-4fa6-a467-b7889ff556f2" + "WESTEUROPE:20160103T134836Z:de2b9f7d-bdf9-439a-87d4-40325dd83e23" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:03 GMT" + "Sun, 03 Jan 2016 13:48:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4930,7 +6094,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4942,10 +6106,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fb5ef4b8-aeff-41a4-a79a-9d312928c5eb" + "0b549b58-5f5a-43ad-9b56-2e9ccb134947" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1126" @@ -4954,7 +6118,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1b1f6275-d7cd-4094-904a-876e3474babb" + "2017fdb5-be9c-419c-9e94-b5274d18a72b" ], "X-Content-Type-Options": [ "nosniff" @@ -4969,19 +6133,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "a85e254a-ed3b-40c6-ba70-f816781b06d3" + "0ed6ba66-91ac-4707-b6ea-b2328e784871" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064131Z:a85e254a-ed3b-40c6-ba70-f816781b06d3" + "WESTEUROPE:20160103T134900Z:0ed6ba66-91ac-4707-b6ea-b2328e784871" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:31 GMT" + "Sun, 03 Jan 2016 13:48:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4999,7 +6163,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "51bf2e5d-bca2-41eb-a1db-5b75e41e3f82" + "c9b61476-072d-41de-97a8-f7b57b449c19" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5011,7 +6175,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3dcde277-cd8d-422f-8b0b-a39a400f8043" + "569fd217-86a5-4b31-9eb4-5a9fa038695c" ], "X-Content-Type-Options": [ "nosniff" @@ -5023,19 +6187,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14946" ], "x-ms-correlation-request-id": [ - "563f27f2-ce7f-4e8a-b96e-141a38595c22" + "a973cea4-f7a5-43d4-84d7-31f5e30cf8c8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064040Z:563f27f2-ce7f-4e8a-b96e-141a38595c22" + "WESTEUROPE:20160103T134823Z:a973cea4-f7a5-43d4-84d7-31f5e30cf8c8" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:40 GMT" + "Sun, 03 Jan 2016 13:48:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5053,7 +6217,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5065,7 +6229,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "988285b7-fbe8-4de5-8bb6-99b5b5a258f2" + "c88edbd9-35c3-414e-ab81-e662051278f2" ], "X-Content-Type-Options": [ "nosniff" @@ -5077,19 +6241,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14944" ], "x-ms-correlation-request-id": [ - "0c946b55-130c-43b9-a87a-2f1e969d5080" + "303d268a-10c0-45da-94cf-285af03f6a12" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064056Z:0c946b55-130c-43b9-a87a-2f1e969d5080" + "WESTEUROPE:20160103T134831Z:303d268a-10c0-45da-94cf-285af03f6a12" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:56 GMT" + "Sun, 03 Jan 2016 13:48:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5107,7 +6271,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "063985d8-cae8-40e9-86c0-6f416b5d76fe" + "dbb16379-9b90-4001-866e-d98b2460f28c" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5119,7 +6283,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a78ffa66-9cda-4b5b-a559-32f4aea793b7" + "560b9b11-3152-407e-bb33-59d7db031e41" ], "X-Content-Type-Options": [ "nosniff" @@ -5131,19 +6295,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14942" ], "x-ms-correlation-request-id": [ - "933f098d-16b7-4deb-af52-8000f7628676" + "118c49a2-c7b8-4ba3-b59e-f28d9646d3fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064106Z:933f098d-16b7-4deb-af52-8000f7628676" + "WESTEUROPE:20160103T134838Z:118c49a2-c7b8-4ba3-b59e-f28d9646d3fa" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:05 GMT" + "Sun, 03 Jan 2016 13:48:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5161,7 +6325,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": \"********\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5173,7 +6337,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2019ed04-997b-4166-9d46-04279cbafabf" + "69ffdffc-d2d2-407c-9cf4-8c57c26eec9b" ], "X-Content-Type-Options": [ "nosniff" @@ -5185,19 +6349,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14937" ], "x-ms-correlation-request-id": [ - "b2850865-14c4-485c-ab16-967ecc251c22" + "194dfb42-cdae-4957-81f9-4749b2f1204a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064121Z:b2850865-14c4-485c-ab16-967ecc251c22" + "WESTEUROPE:20160103T134848Z:194dfb42-cdae-4957-81f9-4749b2f1204a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:20 GMT" + "Sun, 03 Jan 2016 13:48:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5209,7 +6373,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvYXVkaXRpbmdQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5221,10 +6385,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "51bf2e5d-bca2-41eb-a1db-5b75e41e3f82" + "c9b61476-072d-41de-97a8-f7b57b449c19" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1038" @@ -5233,7 +6397,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "868145b4-084e-47e4-bdce-742c21ccab96" + "762ab093-44de-46da-8cbe-765c533f522b" ], "X-Content-Type-Options": [ "nosniff" @@ -5248,19 +6412,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "f7adc49b-77ff-4406-be61-99cf681cb0cb" + "b469916f-7ffb-4027-95bb-526b8e25c3f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064048Z:f7adc49b-77ff-4406-be61-99cf681cb0cb" + "WESTEUROPE:20160103T134827Z:b469916f-7ffb-4027-95bb-526b8e25c3f0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:47 GMT" + "Sun, 03 Jan 2016 13:48:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5272,7 +6436,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvYXVkaXRpbmdQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5284,10 +6448,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "063985d8-cae8-40e9-86c0-6f416b5d76fe" + "dbb16379-9b90-4001-866e-d98b2460f28c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1125" @@ -5296,7 +6460,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2cd67622-e6cc-47ca-9c65-d7a51adcd671" + "69e67aa5-3319-43ee-85ba-27483f0b2ee8" ], "X-Content-Type-Options": [ "nosniff" @@ -5311,19 +6475,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1190" ], "x-ms-correlation-request-id": [ - "f28cd64f-60bf-4fd8-ba24-1ca00b8501e9" + "75e95c28-203a-4373-96ed-3c7b9b39d488" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064111Z:f28cd64f-60bf-4fd8-ba24-1ca00b8501e9" + "WESTEUROPE:20160103T134842Z:75e95c28-203a-4373-96ed-3c7b9b39d488" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:11 GMT" + "Sun, 03 Jan 2016 13:48:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json index 5428d731ae5e..be86755a76f9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14857" ], "x-ms-request-id": [ - "692f91f6-aaf0-4a3f-9fad-72ae26e2f032" + "a7a0b809-7ca3-4115-aef1-6daca784c745" ], "x-ms-correlation-request-id": [ - "692f91f6-aaf0-4a3f-9fad-72ae26e2f032" + "a7a0b809-7ca3-4115-aef1-6daca784c745" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074622Z:692f91f6-aaf0-4a3f-9fad-72ae26e2f032" + "WESTEUROPE:20160103T135208Z:a7a0b809-7ca3-4115-aef1-6daca784c745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:21 GMT" + "Sun, 03 Jan 2016 13:52:08 GMT" ] }, "StatusCode": 404 @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "356c74a1-35d0-490d-9ba9-970bb49f4e89" + "8da6edd5-1ac0-4869-ab8c-03407337cc96" ], "x-ms-correlation-request-id": [ - "356c74a1-35d0-490d-9ba9-970bb49f4e89" + "8da6edd5-1ac0-4869-ab8c-03407337cc96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074626Z:356c74a1-35d0-490d-9ba9-970bb49f4e89" + "WESTEUROPE:20160103T135212Z:8da6edd5-1ac0-4869-ab8c-03407337cc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:26 GMT" + "Sun, 03 Jan 2016 13:52:11 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14856" ], "x-ms-request-id": [ - "3853f106-1684-4b63-bff9-b4707474a22e" + "84945934-b19a-48e9-b98f-51371b1dfe5f" ], "x-ms-correlation-request-id": [ - "3853f106-1684-4b63-bff9-b4707474a22e" + "84945934-b19a-48e9-b98f-51371b1dfe5f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074626Z:3853f106-1684-4b63-bff9-b4707474a22e" + "WESTEUROPE:20160103T135212Z:84945934-b19a-48e9-b98f-51371b1dfe5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:26 GMT" + "Sun, 03 Jan 2016 13:52:12 GMT" ] }, "StatusCode": 200 @@ -169,10 +169,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-11-12T07:46:32.1667586Z\",\r\n \"duration\": \"PT3.723348S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-01-03T13:52:16.9971692Z\",\r\n \"duration\": \"PT2.9419656S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1803" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,19 +184,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587542924970342777?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587497777514225004?api-version=2014-04-01-preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c" + "4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340" ], "x-ms-correlation-request-id": [ - "bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c" + "4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074633Z:bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c" + "WESTEUROPE:20160103T135218Z:4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:33 GMT" + "Sun, 03 Jan 2016 13:52:18 GMT" ] }, "StatusCode": 201 @@ -235,16 +235,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14855" ], "x-ms-request-id": [ - "00c47369-109b-4e7a-bddc-7f9dcfd33dbc" + "114d74d7-038f-4a8a-b707-a4fe856330ac" ], "x-ms-correlation-request-id": [ - "00c47369-109b-4e7a-bddc-7f9dcfd33dbc" + "114d74d7-038f-4a8a-b707-a4fe856330ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074635Z:00c47369-109b-4e7a-bddc-7f9dcfd33dbc" + "WESTEUROPE:20160103T135220Z:114d74d7-038f-4a8a-b707-a4fe856330ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:34 GMT" + "Sun, 03 Jan 2016 13:52:19 GMT" ] }, "StatusCode": 200 @@ -283,16 +283,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14853" ], "x-ms-request-id": [ - "ca1c81b8-6af4-4975-8642-c31027e2d646" + "2e361e64-167b-49a0-b787-7a3ad8218940" ], "x-ms-correlation-request-id": [ - "ca1c81b8-6af4-4975-8642-c31027e2d646" + "2e361e64-167b-49a0-b787-7a3ad8218940" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074639Z:ca1c81b8-6af4-4975-8642-c31027e2d646" + "WESTEUROPE:20160103T135223Z:2e361e64-167b-49a0-b787-7a3ad8218940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,7 +301,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:38 GMT" + "Sun, 03 Jan 2016 13:52:23 GMT" ] }, "StatusCode": 200 @@ -331,16 +331,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14851" ], "x-ms-request-id": [ - "21be7829-facd-4167-b6b3-1e4b8ab04855" + "5cf17729-dd1f-4695-b586-87c61586fc1c" ], "x-ms-correlation-request-id": [ - "21be7829-facd-4167-b6b3-1e4b8ab04855" + "5cf17729-dd1f-4695-b586-87c61586fc1c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074642Z:21be7829-facd-4167-b6b3-1e4b8ab04855" + "WESTEUROPE:20160103T135227Z:5cf17729-dd1f-4695-b586-87c61586fc1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +349,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:42 GMT" + "Sun, 03 Jan 2016 13:52:26 GMT" ] }, "StatusCode": 200 @@ -379,16 +379,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14849" ], "x-ms-request-id": [ - "e372f5d8-eabc-4da1-a47a-ad5fa5659fe8" + "6006a098-c7f3-4304-a07d-fae2e3bb16a0" ], "x-ms-correlation-request-id": [ - "e372f5d8-eabc-4da1-a47a-ad5fa5659fe8" + "6006a098-c7f3-4304-a07d-fae2e3bb16a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074646Z:e372f5d8-eabc-4da1-a47a-ad5fa5659fe8" + "WESTEUROPE:20160103T135230Z:6006a098-c7f3-4304-a07d-fae2e3bb16a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,7 +397,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:45 GMT" + "Sun, 03 Jan 2016 13:52:30 GMT" ] }, "StatusCode": 200 @@ -412,10 +412,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -427,16 +427,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14847" ], "x-ms-request-id": [ - "4c482b6c-1ff6-4edc-9333-0f9baa944e4e" + "f6a87dd6-ef96-4ed2-9e4d-c6e8ceb0c27e" ], "x-ms-correlation-request-id": [ - "4c482b6c-1ff6-4edc-9333-0f9baa944e4e" + "f6a87dd6-ef96-4ed2-9e4d-c6e8ceb0c27e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074650Z:4c482b6c-1ff6-4edc-9333-0f9baa944e4e" + "WESTEUROPE:20160103T135234Z:f6a87dd6-ef96-4ed2-9e4d-c6e8ceb0c27e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +445,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:49 GMT" + "Sun, 03 Jan 2016 13:52:33 GMT" ] }, "StatusCode": 200 @@ -460,10 +460,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,16 +475,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14846" + "14845" ], "x-ms-request-id": [ - "36a1b01d-e998-490d-93f4-7d3610449b4c" + "b5ab9a9e-cb36-48a4-9e83-5059be68ba7a" ], "x-ms-correlation-request-id": [ - "36a1b01d-e998-490d-93f4-7d3610449b4c" + "b5ab9a9e-cb36-48a4-9e83-5059be68ba7a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074653Z:36a1b01d-e998-490d-93f4-7d3610449b4c" + "WESTEUROPE:20160103T135238Z:b5ab9a9e-cb36-48a4-9e83-5059be68ba7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,7 +493,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:53 GMT" + "Sun, 03 Jan 2016 13:52:37 GMT" ] }, "StatusCode": 200 @@ -508,7 +508,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -523,16 +523,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14843" ], "x-ms-request-id": [ - "132ca980-bed5-42c4-b7b0-fd97fe3f6b2f" + "c7a91924-128c-410b-9a8d-eff72bae4738" ], "x-ms-correlation-request-id": [ - "132ca980-bed5-42c4-b7b0-fd97fe3f6b2f" + "c7a91924-128c-410b-9a8d-eff72bae4738" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074657Z:132ca980-bed5-42c4-b7b0-fd97fe3f6b2f" + "WESTEUROPE:20160103T135241Z:c7a91924-128c-410b-9a8d-eff72bae4738" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,7 +541,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:57 GMT" + "Sun, 03 Jan 2016 13:52:41 GMT" ] }, "StatusCode": 200 @@ -556,7 +556,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -571,16 +571,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14841" ], "x-ms-request-id": [ - "d3104ed4-44d4-4c39-9928-730279330407" + "75efa43f-ae3c-4b60-b53b-7ecf5336ca1c" ], "x-ms-correlation-request-id": [ - "d3104ed4-44d4-4c39-9928-730279330407" + "75efa43f-ae3c-4b60-b53b-7ecf5336ca1c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074701Z:d3104ed4-44d4-4c39-9928-730279330407" + "WESTEUROPE:20160103T135245Z:75efa43f-ae3c-4b60-b53b-7ecf5336ca1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +589,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:00 GMT" + "Sun, 03 Jan 2016 13:52:45 GMT" ] }, "StatusCode": 200 @@ -604,7 +604,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -619,16 +619,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14839" ], "x-ms-request-id": [ - "2f84fc73-514d-4f63-a0b2-ca4270d0bd44" + "2175ed20-6a2b-4e08-bb20-8930863a6d6b" ], "x-ms-correlation-request-id": [ - "2f84fc73-514d-4f63-a0b2-ca4270d0bd44" + "2175ed20-6a2b-4e08-bb20-8930863a6d6b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074704Z:2f84fc73-514d-4f63-a0b2-ca4270d0bd44" + "WESTEUROPE:20160103T135249Z:2175ed20-6a2b-4e08-bb20-8930863a6d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -637,7 +637,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:04 GMT" + "Sun, 03 Jan 2016 13:52:48 GMT" ] }, "StatusCode": 200 @@ -652,7 +652,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -667,16 +667,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14837" ], "x-ms-request-id": [ - "b9b91df3-7d06-4cf7-b02a-d1963da097b3" + "5bc42d12-8624-4136-becb-751f9aef57a2" ], "x-ms-correlation-request-id": [ - "b9b91df3-7d06-4cf7-b02a-d1963da097b3" + "5bc42d12-8624-4136-becb-751f9aef57a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074708Z:b9b91df3-7d06-4cf7-b02a-d1963da097b3" + "WESTEUROPE:20160103T135252Z:5bc42d12-8624-4136-becb-751f9aef57a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,7 +685,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:07 GMT" + "Sun, 03 Jan 2016 13:52:51 GMT" ] }, "StatusCode": 200 @@ -700,7 +700,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -715,16 +715,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14835" ], "x-ms-request-id": [ - "1664392c-354e-4605-8fa9-7557a4b7dcc3" + "28f42c79-2acb-4691-9db3-350b1e9648dc" ], "x-ms-correlation-request-id": [ - "1664392c-354e-4605-8fa9-7557a4b7dcc3" + "28f42c79-2acb-4691-9db3-350b1e9648dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074711Z:1664392c-354e-4605-8fa9-7557a4b7dcc3" + "WESTEUROPE:20160103T135256Z:28f42c79-2acb-4691-9db3-350b1e9648dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +733,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:11 GMT" + "Sun, 03 Jan 2016 13:52:56 GMT" ] }, "StatusCode": 200 @@ -748,7 +748,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -763,16 +763,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14833" ], "x-ms-request-id": [ - "d4a8db7f-2714-4e7d-9b92-0696426c517c" + "4a8d73f2-9bb2-4869-ad21-4c4b0e5339dc" ], "x-ms-correlation-request-id": [ - "d4a8db7f-2714-4e7d-9b92-0696426c517c" + "4a8d73f2-9bb2-4869-ad21-4c4b0e5339dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074715Z:d4a8db7f-2714-4e7d-9b92-0696426c517c" + "WESTEUROPE:20160103T135259Z:4a8d73f2-9bb2-4869-ad21-4c4b0e5339dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +781,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:14 GMT" + "Sun, 03 Jan 2016 13:52:59 GMT" ] }, "StatusCode": 200 @@ -796,10 +796,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:17.2984152Z\",\r\n \"duration\": \"PT43.8974106S\",\r\n \"trackingId\": \"45d27a97-def5-42e0-a3dc-613cd39375eb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "658" ], "Content-Type": [ "application/json; charset=utf-8" @@ -811,16 +811,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14831" ], "x-ms-request-id": [ - "2f2b0707-b068-4c2e-af97-9ec78e43c1f5" + "4ef57ac9-c355-4d28-a4cd-a021b964badc" ], "x-ms-correlation-request-id": [ - "2f2b0707-b068-4c2e-af97-9ec78e43c1f5" + "4ef57ac9-c355-4d28-a4cd-a021b964badc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074719Z:2f2b0707-b068-4c2e-af97-9ec78e43c1f5" + "WESTEUROPE:20160103T135303Z:4ef57ac9-c355-4d28-a4cd-a021b964badc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,7 +829,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:18 GMT" + "Sun, 03 Jan 2016 13:53:03 GMT" ] }, "StatusCode": 200 @@ -844,10 +844,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:17.2984152Z\",\r\n \"duration\": \"PT43.8974106S\",\r\n \"trackingId\": \"45d27a97-def5-42e0-a3dc-613cd39375eb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "658" ], "Content-Type": [ "application/json; charset=utf-8" @@ -859,16 +859,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14829" ], "x-ms-request-id": [ - "e83f9ea3-28ed-4d1c-9284-9a77f2e28699" + "cc35bd72-6b60-4506-8bcf-a637ea17533d" ], "x-ms-correlation-request-id": [ - "e83f9ea3-28ed-4d1c-9284-9a77f2e28699" + "cc35bd72-6b60-4506-8bcf-a637ea17533d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074722Z:e83f9ea3-28ed-4d1c-9284-9a77f2e28699" + "WESTEUROPE:20160103T135307Z:cc35bd72-6b60-4506-8bcf-a637ea17533d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,7 +877,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:22 GMT" + "Sun, 03 Jan 2016 13:53:06 GMT" ] }, "StatusCode": 200 @@ -892,10 +892,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:10.2479857Z\",\r\n \"duration\": \"PT50.3613657S\",\r\n \"trackingId\": \"9ad97ad7-8c0d-49c2-8436-2038ff5dbeb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "652" ], "Content-Type": [ "application/json; charset=utf-8" @@ -907,16 +907,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14827" ], "x-ms-request-id": [ - "49fcc197-a9f1-4d2f-bb12-d3f9a5e02cad" + "39072418-3ba1-4a5f-bbb2-3c43e21c080f" ], "x-ms-correlation-request-id": [ - "49fcc197-a9f1-4d2f-bb12-d3f9a5e02cad" + "39072418-3ba1-4a5f-bbb2-3c43e21c080f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074726Z:49fcc197-a9f1-4d2f-bb12-d3f9a5e02cad" + "WESTEUROPE:20160103T135310Z:39072418-3ba1-4a5f-bbb2-3c43e21c080f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,7 +925,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:26 GMT" + "Sun, 03 Jan 2016 13:53:10 GMT" ] }, "StatusCode": 200 @@ -940,10 +940,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:10.2479857Z\",\r\n \"duration\": \"PT50.3613657S\",\r\n \"trackingId\": \"9ad97ad7-8c0d-49c2-8436-2038ff5dbeb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "652" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,16 +955,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14825" ], "x-ms-request-id": [ - "c20816ea-b4cb-4ed0-a2c8-e00d411b480f" + "ce61e5fc-0389-4261-aaac-8625e191412f" ], "x-ms-correlation-request-id": [ - "c20816ea-b4cb-4ed0-a2c8-e00d411b480f" + "ce61e5fc-0389-4261-aaac-8625e191412f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074730Z:c20816ea-b4cb-4ed0-a2c8-e00d411b480f" + "WESTEUROPE:20160103T135314Z:ce61e5fc-0389-4261-aaac-8625e191412f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -973,7 +973,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:30 GMT" + "Sun, 03 Jan 2016 13:53:13 GMT" ] }, "StatusCode": 200 @@ -988,10 +988,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:10.2479857Z\",\r\n \"duration\": \"PT50.3613657S\",\r\n \"trackingId\": \"9ad97ad7-8c0d-49c2-8436-2038ff5dbeb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "1298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1003,16 +1003,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14823" ], "x-ms-request-id": [ - "08e84cf1-d1bb-4bb8-95c7-99a06cd3e452" + "a1492be2-3bba-4617-8558-35e8c2d4e684" ], "x-ms-correlation-request-id": [ - "08e84cf1-d1bb-4bb8-95c7-99a06cd3e452" + "a1492be2-3bba-4617-8558-35e8c2d4e684" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074734Z:08e84cf1-d1bb-4bb8-95c7-99a06cd3e452" + "WESTEUROPE:20160103T135318Z:a1492be2-3bba-4617-8558-35e8c2d4e684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,7 +1021,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:33 GMT" + "Sun, 03 Jan 2016 13:53:17 GMT" ] }, "StatusCode": 200 @@ -1036,10 +1036,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:17.8020567Z\",\r\n \"duration\": \"PT57.9154367S\",\r\n \"trackingId\": \"ba24d084-50af-4db9-b7a4-ffc1306415b3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "1298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1051,16 +1051,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14821" ], "x-ms-request-id": [ - "722a4a70-78d7-4551-9216-60df90350257" + "34f7bb79-48a1-4f9a-982e-668e4e08bfd5" ], "x-ms-correlation-request-id": [ - "722a4a70-78d7-4551-9216-60df90350257" + "34f7bb79-48a1-4f9a-982e-668e4e08bfd5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074737Z:722a4a70-78d7-4551-9216-60df90350257" + "WESTEUROPE:20160103T135322Z:34f7bb79-48a1-4f9a-982e-668e4e08bfd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,7 +1069,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:37 GMT" + "Sun, 03 Jan 2016 13:53:21 GMT" ] }, "StatusCode": 200 @@ -1084,10 +1084,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:24.6200051Z\",\r\n \"duration\": \"PT1M4.7333851S\",\r\n \"trackingId\": \"cebca21c-7044-4234-ae80-55e9394221cb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "1299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,16 +1099,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14819" ], "x-ms-request-id": [ - "9e71702d-ae96-471b-8554-c03ffe6b1d0a" + "0791ce4d-4548-4b65-ae18-461efb226485" ], "x-ms-correlation-request-id": [ - "9e71702d-ae96-471b-8554-c03ffe6b1d0a" + "0791ce4d-4548-4b65-ae18-461efb226485" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074741Z:9e71702d-ae96-471b-8554-c03ffe6b1d0a" + "WESTEUROPE:20160103T135326Z:0791ce4d-4548-4b65-ae18-461efb226485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1117,7 +1117,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:41 GMT" + "Sun, 03 Jan 2016 13:53:26 GMT" ] }, "StatusCode": 200 @@ -1132,10 +1132,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:24.6200051Z\",\r\n \"duration\": \"PT1M4.7333851S\",\r\n \"trackingId\": \"cebca21c-7044-4234-ae80-55e9394221cb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "1299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1147,16 +1147,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14816" ], "x-ms-request-id": [ - "512de6db-b8bf-4617-92b8-d71f3e817b5e" + "e93515bc-b595-4ae8-8da1-da8181832e6f" ], "x-ms-correlation-request-id": [ - "512de6db-b8bf-4617-92b8-d71f3e817b5e" + "e93515bc-b595-4ae8-8da1-da8181832e6f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074745Z:512de6db-b8bf-4617-92b8-d71f3e817b5e" + "WESTEUROPE:20160103T135329Z:e93515bc-b595-4ae8-8da1-da8181832e6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1165,7 +1165,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:45 GMT" + "Sun, 03 Jan 2016 13:53:29 GMT" ] }, "StatusCode": 200 @@ -1180,10 +1180,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:32.0861318Z\",\r\n \"duration\": \"PT1M12.1995118S\",\r\n \"trackingId\": \"a74cfa25-58d8-4f96-ae46-81134f1b1454\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1195,16 +1195,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14814" ], "x-ms-request-id": [ - "156995db-8977-42fe-9af6-db19e4efd20e" + "8cbb3d76-45fb-4636-b499-511753ea6520" ], "x-ms-correlation-request-id": [ - "156995db-8977-42fe-9af6-db19e4efd20e" + "8cbb3d76-45fb-4636-b499-511753ea6520" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074749Z:156995db-8977-42fe-9af6-db19e4efd20e" + "WESTEUROPE:20160103T135333Z:8cbb3d76-45fb-4636-b499-511753ea6520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1213,7 +1213,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:48 GMT" + "Sun, 03 Jan 2016 13:53:33 GMT" ] }, "StatusCode": 200 @@ -1228,10 +1228,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:32.0861318Z\",\r\n \"duration\": \"PT1M12.1995118S\",\r\n \"trackingId\": \"a74cfa25-58d8-4f96-ae46-81134f1b1454\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1243,16 +1243,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14812" ], "x-ms-request-id": [ - "96e9707b-c753-4ce3-90b3-59a16f02efb4" + "89c6aec2-1056-4b4c-8226-210d89c748b2" ], "x-ms-correlation-request-id": [ - "96e9707b-c753-4ce3-90b3-59a16f02efb4" + "89c6aec2-1056-4b4c-8226-210d89c748b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074753Z:96e9707b-c753-4ce3-90b3-59a16f02efb4" + "WESTEUROPE:20160103T135337Z:89c6aec2-1056-4b4c-8226-210d89c748b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,7 +1261,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:52 GMT" + "Sun, 03 Jan 2016 13:53:37 GMT" ] }, "StatusCode": 200 @@ -1276,10 +1276,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1291,16 +1291,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14810" ], "x-ms-request-id": [ - "e1ea9e62-1544-4587-9c4f-1102bcd3cd2a" + "e9484f9c-f1f3-4e30-98dc-b2ab7304675d" ], "x-ms-correlation-request-id": [ - "e1ea9e62-1544-4587-9c4f-1102bcd3cd2a" + "e9484f9c-f1f3-4e30-98dc-b2ab7304675d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074757Z:e1ea9e62-1544-4587-9c4f-1102bcd3cd2a" + "WESTEUROPE:20160103T135341Z:e9484f9c-f1f3-4e30-98dc-b2ab7304675d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1309,7 +1309,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:56 GMT" + "Sun, 03 Jan 2016 13:53:41 GMT" ] }, "StatusCode": 200 @@ -1324,10 +1324,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1339,16 +1339,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14808" ], "x-ms-request-id": [ - "4b6f16b7-9a1c-4cdc-b819-d6931d3ab898" + "d54d027c-d7dc-4201-84e3-f37dddb559d8" ], "x-ms-correlation-request-id": [ - "4b6f16b7-9a1c-4cdc-b819-d6931d3ab898" + "d54d027c-d7dc-4201-84e3-f37dddb559d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074801Z:4b6f16b7-9a1c-4cdc-b819-d6931d3ab898" + "WESTEUROPE:20160103T135345Z:d54d027c-d7dc-4201-84e3-f37dddb559d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,7 +1357,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:00 GMT" + "Sun, 03 Jan 2016 13:53:44 GMT" ] }, "StatusCode": 200 @@ -1372,10 +1372,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1387,16 +1387,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "14806" ], "x-ms-request-id": [ - "ab0b903d-2f08-4a32-a947-913a7b0c69c2" + "27c6b85b-8154-4dc8-aec7-2271ea919d0a" ], "x-ms-correlation-request-id": [ - "ab0b903d-2f08-4a32-a947-913a7b0c69c2" + "27c6b85b-8154-4dc8-aec7-2271ea919d0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074805Z:ab0b903d-2f08-4a32-a947-913a7b0c69c2" + "WESTEUROPE:20160103T135349Z:27c6b85b-8154-4dc8-aec7-2271ea919d0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1405,7 +1405,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:05 GMT" + "Sun, 03 Jan 2016 13:53:48 GMT" ] }, "StatusCode": 200 @@ -1420,10 +1420,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1435,16 +1435,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14804" ], "x-ms-request-id": [ - "fb4e412c-3c0c-439c-bb2d-649ce78a6d61" + "e66382fe-eb96-428c-b694-4f88e10b3c89" ], "x-ms-correlation-request-id": [ - "fb4e412c-3c0c-439c-bb2d-649ce78a6d61" + "e66382fe-eb96-428c-b694-4f88e10b3c89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074809Z:fb4e412c-3c0c-439c-bb2d-649ce78a6d61" + "WESTEUROPE:20160103T135353Z:e66382fe-eb96-428c-b694-4f88e10b3c89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1453,7 +1453,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:08 GMT" + "Sun, 03 Jan 2016 13:53:52 GMT" ] }, "StatusCode": 200 @@ -1468,10 +1468,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1483,16 +1483,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14796" + "14802" ], "x-ms-request-id": [ - "6e6041ae-77b5-4543-aa9c-c60a0c92a8d6" + "b898e9a0-fd4c-4d40-9efe-5f0c9741f347" ], "x-ms-correlation-request-id": [ - "6e6041ae-77b5-4543-aa9c-c60a0c92a8d6" + "b898e9a0-fd4c-4d40-9efe-5f0c9741f347" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074813Z:6e6041ae-77b5-4543-aa9c-c60a0c92a8d6" + "WESTEUROPE:20160103T135357Z:b898e9a0-fd4c-4d40-9efe-5f0c9741f347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1501,7 +1501,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:12 GMT" + "Sun, 03 Jan 2016 13:53:57 GMT" ] }, "StatusCode": 200 @@ -1516,10 +1516,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1531,16 +1531,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14792" + "14800" ], "x-ms-request-id": [ - "5cf70568-b0b1-4d54-b3ca-f2c8b080b046" + "6e12ba6d-6e03-4e20-9d60-ff58446cd3ec" ], "x-ms-correlation-request-id": [ - "5cf70568-b0b1-4d54-b3ca-f2c8b080b046" + "6e12ba6d-6e03-4e20-9d60-ff58446cd3ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074817Z:5cf70568-b0b1-4d54-b3ca-f2c8b080b046" + "WESTEUROPE:20160103T135401Z:6e12ba6d-6e03-4e20-9d60-ff58446cd3ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1549,7 +1549,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:16 GMT" + "Sun, 03 Jan 2016 13:54:00 GMT" ] }, "StatusCode": 200 @@ -1564,10 +1564,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1579,16 +1579,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14798" ], "x-ms-request-id": [ - "ee34c722-356e-4fe5-8f4d-a9964ea4781d" + "2868cff2-441c-40f5-903e-f9bca6b25a86" ], "x-ms-correlation-request-id": [ - "ee34c722-356e-4fe5-8f4d-a9964ea4781d" + "2868cff2-441c-40f5-903e-f9bca6b25a86" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074821Z:ee34c722-356e-4fe5-8f4d-a9964ea4781d" + "WESTEUROPE:20160103T135404Z:2868cff2-441c-40f5-903e-f9bca6b25a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1597,7 +1597,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:21 GMT" + "Sun, 03 Jan 2016 13:54:04 GMT" ] }, "StatusCode": 200 @@ -1612,10 +1612,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1627,16 +1627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14796" ], "x-ms-request-id": [ - "b1f42848-3f47-4960-9bd8-5e44755e91f9" + "aabed0b3-ae08-438c-bd01-4ff72c7de9e5" ], "x-ms-correlation-request-id": [ - "b1f42848-3f47-4960-9bd8-5e44755e91f9" + "aabed0b3-ae08-438c-bd01-4ff72c7de9e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074825Z:b1f42848-3f47-4960-9bd8-5e44755e91f9" + "WESTEUROPE:20160103T135408Z:aabed0b3-ae08-438c-bd01-4ff72c7de9e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1645,7 +1645,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:24 GMT" + "Sun, 03 Jan 2016 13:54:08 GMT" ] }, "StatusCode": 200 @@ -1660,10 +1660,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1675,16 +1675,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14794" ], "x-ms-request-id": [ - "8e855f92-bc32-4d7b-bf73-fb7655399d66" + "d8391dec-92a2-4208-9b00-748ba2d9bfbd" ], "x-ms-correlation-request-id": [ - "8e855f92-bc32-4d7b-bf73-fb7655399d66" + "d8391dec-92a2-4208-9b00-748ba2d9bfbd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074829Z:8e855f92-bc32-4d7b-bf73-fb7655399d66" + "WESTEUROPE:20160103T135412Z:d8391dec-92a2-4208-9b00-748ba2d9bfbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1693,7 +1693,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:28 GMT" + "Sun, 03 Jan 2016 13:54:11 GMT" ] }, "StatusCode": 200 @@ -1708,10 +1708,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1723,16 +1723,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14792" ], "x-ms-request-id": [ - "0d24b849-4a0a-4ff7-94dc-ca01ea991fc5" + "6c0b73f7-6337-494c-9949-b13d962a0c7d" ], "x-ms-correlation-request-id": [ - "0d24b849-4a0a-4ff7-94dc-ca01ea991fc5" + "6c0b73f7-6337-494c-9949-b13d962a0c7d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074832Z:0d24b849-4a0a-4ff7-94dc-ca01ea991fc5" + "WESTEUROPE:20160103T135416Z:6c0b73f7-6337-494c-9949-b13d962a0c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,7 +1741,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:32 GMT" + "Sun, 03 Jan 2016 13:54:16 GMT" ] }, "StatusCode": 200 @@ -1756,10 +1756,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1771,16 +1771,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14790" ], "x-ms-request-id": [ - "01cfbbb1-13e5-4fb3-9f9e-72e8a79acb94" + "a8be146f-cbc1-4c98-99ad-88172e9c0a1d" ], "x-ms-correlation-request-id": [ - "01cfbbb1-13e5-4fb3-9f9e-72e8a79acb94" + "a8be146f-cbc1-4c98-99ad-88172e9c0a1d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074836Z:01cfbbb1-13e5-4fb3-9f9e-72e8a79acb94" + "WESTEUROPE:20160103T135420Z:a8be146f-cbc1-4c98-99ad-88172e9c0a1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1789,7 +1789,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:36 GMT" + "Sun, 03 Jan 2016 13:54:20 GMT" ] }, "StatusCode": 200 @@ -1804,10 +1804,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,16 +1819,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14788" ], "x-ms-request-id": [ - "a597ea10-1560-44b9-a9bf-9ba39d92bb6d" + "dce76857-9819-4845-8e9a-b90cc4409b1a" ], "x-ms-correlation-request-id": [ - "a597ea10-1560-44b9-a9bf-9ba39d92bb6d" + "dce76857-9819-4845-8e9a-b90cc4409b1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074840Z:a597ea10-1560-44b9-a9bf-9ba39d92bb6d" + "WESTEUROPE:20160103T135424Z:dce76857-9819-4845-8e9a-b90cc4409b1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1837,7 +1837,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:40 GMT" + "Sun, 03 Jan 2016 13:54:24 GMT" ] }, "StatusCode": 200 @@ -1852,10 +1852,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:25.2092111Z\",\r\n \"duration\": \"PT1M8.3378818S\",\r\n \"trackingId\": \"1380aa9e-9b48-494a-a0bc-7e3222c8c763\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1867,16 +1867,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14786" ], "x-ms-request-id": [ - "d491c396-7b1d-4853-8a28-cb7048fe2279" + "d9ecbe56-f58a-4409-947c-2fa424229b4c" ], "x-ms-correlation-request-id": [ - "d491c396-7b1d-4853-8a28-cb7048fe2279" + "d9ecbe56-f58a-4409-947c-2fa424229b4c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074844Z:d491c396-7b1d-4853-8a28-cb7048fe2279" + "WESTEUROPE:20160103T135428Z:d9ecbe56-f58a-4409-947c-2fa424229b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,7 +1885,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:43 GMT" + "Sun, 03 Jan 2016 13:54:27 GMT" ] }, "StatusCode": 200 @@ -1900,10 +1900,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:25.2092111Z\",\r\n \"duration\": \"PT1M8.3378818S\",\r\n \"trackingId\": \"1380aa9e-9b48-494a-a0bc-7e3222c8c763\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1915,16 +1915,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14784" ], "x-ms-request-id": [ - "57503eda-6bc3-42fb-8385-8d702ce77638" + "84f84fa9-9ef0-43c4-83dd-7f24cd2f8d88" ], "x-ms-correlation-request-id": [ - "57503eda-6bc3-42fb-8385-8d702ce77638" + "84f84fa9-9ef0-43c4-83dd-7f24cd2f8d88" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074848Z:57503eda-6bc3-42fb-8385-8d702ce77638" + "WESTEUROPE:20160103T135432Z:84f84fa9-9ef0-43c4-83dd-7f24cd2f8d88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,7 +1933,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:48 GMT" + "Sun, 03 Jan 2016 13:54:32 GMT" ] }, "StatusCode": 200 @@ -1948,10 +1948,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:25.2092111Z\",\r\n \"duration\": \"PT1M8.3378818S\",\r\n \"trackingId\": \"1380aa9e-9b48-494a-a0bc-7e3222c8c763\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1963,16 +1963,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" + "14782" ], "x-ms-request-id": [ - "6d066835-b9d0-4bf0-b71e-e8fde0c1f8bc" + "33304f70-939f-46bc-b2a3-2817be194f64" ], "x-ms-correlation-request-id": [ - "6d066835-b9d0-4bf0-b71e-e8fde0c1f8bc" + "33304f70-939f-46bc-b2a3-2817be194f64" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074852Z:6d066835-b9d0-4bf0-b71e-e8fde0c1f8bc" + "WESTEUROPE:20160103T135436Z:33304f70-939f-46bc-b2a3-2817be194f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1981,7 +1981,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:52 GMT" + "Sun, 03 Jan 2016 13:54:36 GMT" ] }, "StatusCode": 200 @@ -1996,10 +1996,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:36.7158407Z\",\r\n \"duration\": \"PT1M19.8445114S\",\r\n \"trackingId\": \"48cc0768-3bef-4728-a4b2-4f3bb11d0c92\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2011,16 +2011,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14780" ], "x-ms-request-id": [ - "d07d4557-fa81-44ad-8814-a6d9a5a9ae2d" + "87bc1e7c-96b1-4d34-80b2-253351b1ced7" ], "x-ms-correlation-request-id": [ - "d07d4557-fa81-44ad-8814-a6d9a5a9ae2d" + "87bc1e7c-96b1-4d34-80b2-253351b1ced7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074856Z:d07d4557-fa81-44ad-8814-a6d9a5a9ae2d" + "WESTEUROPE:20160103T135440Z:87bc1e7c-96b1-4d34-80b2-253351b1ced7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2029,7 +2029,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:55 GMT" + "Sun, 03 Jan 2016 13:54:39 GMT" ] }, "StatusCode": 200 @@ -2044,10 +2044,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:36.7158407Z\",\r\n \"duration\": \"PT1M19.8445114S\",\r\n \"trackingId\": \"48cc0768-3bef-4728-a4b2-4f3bb11d0c92\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2059,16 +2059,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14778" ], "x-ms-request-id": [ - "6b06c786-558a-4d98-9639-27f3f6ec09f0" + "b31fe85c-42da-436e-b33e-3abf67741240" ], "x-ms-correlation-request-id": [ - "6b06c786-558a-4d98-9639-27f3f6ec09f0" + "b31fe85c-42da-436e-b33e-3abf67741240" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074900Z:6b06c786-558a-4d98-9639-27f3f6ec09f0" + "WESTEUROPE:20160103T135443Z:b31fe85c-42da-436e-b33e-3abf67741240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,7 +2077,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:00 GMT" + "Sun, 03 Jan 2016 13:54:43 GMT" ] }, "StatusCode": 200 @@ -2092,10 +2092,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:44.0872504Z\",\r\n \"duration\": \"PT1M27.2159211S\",\r\n \"trackingId\": \"a9dfc8f0-3b1f-485e-bb6d-0009aef6901a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1295" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2107,16 +2107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14776" ], "x-ms-request-id": [ - "c9d5542f-41f9-4551-8252-545c3bcbf3c6" + "2899b06a-1e05-4ea0-9cb9-25fb7cf0ebae" ], "x-ms-correlation-request-id": [ - "c9d5542f-41f9-4551-8252-545c3bcbf3c6" + "2899b06a-1e05-4ea0-9cb9-25fb7cf0ebae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074904Z:c9d5542f-41f9-4551-8252-545c3bcbf3c6" + "WESTEUROPE:20160103T135447Z:2899b06a-1e05-4ea0-9cb9-25fb7cf0ebae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2125,7 +2125,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:04 GMT" + "Sun, 03 Jan 2016 13:54:46 GMT" ] }, "StatusCode": 200 @@ -2140,10 +2140,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:44.0872504Z\",\r\n \"duration\": \"PT1M27.2159211S\",\r\n \"trackingId\": \"a9dfc8f0-3b1f-485e-bb6d-0009aef6901a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1295" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,16 +2155,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14774" ], "x-ms-request-id": [ - "b8938a22-07fd-4a3a-bd7d-7f42c381dfdd" + "ec6711ac-d016-4a50-a4f6-6ae3458aa061" ], "x-ms-correlation-request-id": [ - "b8938a22-07fd-4a3a-bd7d-7f42c381dfdd" + "ec6711ac-d016-4a50-a4f6-6ae3458aa061" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074908Z:b8938a22-07fd-4a3a-bd7d-7f42c381dfdd" + "WESTEUROPE:20160103T135451Z:ec6711ac-d016-4a50-a4f6-6ae3458aa061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2173,7 +2173,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:08 GMT" + "Sun, 03 Jan 2016 13:54:50 GMT" ] }, "StatusCode": 200 @@ -2188,10 +2188,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:54:52.6588436Z\",\r\n \"duration\": \"PT1M35.7875143S\",\r\n \"trackingId\": \"d9192c41-b3f0-4ef1-9a2e-bf2dbf8bb431\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1295" + "2012" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2203,16 +2203,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14772" ], "x-ms-request-id": [ - "8effe830-4a80-45c9-8004-3e9aba5cd624" + "da152324-6b2d-4c16-ad9f-9825dddafe6e" ], "x-ms-correlation-request-id": [ - "8effe830-4a80-45c9-8004-3e9aba5cd624" + "da152324-6b2d-4c16-ad9f-9825dddafe6e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074912Z:8effe830-4a80-45c9-8004-3e9aba5cd624" + "WESTEUROPE:20160103T135455Z:da152324-6b2d-4c16-ad9f-9825dddafe6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2221,14 +2221,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:11 GMT" + "Sun, 03 Jan 2016 13:54:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,10 +2236,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2251,16 +2251,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "14854" ], "x-ms-request-id": [ - "6e461018-f07a-4dda-bded-9d984437b6e5" + "2f8dc390-b3c3-4b6b-95a6-94cf94963b36" ], "x-ms-correlation-request-id": [ - "6e461018-f07a-4dda-bded-9d984437b6e5" + "2f8dc390-b3c3-4b6b-95a6-94cf94963b36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074916Z:6e461018-f07a-4dda-bded-9d984437b6e5" + "WESTEUROPE:20160103T135220Z:2f8dc390-b3c3-4b6b-95a6-94cf94963b36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,14 +2269,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:15 GMT" + "Sun, 03 Jan 2016 13:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2284,10 +2284,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2299,16 +2299,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "14852" ], "x-ms-request-id": [ - "45744ac1-405b-446b-884e-a3deac908795" + "8a87404f-c558-4bf8-81ef-2234a53626c6" ], "x-ms-correlation-request-id": [ - "45744ac1-405b-446b-884e-a3deac908795" + "8a87404f-c558-4bf8-81ef-2234a53626c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074920Z:45744ac1-405b-446b-884e-a3deac908795" + "WESTEUROPE:20160103T135224Z:8a87404f-c558-4bf8-81ef-2234a53626c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2317,14 +2317,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:19 GMT" + "Sun, 03 Jan 2016 13:52:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2332,10 +2332,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2347,16 +2347,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14850" ], "x-ms-request-id": [ - "1d983f7d-b302-4174-b521-deaeac6c2e9f" + "02c14c84-de7a-4085-822b-458bf91c8752" ], "x-ms-correlation-request-id": [ - "1d983f7d-b302-4174-b521-deaeac6c2e9f" + "02c14c84-de7a-4085-822b-458bf91c8752" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074924Z:1d983f7d-b302-4174-b521-deaeac6c2e9f" + "WESTEUROPE:20160103T135227Z:02c14c84-de7a-4085-822b-458bf91c8752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,14 +2365,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:24 GMT" + "Sun, 03 Jan 2016 13:52:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2380,10 +2380,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2395,16 +2395,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "14848" ], "x-ms-request-id": [ - "8288f518-2fb4-4ae8-a11f-36a7f3da19ce" + "7c9303ca-caf7-4142-bcd9-8a8abdfc16ed" ], "x-ms-correlation-request-id": [ - "8288f518-2fb4-4ae8-a11f-36a7f3da19ce" + "7c9303ca-caf7-4142-bcd9-8a8abdfc16ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074928Z:8288f518-2fb4-4ae8-a11f-36a7f3da19ce" + "WESTEUROPE:20160103T135231Z:7c9303ca-caf7-4142-bcd9-8a8abdfc16ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2413,14 +2413,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:27 GMT" + "Sun, 03 Jan 2016 13:52:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2428,10 +2428,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2443,16 +2443,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14846" ], "x-ms-request-id": [ - "d0e204c3-5ee3-466c-a9d8-36a0a95ad1d3" + "5c1ede7b-b4b6-4102-a16d-c747bf9e899e" ], "x-ms-correlation-request-id": [ - "d0e204c3-5ee3-466c-a9d8-36a0a95ad1d3" + "5c1ede7b-b4b6-4102-a16d-c747bf9e899e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074932Z:d0e204c3-5ee3-466c-a9d8-36a0a95ad1d3" + "WESTEUROPE:20160103T135235Z:5c1ede7b-b4b6-4102-a16d-c747bf9e899e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2461,14 +2461,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:31 GMT" + "Sun, 03 Jan 2016 13:52:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2476,10 +2476,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2491,16 +2491,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14844" ], "x-ms-request-id": [ - "70b4a424-2caf-4a1c-8b03-1baf0a0d3174" + "76c5deb0-8b80-4622-9a0d-53927289e316" ], "x-ms-correlation-request-id": [ - "70b4a424-2caf-4a1c-8b03-1baf0a0d3174" + "76c5deb0-8b80-4622-9a0d-53927289e316" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074936Z:70b4a424-2caf-4a1c-8b03-1baf0a0d3174" + "WESTEUROPE:20160103T135238Z:76c5deb0-8b80-4622-9a0d-53927289e316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2509,14 +2509,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:35 GMT" + "Sun, 03 Jan 2016 13:52:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,10 +2524,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2539,16 +2539,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14842" ], "x-ms-request-id": [ - "f87acbd7-ceef-45e7-bd94-5f086ad2f9ca" + "c5a8fb60-17b2-450c-8df0-3c43e5a710c1" ], "x-ms-correlation-request-id": [ - "f87acbd7-ceef-45e7-bd94-5f086ad2f9ca" + "c5a8fb60-17b2-450c-8df0-3c43e5a710c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074940Z:f87acbd7-ceef-45e7-bd94-5f086ad2f9ca" + "WESTEUROPE:20160103T135242Z:c5a8fb60-17b2-450c-8df0-3c43e5a710c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2557,14 +2557,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:39 GMT" + "Sun, 03 Jan 2016 13:52:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2572,10 +2572,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2587,16 +2587,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14840" ], "x-ms-request-id": [ - "3bd96a80-3d71-41a2-8dd5-ad5baae298a4" + "2ee44402-1bd9-464f-add8-16feb2ac3b56" ], "x-ms-correlation-request-id": [ - "3bd96a80-3d71-41a2-8dd5-ad5baae298a4" + "2ee44402-1bd9-464f-add8-16feb2ac3b56" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074943Z:3bd96a80-3d71-41a2-8dd5-ad5baae298a4" + "WESTEUROPE:20160103T135246Z:2ee44402-1bd9-464f-add8-16feb2ac3b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2605,14 +2605,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:43 GMT" + "Sun, 03 Jan 2016 13:52:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2620,10 +2620,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2635,16 +2635,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14838" ], "x-ms-request-id": [ - "bb17ff6e-131c-4be0-b4da-a786b4a37c18" + "354f02fd-fe9c-4abb-a68e-eb81dfcab107" ], "x-ms-correlation-request-id": [ - "bb17ff6e-131c-4be0-b4da-a786b4a37c18" + "354f02fd-fe9c-4abb-a68e-eb81dfcab107" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074947Z:bb17ff6e-131c-4be0-b4da-a786b4a37c18" + "WESTEUROPE:20160103T135249Z:354f02fd-fe9c-4abb-a68e-eb81dfcab107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2653,14 +2653,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:47 GMT" + "Sun, 03 Jan 2016 13:52:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,10 +2668,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2683,16 +2683,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14836" ], "x-ms-request-id": [ - "00bc7339-c85b-4039-a757-d610666e2113" + "6174f986-5458-4ccf-aa39-289bc9b74c73" ], "x-ms-correlation-request-id": [ - "00bc7339-c85b-4039-a757-d610666e2113" + "6174f986-5458-4ccf-aa39-289bc9b74c73" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074951Z:00bc7339-c85b-4039-a757-d610666e2113" + "WESTEUROPE:20160103T135253Z:6174f986-5458-4ccf-aa39-289bc9b74c73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2701,14 +2701,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:51 GMT" + "Sun, 03 Jan 2016 13:52:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2716,10 +2716,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2731,16 +2731,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14834" ], "x-ms-request-id": [ - "dda902c7-adf2-44e1-87fe-20827ca6212a" + "26cd880c-76c2-4784-9f8a-bafe4ec61504" ], "x-ms-correlation-request-id": [ - "dda902c7-adf2-44e1-87fe-20827ca6212a" + "26cd880c-76c2-4784-9f8a-bafe4ec61504" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074955Z:dda902c7-adf2-44e1-87fe-20827ca6212a" + "WESTEUROPE:20160103T135256Z:26cd880c-76c2-4784-9f8a-bafe4ec61504" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,14 +2749,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:55 GMT" + "Sun, 03 Jan 2016 13:52:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2764,10 +2764,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2779,16 +2779,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14832" ], "x-ms-request-id": [ - "d10ea24b-6d5a-474d-8fd1-acb0004911b7" + "f39e59da-c38b-4141-ae48-6a08bb5bd260" ], "x-ms-correlation-request-id": [ - "d10ea24b-6d5a-474d-8fd1-acb0004911b7" + "f39e59da-c38b-4141-ae48-6a08bb5bd260" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074959Z:d10ea24b-6d5a-474d-8fd1-acb0004911b7" + "WESTEUROPE:20160103T135300Z:f39e59da-c38b-4141-ae48-6a08bb5bd260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2797,14 +2797,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:59 GMT" + "Sun, 03 Jan 2016 13:53:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2812,10 +2812,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2827,16 +2827,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14830" ], "x-ms-request-id": [ - "844e2406-fa2a-4a79-bec9-456595ff5537" + "4ad4d0f9-812c-4274-8d81-3fda27955d3d" ], "x-ms-correlation-request-id": [ - "844e2406-fa2a-4a79-bec9-456595ff5537" + "4ad4d0f9-812c-4274-8d81-3fda27955d3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075003Z:844e2406-fa2a-4a79-bec9-456595ff5537" + "WESTEUROPE:20160103T135304Z:4ad4d0f9-812c-4274-8d81-3fda27955d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2845,14 +2845,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:03 GMT" + "Sun, 03 Jan 2016 13:53:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,10 +2860,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2875,16 +2875,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14828" ], "x-ms-request-id": [ - "f56e7af4-5d3d-4c1f-b4ba-c59952d975d5" + "e6244d37-4dec-425b-8a66-7db6c5b1e8b4" ], "x-ms-correlation-request-id": [ - "f56e7af4-5d3d-4c1f-b4ba-c59952d975d5" + "e6244d37-4dec-425b-8a66-7db6c5b1e8b4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075007Z:f56e7af4-5d3d-4c1f-b4ba-c59952d975d5" + "WESTEUROPE:20160103T135307Z:e6244d37-4dec-425b-8a66-7db6c5b1e8b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2893,14 +2893,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:07 GMT" + "Sun, 03 Jan 2016 13:53:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2908,10 +2908,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2923,16 +2923,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14826" ], "x-ms-request-id": [ - "7fbacab2-35b6-4bb5-b338-d2e0596221b1" + "79d16689-c630-466a-906d-c59267514583" ], "x-ms-correlation-request-id": [ - "7fbacab2-35b6-4bb5-b338-d2e0596221b1" + "79d16689-c630-466a-906d-c59267514583" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075011Z:7fbacab2-35b6-4bb5-b338-d2e0596221b1" + "WESTEUROPE:20160103T135311Z:79d16689-c630-466a-906d-c59267514583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2941,14 +2941,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:10 GMT" + "Sun, 03 Jan 2016 13:53:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2956,10 +2956,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2971,16 +2971,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14824" ], "x-ms-request-id": [ - "8fbed500-17dd-459f-8800-3d5ce548461b" + "e1252214-7182-4cb4-8a0b-97a9f2c2b50e" ], "x-ms-correlation-request-id": [ - "8fbed500-17dd-459f-8800-3d5ce548461b" + "e1252214-7182-4cb4-8a0b-97a9f2c2b50e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075015Z:8fbed500-17dd-459f-8800-3d5ce548461b" + "WESTEUROPE:20160103T135314Z:e1252214-7182-4cb4-8a0b-97a9f2c2b50e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2989,14 +2989,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:14 GMT" + "Sun, 03 Jan 2016 13:53:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3004,10 +3004,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3019,16 +3019,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14822" ], "x-ms-request-id": [ - "1f74f5b8-fd86-4f7f-af7d-44f7b7309582" + "387f7653-7948-49d6-939f-cb54a7020d3b" ], "x-ms-correlation-request-id": [ - "1f74f5b8-fd86-4f7f-af7d-44f7b7309582" + "387f7653-7948-49d6-939f-cb54a7020d3b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075019Z:1f74f5b8-fd86-4f7f-af7d-44f7b7309582" + "WESTEUROPE:20160103T135318Z:387f7653-7948-49d6-939f-cb54a7020d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3037,14 +3037,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:18 GMT" + "Sun, 03 Jan 2016 13:53:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3052,10 +3052,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3067,16 +3067,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14820" ], "x-ms-request-id": [ - "dac0a7c9-6ef0-4453-a1c6-4a808ef23fea" + "9ad59199-2595-4dfc-a7e3-18b02a586f26" ], "x-ms-correlation-request-id": [ - "dac0a7c9-6ef0-4453-a1c6-4a808ef23fea" + "9ad59199-2595-4dfc-a7e3-18b02a586f26" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075023Z:dac0a7c9-6ef0-4453-a1c6-4a808ef23fea" + "WESTEUROPE:20160103T135322Z:9ad59199-2595-4dfc-a7e3-18b02a586f26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3085,14 +3085,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:23 GMT" + "Sun, 03 Jan 2016 13:53:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3100,10 +3100,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3115,16 +3115,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14817" ], "x-ms-request-id": [ - "f0344a5a-450a-44d9-8daa-2490e8727ce9" + "ed4ff0b0-3ad5-4b5a-93c4-1d4af9bb8069" ], "x-ms-correlation-request-id": [ - "f0344a5a-450a-44d9-8daa-2490e8727ce9" + "ed4ff0b0-3ad5-4b5a-93c4-1d4af9bb8069" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075027Z:f0344a5a-450a-44d9-8daa-2490e8727ce9" + "WESTEUROPE:20160103T135326Z:ed4ff0b0-3ad5-4b5a-93c4-1d4af9bb8069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3133,14 +3133,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:27 GMT" + "Sun, 03 Jan 2016 13:53:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3148,10 +3148,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3163,16 +3163,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14815" ], "x-ms-request-id": [ - "448534de-6e63-421f-8945-edb927efa4c7" + "f71c8ef4-2e8a-4f06-9e59-5af2605a024b" ], "x-ms-correlation-request-id": [ - "448534de-6e63-421f-8945-edb927efa4c7" + "f71c8ef4-2e8a-4f06-9e59-5af2605a024b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075031Z:448534de-6e63-421f-8945-edb927efa4c7" + "WESTEUROPE:20160103T135330Z:f71c8ef4-2e8a-4f06-9e59-5af2605a024b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3181,14 +3181,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:31 GMT" + "Sun, 03 Jan 2016 13:53:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3196,10 +3196,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3211,16 +3211,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14813" ], "x-ms-request-id": [ - "b7ae6781-f490-410e-87fb-f76c727df818" + "655aa850-9363-4d32-a02d-6b5cd6003ff6" ], "x-ms-correlation-request-id": [ - "b7ae6781-f490-410e-87fb-f76c727df818" + "655aa850-9363-4d32-a02d-6b5cd6003ff6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075035Z:b7ae6781-f490-410e-87fb-f76c727df818" + "WESTEUROPE:20160103T135334Z:655aa850-9363-4d32-a02d-6b5cd6003ff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3229,14 +3229,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:34 GMT" + "Sun, 03 Jan 2016 13:53:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3244,10 +3244,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3259,16 +3259,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14811" ], "x-ms-request-id": [ - "d1b6ffb0-8c1d-4e4e-82c7-c21b6a003ac7" + "6c4af355-5285-4373-9825-8b35f6a33047" ], "x-ms-correlation-request-id": [ - "d1b6ffb0-8c1d-4e4e-82c7-c21b6a003ac7" + "6c4af355-5285-4373-9825-8b35f6a33047" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075039Z:d1b6ffb0-8c1d-4e4e-82c7-c21b6a003ac7" + "WESTEUROPE:20160103T135338Z:6c4af355-5285-4373-9825-8b35f6a33047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3277,14 +3277,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:38 GMT" + "Sun, 03 Jan 2016 13:53:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3292,10 +3292,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3307,16 +3307,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14809" ], "x-ms-request-id": [ - "55346100-d484-4dc4-9f7d-5c23c97fb488" + "81cb38ba-bb79-4205-abec-4b8f72fcbcd5" ], "x-ms-correlation-request-id": [ - "55346100-d484-4dc4-9f7d-5c23c97fb488" + "81cb38ba-bb79-4205-abec-4b8f72fcbcd5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075043Z:55346100-d484-4dc4-9f7d-5c23c97fb488" + "WESTEUROPE:20160103T135342Z:81cb38ba-bb79-4205-abec-4b8f72fcbcd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3325,14 +3325,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:42 GMT" + "Sun, 03 Jan 2016 13:53:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3340,10 +3340,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:45.6655496Z\",\r\n \"duration\": \"PT1M43.0048119S\",\r\n \"trackingId\": \"b2d1187c-79aa-4f73-ac07-78033b803ca3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3355,16 +3355,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14807" ], "x-ms-request-id": [ - "d6051964-a3fa-4029-9ea6-dd65615ccbe9" + "998b2607-ccdd-4669-bcc9-8d9e45ead423" ], "x-ms-correlation-request-id": [ - "d6051964-a3fa-4029-9ea6-dd65615ccbe9" + "998b2607-ccdd-4669-bcc9-8d9e45ead423" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075047Z:d6051964-a3fa-4029-9ea6-dd65615ccbe9" + "WESTEUROPE:20160103T135346Z:998b2607-ccdd-4669-bcc9-8d9e45ead423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3373,14 +3373,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:46 GMT" + "Sun, 03 Jan 2016 13:53:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3388,10 +3388,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:45.6655496Z\",\r\n \"duration\": \"PT1M43.0048119S\",\r\n \"trackingId\": \"b2d1187c-79aa-4f73-ac07-78033b803ca3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3403,16 +3403,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14805" ], "x-ms-request-id": [ - "c0eb930a-08da-47a0-ba9c-cbc04baee83c" + "3c73ad65-e297-4715-b72b-2063aa9713ba" ], "x-ms-correlation-request-id": [ - "c0eb930a-08da-47a0-ba9c-cbc04baee83c" + "3c73ad65-e297-4715-b72b-2063aa9713ba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075050Z:c0eb930a-08da-47a0-ba9c-cbc04baee83c" + "WESTEUROPE:20160103T135350Z:3c73ad65-e297-4715-b72b-2063aa9713ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3421,14 +3421,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:50 GMT" + "Sun, 03 Jan 2016 13:53:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3436,10 +3436,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:52.3003729Z\",\r\n \"duration\": \"PT1M49.6396352S\",\r\n \"trackingId\": \"b44b2db9-5c1b-4c0a-b8b5-21ecaff856e5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3451,16 +3451,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14803" ], "x-ms-request-id": [ - "e39b9ca2-a0c9-4494-ab40-9ff523311f72" + "4cbc5a27-323c-4921-a2b8-3c03fe0bb8b7" ], "x-ms-correlation-request-id": [ - "e39b9ca2-a0c9-4494-ab40-9ff523311f72" + "4cbc5a27-323c-4921-a2b8-3c03fe0bb8b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075054Z:e39b9ca2-a0c9-4494-ab40-9ff523311f72" + "WESTEUROPE:20160103T135353Z:4cbc5a27-323c-4921-a2b8-3c03fe0bb8b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3469,14 +3469,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:53 GMT" + "Sun, 03 Jan 2016 13:53:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,10 +3484,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:52.3003729Z\",\r\n \"duration\": \"PT1M49.6396352S\",\r\n \"trackingId\": \"b44b2db9-5c1b-4c0a-b8b5-21ecaff856e5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3499,16 +3499,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14801" ], "x-ms-request-id": [ - "4067f885-4287-4d2e-a539-7f6ca51f2645" + "7f52806a-70bd-414f-a6a1-d4a0955ad636" ], "x-ms-correlation-request-id": [ - "4067f885-4287-4d2e-a539-7f6ca51f2645" + "7f52806a-70bd-414f-a6a1-d4a0955ad636" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075058Z:4067f885-4287-4d2e-a539-7f6ca51f2645" + "WESTEUROPE:20160103T135357Z:7f52806a-70bd-414f-a6a1-d4a0955ad636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3517,14 +3517,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:58 GMT" + "Sun, 03 Jan 2016 13:53:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,10 +3532,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:50:59.7354751Z\",\r\n \"duration\": \"PT1M57.0747374S\",\r\n \"trackingId\": \"0f13caa6-f812-4087-8002-020095b67bd2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2005" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3547,16 +3547,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14799" ], "x-ms-request-id": [ - "820ee26d-6899-43be-81c3-7ab7a56fb41c" + "e1a3d726-209d-4898-8721-dae12fc1bed0" ], "x-ms-correlation-request-id": [ - "820ee26d-6899-43be-81c3-7ab7a56fb41c" + "e1a3d726-209d-4898-8721-dae12fc1bed0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075102Z:820ee26d-6899-43be-81c3-7ab7a56fb41c" + "WESTEUROPE:20160103T135401Z:e1a3d726-209d-4898-8721-dae12fc1bed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3565,7 +3565,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:02 GMT" + "Sun, 03 Jan 2016 13:54:01 GMT" ] }, "StatusCode": 200 @@ -3580,7 +3580,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3595,16 +3595,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14797" ], "x-ms-request-id": [ - "015347e4-76c9-4444-9e6d-aa1f6000c55f" + "9da1123e-3977-4e3c-92b8-abe8166c4ff6" ], "x-ms-correlation-request-id": [ - "015347e4-76c9-4444-9e6d-aa1f6000c55f" + "9da1123e-3977-4e3c-92b8-abe8166c4ff6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074636Z:015347e4-76c9-4444-9e6d-aa1f6000c55f" + "WESTEUROPE:20160103T135405Z:9da1123e-3977-4e3c-92b8-abe8166c4ff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3613,7 +3613,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:35 GMT" + "Sun, 03 Jan 2016 13:54:05 GMT" ] }, "StatusCode": 200 @@ -3628,7 +3628,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3643,16 +3643,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14795" ], "x-ms-request-id": [ - "480120a3-89b9-4d5c-b54e-d1e2c2ae2484" + "b4fe0176-2336-4adb-ba08-793752cea596" ], "x-ms-correlation-request-id": [ - "480120a3-89b9-4d5c-b54e-d1e2c2ae2484" + "b4fe0176-2336-4adb-ba08-793752cea596" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074639Z:480120a3-89b9-4d5c-b54e-d1e2c2ae2484" + "WESTEUROPE:20160103T135409Z:b4fe0176-2336-4adb-ba08-793752cea596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3661,7 +3661,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:39 GMT" + "Sun, 03 Jan 2016 13:54:08 GMT" ] }, "StatusCode": 200 @@ -3676,7 +3676,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3691,16 +3691,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14793" ], "x-ms-request-id": [ - "e14ad23a-e180-4467-bc94-74b6c0ec00d9" + "955e3ef5-37c8-4ba3-be1d-02a36188095c" ], "x-ms-correlation-request-id": [ - "e14ad23a-e180-4467-bc94-74b6c0ec00d9" + "955e3ef5-37c8-4ba3-be1d-02a36188095c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074643Z:e14ad23a-e180-4467-bc94-74b6c0ec00d9" + "WESTEUROPE:20160103T135413Z:955e3ef5-37c8-4ba3-be1d-02a36188095c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3709,7 +3709,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:42 GMT" + "Sun, 03 Jan 2016 13:54:12 GMT" ] }, "StatusCode": 200 @@ -3724,7 +3724,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3739,16 +3739,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14791" ], "x-ms-request-id": [ - "03c96b35-83bf-41bd-bc77-b1f2d06a7692" + "362db3b3-ab50-4727-b420-b7ee85bce33a" ], "x-ms-correlation-request-id": [ - "03c96b35-83bf-41bd-bc77-b1f2d06a7692" + "362db3b3-ab50-4727-b420-b7ee85bce33a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074647Z:03c96b35-83bf-41bd-bc77-b1f2d06a7692" + "WESTEUROPE:20160103T135417Z:362db3b3-ab50-4727-b420-b7ee85bce33a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3757,7 +3757,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:46 GMT" + "Sun, 03 Jan 2016 13:54:17 GMT" ] }, "StatusCode": 200 @@ -3772,7 +3772,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3787,16 +3787,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14789" ], "x-ms-request-id": [ - "9c3e61df-d247-495e-9b3f-7fbbc2f1a0f8" + "3daac5bb-a50d-4711-916c-c9b51c861a5f" ], "x-ms-correlation-request-id": [ - "9c3e61df-d247-495e-9b3f-7fbbc2f1a0f8" + "3daac5bb-a50d-4711-916c-c9b51c861a5f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074650Z:9c3e61df-d247-495e-9b3f-7fbbc2f1a0f8" + "WESTEUROPE:20160103T135421Z:3daac5bb-a50d-4711-916c-c9b51c861a5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3805,7 +3805,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:49 GMT" + "Sun, 03 Jan 2016 13:54:20 GMT" ] }, "StatusCode": 200 @@ -3820,7 +3820,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3835,16 +3835,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" + "14787" ], "x-ms-request-id": [ - "c2dc0712-6db4-4b90-8f1d-4bd6ec8188b4" + "2606d53e-d433-4a2e-a9e6-309ad85a5a6c" ], "x-ms-correlation-request-id": [ - "c2dc0712-6db4-4b90-8f1d-4bd6ec8188b4" + "2606d53e-d433-4a2e-a9e6-309ad85a5a6c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074654Z:c2dc0712-6db4-4b90-8f1d-4bd6ec8188b4" + "WESTEUROPE:20160103T135425Z:2606d53e-d433-4a2e-a9e6-309ad85a5a6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3853,7 +3853,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:54 GMT" + "Sun, 03 Jan 2016 13:54:24 GMT" ] }, "StatusCode": 200 @@ -3868,7 +3868,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3883,16 +3883,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14785" ], "x-ms-request-id": [ - "8773782a-6e4e-4b39-a83c-23a41b533814" + "d6c5e091-3275-4e0c-a20b-4bcef43facfd" ], "x-ms-correlation-request-id": [ - "8773782a-6e4e-4b39-a83c-23a41b533814" + "d6c5e091-3275-4e0c-a20b-4bcef43facfd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074658Z:8773782a-6e4e-4b39-a83c-23a41b533814" + "WESTEUROPE:20160103T135429Z:d6c5e091-3275-4e0c-a20b-4bcef43facfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3901,7 +3901,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:57 GMT" + "Sun, 03 Jan 2016 13:54:28 GMT" ] }, "StatusCode": 200 @@ -3916,7 +3916,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3931,16 +3931,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14783" ], "x-ms-request-id": [ - "df29adc3-d4a9-47f1-ae38-c76f4c23803a" + "08dcadeb-d4fd-4a16-9808-75357c01ef3b" ], "x-ms-correlation-request-id": [ - "df29adc3-d4a9-47f1-ae38-c76f4c23803a" + "08dcadeb-d4fd-4a16-9808-75357c01ef3b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074701Z:df29adc3-d4a9-47f1-ae38-c76f4c23803a" + "WESTEUROPE:20160103T135433Z:08dcadeb-d4fd-4a16-9808-75357c01ef3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3949,7 +3949,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:01 GMT" + "Sun, 03 Jan 2016 13:54:33 GMT" ] }, "StatusCode": 200 @@ -3964,7 +3964,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3979,16 +3979,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14781" ], "x-ms-request-id": [ - "f50ee00e-3143-46b0-b04c-6f2a2b131ee2" + "c6dc28aa-9b41-4760-9c66-acf3ca11a19f" ], "x-ms-correlation-request-id": [ - "f50ee00e-3143-46b0-b04c-6f2a2b131ee2" + "c6dc28aa-9b41-4760-9c66-acf3ca11a19f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074705Z:f50ee00e-3143-46b0-b04c-6f2a2b131ee2" + "WESTEUROPE:20160103T135436Z:c6dc28aa-9b41-4760-9c66-acf3ca11a19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3997,7 +3997,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:04 GMT" + "Sun, 03 Jan 2016 13:54:36 GMT" ] }, "StatusCode": 200 @@ -4012,7 +4012,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4027,16 +4027,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14779" ], "x-ms-request-id": [ - "8dc275d8-e643-47d3-954c-ea471cb31db2" + "6d8fb5a9-f630-4803-b501-fb8a58594abc" ], "x-ms-correlation-request-id": [ - "8dc275d8-e643-47d3-954c-ea471cb31db2" + "6d8fb5a9-f630-4803-b501-fb8a58594abc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074709Z:8dc275d8-e643-47d3-954c-ea471cb31db2" + "WESTEUROPE:20160103T135440Z:6d8fb5a9-f630-4803-b501-fb8a58594abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4045,7 +4045,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:08 GMT" + "Sun, 03 Jan 2016 13:54:40 GMT" ] }, "StatusCode": 200 @@ -4060,7 +4060,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4075,16 +4075,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14777" ], "x-ms-request-id": [ - "a7a9aee2-35e9-44c7-8dc7-b19531281985" + "c0086c98-387d-44d2-b1f3-12394899b190" ], "x-ms-correlation-request-id": [ - "a7a9aee2-35e9-44c7-8dc7-b19531281985" + "c0086c98-387d-44d2-b1f3-12394899b190" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074712Z:a7a9aee2-35e9-44c7-8dc7-b19531281985" + "WESTEUROPE:20160103T135444Z:c0086c98-387d-44d2-b1f3-12394899b190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4093,7 +4093,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:11 GMT" + "Sun, 03 Jan 2016 13:54:44 GMT" ] }, "StatusCode": 200 @@ -4108,7 +4108,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4123,16 +4123,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14775" ], "x-ms-request-id": [ - "873f8321-1097-4566-b3db-c41e4ea295c1" + "ba193795-588f-4567-b0f9-1b09a8c1a031" ], "x-ms-correlation-request-id": [ - "873f8321-1097-4566-b3db-c41e4ea295c1" + "ba193795-588f-4567-b0f9-1b09a8c1a031" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074716Z:873f8321-1097-4566-b3db-c41e4ea295c1" + "WESTEUROPE:20160103T135448Z:ba193795-588f-4567-b0f9-1b09a8c1a031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4141,7 +4141,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:15 GMT" + "Sun, 03 Jan 2016 13:54:47 GMT" ] }, "StatusCode": 200 @@ -4156,7 +4156,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4171,16 +4171,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14773" ], "x-ms-request-id": [ - "9f65deeb-6036-43bb-9890-b6d79199ebb7" + "77313170-58a3-49b9-8c4a-71d314ac5bbe" ], "x-ms-correlation-request-id": [ - "9f65deeb-6036-43bb-9890-b6d79199ebb7" + "77313170-58a3-49b9-8c4a-71d314ac5bbe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074719Z:9f65deeb-6036-43bb-9890-b6d79199ebb7" + "WESTEUROPE:20160103T135452Z:77313170-58a3-49b9-8c4a-71d314ac5bbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4189,7 +4189,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:19 GMT" + "Sun, 03 Jan 2016 13:54:52 GMT" ] }, "StatusCode": 200 @@ -4204,10 +4204,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:54:54.2879976Z\",\r\n \"duration\": \"PT2M40.232794S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "2026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4219,16 +4219,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14771" ], "x-ms-request-id": [ - "4a585c3b-5505-4429-bb38-441a4d5b5e30" + "41b615af-2f25-415b-a82b-4aee181ed9ec" ], "x-ms-correlation-request-id": [ - "4a585c3b-5505-4429-bb38-441a4d5b5e30" + "41b615af-2f25-415b-a82b-4aee181ed9ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074723Z:4a585c3b-5505-4429-bb38-441a4d5b5e30" + "WESTEUROPE:20160103T135456Z:41b615af-2f25-415b-a82b-4aee181ed9ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4237,254 +4237,284 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:23 GMT" + "Sun, 03 Jan 2016 13:54:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "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": [ + "ad9c2038-960c-4fd2-901e-49755cbdd1b2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "988" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "db32a59b-947b-40eb-af29-96d8351f8716" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "04e0c58a-aef8-44f7-8776-f2e67c6c50cc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" ], "x-ms-correlation-request-id": [ - "04e0c58a-aef8-44f7-8776-f2e67c6c50cc" + "f3f6b92f-d036-4a96-83e8-79357af2b04b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074727Z:04e0c58a-aef8-44f7-8776-f2e67c6c50cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135500Z:f3f6b92f-d036-4a96-83e8-79357af2b04b" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:27 GMT" + "Sun, 03 Jan 2016 13:55:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "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": [ + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1108" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "bdb62f7b-1793-4a5f-a4d2-592d55c5fcef" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "32135f84-b93d-4753-a141-574ff0f9cfac" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" ], "x-ms-correlation-request-id": [ - "32135f84-b93d-4753-a141-574ff0f9cfac" + "988c1bb3-46d0-4fb4-a1a9-a0e08da36624" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074730Z:32135f84-b93d-4753-a141-574ff0f9cfac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135515Z:988c1bb3-46d0-4fb4-a1a9-a0e08da36624" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:30 GMT" + "Sun, 03 Jan 2016 13:55:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "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": [ + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1108" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "dd89e8c5-1165-484e-81d3-444d4951ca7a" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "ec520faa-1613-4c63-b2b8-fb0465fe0538" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" ], "x-ms-correlation-request-id": [ - "ec520faa-1613-4c63-b2b8-fb0465fe0538" + "72ed19b7-0125-4329-be8b-3f72d5d3b575" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074735Z:ec520faa-1613-4c63-b2b8-fb0465fe0538" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135523Z:72ed19b7-0125-4329-be8b-3f72d5d3b575" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:34 GMT" + "Sun, 03 Jan 2016 13:55:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "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": [ + "0fb174a8-875c-4740-b480-31db56926095" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1108" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "2b54a00f-bbdd-46f9-ab5e-917df5fa2c17" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "d1834d2d-d7f3-455f-ad37-9eb735051b8e" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" ], "x-ms-correlation-request-id": [ - "d1834d2d-d7f3-455f-ad37-9eb735051b8e" + "b1c4d1ef-80a7-4a12-9715-4efc270a8522" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074738Z:d1834d2d-d7f3-455f-ad37-9eb735051b8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135540Z:b1c4d1ef-80a7-4a12-9715-4efc270a8522" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:38 GMT" + "Sun, 03 Jan 2016 13:55:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "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": [ + "ad9c2038-960c-4fd2-901e-49755cbdd1b2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"name\": \"sql-td-cmdlet-db6001\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9b2a7765-e92e-492b-86dc-3186c83524a8\",\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\": \"2016-01-03T13:53:30.057Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T14:04:06.62Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "870" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "49e86193-f5df-4688-a70d-eb20475880de" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "e42955d6-c37b-40f7-beba-049b57e4a6a0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" ], "x-ms-correlation-request-id": [ - "e42955d6-c37b-40f7-beba-049b57e4a6a0" + "812de86e-67ce-49ad-8de3-fdab0f0d304d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074742Z:e42955d6-c37b-40f7-beba-049b57e4a6a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135502Z:812de86e-67ce-49ad-8de3-fdab0f0d304d" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:41 GMT" + "Sun, 03 Jan 2016 13:55:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4492,10 +4522,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4507,16 +4537,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14774" ], "x-ms-request-id": [ - "025d7c73-f08f-4705-bfbf-2732e0643715" + "9db581de-4f46-462a-8a9d-dd686ce66f46" ], "x-ms-correlation-request-id": [ - "025d7c73-f08f-4705-bfbf-2732e0643715" + "9db581de-4f46-462a-8a9d-dd686ce66f46" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074746Z:025d7c73-f08f-4705-bfbf-2732e0643715" + "WESTEUROPE:20160103T135503Z:9db581de-4f46-462a-8a9d-dd686ce66f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4525,14 +4555,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:45 GMT" + "Sun, 03 Jan 2016 13:55:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4540,10 +4570,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.Storage/storageAccounts/assafakteststorage\",\r\n \"name\": \"assafakteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Storage/storageAccounts/yrubinv2storage\",\r\n \"name\": \"yrubinv2storage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"name\": \"tdcmdlets6001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1032" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4555,16 +4585,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14773" ], "x-ms-request-id": [ - "166a7129-a975-45f3-a51b-a60fb70403ca" + "3d79b45e-f099-49be-bd24-4db8efaea6a0" ], "x-ms-correlation-request-id": [ - "166a7129-a975-45f3-a51b-a60fb70403ca" + "3d79b45e-f099-49be-bd24-4db8efaea6a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074750Z:166a7129-a975-45f3-a51b-a60fb70403ca" + "WESTEUROPE:20160103T135503Z:3d79b45e-f099-49be-bd24-4db8efaea6a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4573,25 +4603,28 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:49 GMT" + "Sun, 03 Jan 2016 13:55:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001/listKeys?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvdGRjbWRsZXRzNjAwMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestMethod": "POST", "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": [ + "none" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001' under resource group 'sql-td-cmdlet-test-rg6001' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4602,17 +4635,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "af690ce3-f116-4185-96c2-61db75d95618" + "e0141cbf-055f-4b2b-9a41-6d31d44517b0" ], "x-ms-correlation-request-id": [ - "af690ce3-f116-4185-96c2-61db75d95618" + "e0141cbf-055f-4b2b-9a41-6d31d44517b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074754Z:af690ce3-f116-4185-96c2-61db75d95618" + "WESTEUROPE:20160103T135504Z:e0141cbf-055f-4b2b-9a41-6d31d44517b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4621,2416 +4654,58 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:53 GMT" + "Sun, 03 Jan 2016 13:55:03 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZGNtZGxldHM2MDAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b479df49-4303-4f21-9144-7d59dea56c38" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"key1\": \"pCLpYczRPH7VhC+5IVIK78Yk19+Mhr8A+jmadhdGzLhA8/crvYJUiERbHcaislzNsvVKcyA4dKdkIEDI09IcbQ==\",\r\n \"key2\": \"eUgyMrrErbGXTUj1Q+tdxDxeviYd62Q59HYikhcJJP0HLTjZmFcUDHnDmdsm61O+lnvA7lkZ47uYbOdN5Drz1Q==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "198" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" - ], - "x-ms-request-id": [ - "6f24f15e-b647-473f-97bb-5b272c95da2c" - ], - "x-ms-correlation-request-id": [ - "6f24f15e-b647-473f-97bb-5b272c95da2c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074758Z:6f24f15e-b647-473f-97bb-5b272c95da2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:47:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" - ], - "x-ms-request-id": [ - "74a5c659-3dd0-4692-801e-4b8c3e681eaa" - ], - "x-ms-correlation-request-id": [ - "74a5c659-3dd0-4692-801e-4b8c3e681eaa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074801Z:74a5c659-3dd0-4692-801e-4b8c3e681eaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" - ], - "x-ms-request-id": [ - "4643671b-06d4-424c-a5c9-e780ed97dfab" - ], - "x-ms-correlation-request-id": [ - "4643671b-06d4-424c-a5c9-e780ed97dfab" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074805Z:4643671b-06d4-424c-a5c9-e780ed97dfab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" - ], - "x-ms-request-id": [ - "c14527ff-466a-4e78-87fd-53caec02bf22" - ], - "x-ms-correlation-request-id": [ - "c14527ff-466a-4e78-87fd-53caec02bf22" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074809Z:c14527ff-466a-4e78-87fd-53caec02bf22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" - ], - "x-ms-request-id": [ - "72352502-3918-42e0-b4fd-e933a159664d" - ], - "x-ms-correlation-request-id": [ - "72352502-3918-42e0-b4fd-e933a159664d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074813Z:72352502-3918-42e0-b4fd-e933a159664d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" - ], - "x-ms-request-id": [ - "32b8fc9e-3fdd-40ef-904e-c7e03b963f70" - ], - "x-ms-correlation-request-id": [ - "32b8fc9e-3fdd-40ef-904e-c7e03b963f70" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074817Z:32b8fc9e-3fdd-40ef-904e-c7e03b963f70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" - ], - "x-ms-request-id": [ - "fcd388ba-74b1-4d3d-a191-755faec98a40" - ], - "x-ms-correlation-request-id": [ - "fcd388ba-74b1-4d3d-a191-755faec98a40" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074821Z:fcd388ba-74b1-4d3d-a191-755faec98a40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" - ], - "x-ms-request-id": [ - "5dc4269c-a695-4016-98b3-78de5628c19a" - ], - "x-ms-correlation-request-id": [ - "5dc4269c-a695-4016-98b3-78de5628c19a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074825Z:5dc4269c-a695-4016-98b3-78de5628c19a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" - ], - "x-ms-request-id": [ - "36c6ed51-f94e-4aae-ab14-c1871eca180e" - ], - "x-ms-correlation-request-id": [ - "36c6ed51-f94e-4aae-ab14-c1871eca180e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074829Z:36c6ed51-f94e-4aae-ab14-c1871eca180e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" - ], - "x-ms-request-id": [ - "4c146b4a-1522-41d4-bce7-ed530388b3e5" - ], - "x-ms-correlation-request-id": [ - "4c146b4a-1522-41d4-bce7-ed530388b3e5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074833Z:4c146b4a-1522-41d4-bce7-ed530388b3e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" - ], - "x-ms-request-id": [ - "c1803b04-4021-419b-8f97-b52bb055064d" - ], - "x-ms-correlation-request-id": [ - "c1803b04-4021-419b-8f97-b52bb055064d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074837Z:c1803b04-4021-419b-8f97-b52bb055064d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" - ], - "x-ms-request-id": [ - "79544132-d258-4f3a-b3fb-9f9ff137b415" - ], - "x-ms-correlation-request-id": [ - "79544132-d258-4f3a-b3fb-9f9ff137b415" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074841Z:79544132-d258-4f3a-b3fb-9f9ff137b415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" - ], - "x-ms-request-id": [ - "3b7ae919-db34-4423-b9b6-50988efff4ca" - ], - "x-ms-correlation-request-id": [ - "3b7ae919-db34-4423-b9b6-50988efff4ca" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074845Z:3b7ae919-db34-4423-b9b6-50988efff4ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14775" - ], - "x-ms-request-id": [ - "fddd5c43-4791-48cb-8366-900c38310d15" - ], - "x-ms-correlation-request-id": [ - "fddd5c43-4791-48cb-8366-900c38310d15" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074849Z:fddd5c43-4791-48cb-8366-900c38310d15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" - ], - "x-ms-request-id": [ - "a2c399f9-5caf-46aa-bbff-89a39fbb69d8" - ], - "x-ms-correlation-request-id": [ - "a2c399f9-5caf-46aa-bbff-89a39fbb69d8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074853Z:a2c399f9-5caf-46aa-bbff-89a39fbb69d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" - ], - "x-ms-request-id": [ - "0544111d-c11a-4bcb-9093-54c3f757ec85" - ], - "x-ms-correlation-request-id": [ - "0544111d-c11a-4bcb-9093-54c3f757ec85" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074857Z:0544111d-c11a-4bcb-9093-54c3f757ec85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" - ], - "x-ms-request-id": [ - "7f249dc9-02e5-4c3a-bf66-a16c04101e4a" - ], - "x-ms-correlation-request-id": [ - "7f249dc9-02e5-4c3a-bf66-a16c04101e4a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074901Z:7f249dc9-02e5-4c3a-bf66-a16c04101e4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" - ], - "x-ms-request-id": [ - "338868bb-8496-40bc-bb14-3baca5a6ba20" - ], - "x-ms-correlation-request-id": [ - "338868bb-8496-40bc-bb14-3baca5a6ba20" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074905Z:338868bb-8496-40bc-bb14-3baca5a6ba20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" - ], - "x-ms-request-id": [ - "6befbe55-36fb-4f32-b30f-6a571495813f" - ], - "x-ms-correlation-request-id": [ - "6befbe55-36fb-4f32-b30f-6a571495813f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074909Z:6befbe55-36fb-4f32-b30f-6a571495813f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" - ], - "x-ms-request-id": [ - "114651f3-f45b-4bc0-8728-c917a24c8e56" - ], - "x-ms-correlation-request-id": [ - "114651f3-f45b-4bc0-8728-c917a24c8e56" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074913Z:114651f3-f45b-4bc0-8728-c917a24c8e56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" - ], - "x-ms-request-id": [ - "180f8da0-616c-45a9-9ecc-0a9501296ce3" - ], - "x-ms-correlation-request-id": [ - "180f8da0-616c-45a9-9ecc-0a9501296ce3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074917Z:180f8da0-616c-45a9-9ecc-0a9501296ce3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" - ], - "x-ms-request-id": [ - "10fbc01c-2224-4c47-b603-d9136f79cf2d" - ], - "x-ms-correlation-request-id": [ - "10fbc01c-2224-4c47-b603-d9136f79cf2d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074921Z:10fbc01c-2224-4c47-b603-d9136f79cf2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" - ], - "x-ms-request-id": [ - "babb2101-ac0d-4db0-ac95-3130a558d6b3" - ], - "x-ms-correlation-request-id": [ - "babb2101-ac0d-4db0-ac95-3130a558d6b3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074924Z:babb2101-ac0d-4db0-ac95-3130a558d6b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" - ], - "x-ms-request-id": [ - "c412bc54-66d2-40c9-8264-968c41c5b0f2" - ], - "x-ms-correlation-request-id": [ - "c412bc54-66d2-40c9-8264-968c41c5b0f2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074928Z:c412bc54-66d2-40c9-8264-968c41c5b0f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" - ], - "x-ms-request-id": [ - "58839343-f6e6-44ee-bb00-29bc05797ae1" - ], - "x-ms-correlation-request-id": [ - "58839343-f6e6-44ee-bb00-29bc05797ae1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074932Z:58839343-f6e6-44ee-bb00-29bc05797ae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" - ], - "x-ms-request-id": [ - "f7f624e8-0d33-491b-8768-8948b6b7d72a" - ], - "x-ms-correlation-request-id": [ - "f7f624e8-0d33-491b-8768-8948b6b7d72a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074936Z:f7f624e8-0d33-491b-8768-8948b6b7d72a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" - ], - "x-ms-request-id": [ - "f4ca9b5f-0386-4d34-accc-fc74b5c8c80b" - ], - "x-ms-correlation-request-id": [ - "f4ca9b5f-0386-4d34-accc-fc74b5c8c80b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074940Z:f4ca9b5f-0386-4d34-accc-fc74b5c8c80b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" - ], - "x-ms-request-id": [ - "8b7e590a-7e45-435d-9a1d-5eed69811fd2" - ], - "x-ms-correlation-request-id": [ - "8b7e590a-7e45-435d-9a1d-5eed69811fd2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074944Z:8b7e590a-7e45-435d-9a1d-5eed69811fd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" - ], - "x-ms-request-id": [ - "f2f20af3-4b81-4269-8979-ac33839d49f7" - ], - "x-ms-correlation-request-id": [ - "f2f20af3-4b81-4269-8979-ac33839d49f7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074948Z:f2f20af3-4b81-4269-8979-ac33839d49f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" - ], - "x-ms-request-id": [ - "17fa5ae5-3ef2-4b19-9fbf-f9506817f4f7" - ], - "x-ms-correlation-request-id": [ - "17fa5ae5-3ef2-4b19-9fbf-f9506817f4f7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074952Z:17fa5ae5-3ef2-4b19-9fbf-f9506817f4f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" - ], - "x-ms-request-id": [ - "f962d9c1-f3f5-4e9c-b69b-b62687dce59b" - ], - "x-ms-correlation-request-id": [ - "f962d9c1-f3f5-4e9c-b69b-b62687dce59b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074956Z:f962d9c1-f3f5-4e9c-b69b-b62687dce59b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" - ], - "x-ms-request-id": [ - "0f4a32c8-c35e-4f30-81a8-fbfdff1d0307" - ], - "x-ms-correlation-request-id": [ - "0f4a32c8-c35e-4f30-81a8-fbfdff1d0307" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075000Z:0f4a32c8-c35e-4f30-81a8-fbfdff1d0307" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" - ], - "x-ms-request-id": [ - "5bc44518-a73f-4714-b381-194a770e32b8" - ], - "x-ms-correlation-request-id": [ - "5bc44518-a73f-4714-b381-194a770e32b8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075004Z:5bc44518-a73f-4714-b381-194a770e32b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" - ], - "x-ms-request-id": [ - "a496d0e9-11e2-4ad2-a73f-e9d199fbfad1" - ], - "x-ms-correlation-request-id": [ - "a496d0e9-11e2-4ad2-a73f-e9d199fbfad1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075008Z:a496d0e9-11e2-4ad2-a73f-e9d199fbfad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" - ], - "x-ms-request-id": [ - "fb0a6271-040b-4d4c-a699-bb1555cac8e7" - ], - "x-ms-correlation-request-id": [ - "fb0a6271-040b-4d4c-a699-bb1555cac8e7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075012Z:fb0a6271-040b-4d4c-a699-bb1555cac8e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" - ], - "x-ms-request-id": [ - "ef11d908-4030-4947-84dd-3752b60ae069" - ], - "x-ms-correlation-request-id": [ - "ef11d908-4030-4947-84dd-3752b60ae069" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075016Z:ef11d908-4030-4947-84dd-3752b60ae069" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" - ], - "x-ms-request-id": [ - "3d620d12-b8d8-45da-b2ce-67f25ef6ae49" - ], - "x-ms-correlation-request-id": [ - "3d620d12-b8d8-45da-b2ce-67f25ef6ae49" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075020Z:3d620d12-b8d8-45da-b2ce-67f25ef6ae49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" - ], - "x-ms-request-id": [ - "7b759069-f063-419c-bfdf-e185c864b8ea" - ], - "x-ms-correlation-request-id": [ - "7b759069-f063-419c-bfdf-e185c864b8ea" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075024Z:7b759069-f063-419c-bfdf-e185c864b8ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" - ], - "x-ms-request-id": [ - "52368909-4abc-483f-bd17-7e6a83f68a54" - ], - "x-ms-correlation-request-id": [ - "52368909-4abc-483f-bd17-7e6a83f68a54" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075028Z:52368909-4abc-483f-bd17-7e6a83f68a54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" - ], - "x-ms-request-id": [ - "7185748b-800b-4a9d-9dfa-083a5534eb64" - ], - "x-ms-correlation-request-id": [ - "7185748b-800b-4a9d-9dfa-083a5534eb64" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075031Z:7185748b-800b-4a9d-9dfa-083a5534eb64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" - ], - "x-ms-request-id": [ - "90bc8941-6cd8-4a2b-82cb-d524f070de2a" - ], - "x-ms-correlation-request-id": [ - "90bc8941-6cd8-4a2b-82cb-d524f070de2a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075035Z:90bc8941-6cd8-4a2b-82cb-d524f070de2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" - ], - "x-ms-request-id": [ - "32a06926-fe21-4d00-b95a-bd78ecda5705" - ], - "x-ms-correlation-request-id": [ - "32a06926-fe21-4d00-b95a-bd78ecda5705" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075039Z:32a06926-fe21-4d00-b95a-bd78ecda5705" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" - ], - "x-ms-request-id": [ - "da93b580-b37d-4156-85a1-619c65b68086" - ], - "x-ms-correlation-request-id": [ - "da93b580-b37d-4156-85a1-619c65b68086" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075043Z:da93b580-b37d-4156-85a1-619c65b68086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" - ], - "x-ms-request-id": [ - "9db9bf2c-3072-467e-82e1-84f1e4129efa" - ], - "x-ms-correlation-request-id": [ - "9db9bf2c-3072-467e-82e1-84f1e4129efa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075047Z:9db9bf2c-3072-467e-82e1-84f1e4129efa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" - ], - "x-ms-request-id": [ - "c9e4ff90-3fb2-4021-945e-d9318fda4c61" - ], - "x-ms-correlation-request-id": [ - "c9e4ff90-3fb2-4021-945e-d9318fda4c61" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075051Z:c9e4ff90-3fb2-4021-945e-d9318fda4c61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" - ], - "x-ms-request-id": [ - "d53ab458-9696-4c64-9996-4329f3f9d0b9" - ], - "x-ms-correlation-request-id": [ - "d53ab458-9696-4c64-9996-4329f3f9d0b9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075055Z:d53ab458-9696-4c64-9996-4329f3f9d0b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" - ], - "x-ms-request-id": [ - "aa96d4cc-e0d6-4d0d-b394-c2971c5a7e3c" - ], - "x-ms-correlation-request-id": [ - "aa96d4cc-e0d6-4d0d-b394-c2971c5a7e3c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075059Z:aa96d4cc-e0d6-4d0d-b394-c2971c5a7e3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:51:00.96767Z\",\r\n \"duration\": \"PT4M32.5242594S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2025" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" - ], - "x-ms-request-id": [ - "b132c8bd-235a-4260-ae10-ca0eaf1a2ea3" - ], - "x-ms-correlation-request-id": [ - "b132c8bd-235a-4260-ae10-ca0eaf1a2ea3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075103Z:b132c8bd-235a-4260-ae10-ca0eaf1a2ea3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:51:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "4d80c1e9-8229-4c07-a659-d14cb480153f" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "988" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "b67648da-3c4e-4bc1-a45a-d036ffd60ae7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "520a59d9-941b-407a-9eba-95d781158fe8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075108Z:520a59d9-941b-407a-9eba-95d781158fe8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:51:08 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1108" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "39817f48-293c-4201-b6c7-2452924d086e" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "x-ms-request-id": [ + "c184f55d-aa24-4c35-a8e3-a4803600ea62" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "ab443564-c948-4bc1-996f-531b56853b6a" + "c184f55d-aa24-4c35-a8e3-a4803600ea62" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075122Z:ab443564-c948-4bc1-996f-531b56853b6a" + "WESTEUROPE:20160103T135506Z:c184f55d-aa24-4c35-a8e3-a4803600ea62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:22 GMT" + "Sun, 03 Jan 2016 13:55:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7041,50 +4716,59 @@ { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pCLpYczRPH7VhC+5IVIK78Yk19+Mhr8A+jmadhdGzLhA8/crvYJUiERbHcaislzNsvVKcyA4dKdkIEDI09IcbQ==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "827" + ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "ad9c2038-960c-4fd2-901e-49755cbdd1b2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pCLpYczRPH7VhC+5IVIK78Yk19+Mhr8A+jmadhdGzLhA8/crvYJUiERbHcaislzNsvVKcyA4dKdkIEDI09IcbQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1108" + "1126" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b73ab0b1-13d9-4770-a273-09639bdba2d2" + "2d186b20-cc2f-4c92-9567-1231370e61e2" ], "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": [ - "14934" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "d3a41c4f-b651-4112-8357-9f28ad8cd0bd" + "41e04eac-bbdb-4a9e-9b13-fb9a3edec88e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075131Z:d3a41c4f-b651-4112-8357-9f28ad8cd0bd" + "WESTEUROPE:20160103T135510Z:41e04eac-bbdb-4a9e-9b13-fb9a3edec88e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:31 GMT" + "Sun, 03 Jan 2016 13:55:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7093,8 +4777,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7102,19 +4786,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4d80c1e9-8229-4c07-a659-d14cb480153f" + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"name\": \"sql-td-cmdlet-db6001\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ff4a95b4-d632-400c-9460-eec6b9130a99\",\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-11-12T07:49:16.59Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-11-12T08:00:34.917Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "870" + "522" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fbdc2df8-c2b7-4314-9a4b-29164671c8fb" + "d5a2f5c1-f523-475b-aad7-e16a4b95191a" ], "X-Content-Type-Options": [ "nosniff" @@ -7122,23 +4806,23 @@ "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14923" ], "x-ms-correlation-request-id": [ - "703303fe-925c-4c1e-be1b-0a8e7d8f83e7" + "f6fe1a18-e645-4922-a4a3-5d545707f073" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075110Z:703303fe-925c-4c1e-be1b-0a8e7d8f83e7" + "WESTEUROPE:20160103T135511Z:f6fe1a18-e645-4922-a4a3-5d545707f073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:10 GMT" + "Sun, 03 Jan 2016 13:55:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7147,199 +4831,214 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/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": [ + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/assafakteststorage\",\r\n \"name\": \"assafakteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/meminvestigate\",\r\n \"name\": \"meminvestigate\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "7405" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "feff50fc-b574-444e-91ce-18af780659d3" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "b4a9b3c3-027b-4d3e-b757-0cd9cc0ca28f" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" ], "x-ms-correlation-request-id": [ - "b4a9b3c3-027b-4d3e-b757-0cd9cc0ca28f" + "1ad9bb6b-6ace-49ec-9e5c-05254fa415a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075110Z:b4a9b3c3-027b-4d3e-b757-0cd9cc0ca28f" + "WESTEUROPE:20160103T135513Z:1ad9bb6b-6ace-49ec-9e5c-05254fa415a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:10 GMT" + "Sun, 03 Jan 2016 13:55:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/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": [ + "a7ebc8c4-dce3-4062-ba72-3ac86459dbb1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Storage/storageAccounts/yrubinv2storage\",\r\n \"name\": \"yrubinv2storage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"name\": \"tdcmdlets6001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "777" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "9fb4d92a-b57a-4467-bc47-b417ff0ca022" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "b83b7023-d243-4beb-9742-a7ba893e8182" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" ], "x-ms-correlation-request-id": [ - "b83b7023-d243-4beb-9742-a7ba893e8182" + "3bf2f9f9-5cf2-45b0-9fd1-14531d512bf2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075110Z:b83b7023-d243-4beb-9742-a7ba893e8182" + "WESTEUROPE:20160103T135517Z:3bf2f9f9-5cf2-45b0-9fd1-14531d512bf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:10 GMT" + "Sun, 03 Jan 2016 13:55:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001/listKeys?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvdGRjbWRsZXRzNjAwMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "none" + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001' under resource group 'sql-td-cmdlet-test-rg6001' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "183" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "c22ff315-3fb7-435e-853d-5446a469f4b5" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-failure-cause": [ - "gateway" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "fec6e5fa-56ac-4b23-8736-0f0e15a6c660" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" ], "x-ms-correlation-request-id": [ - "fec6e5fa-56ac-4b23-8736-0f0e15a6c660" + "29d713ad-ab33-428b-8129-3b3046011e14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075112Z:fec6e5fa-56ac-4b23-8736-0f0e15a6c660" + "WESTEUROPE:20160103T135519Z:29d713ad-ab33-428b-8129-3b3046011e14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:11 GMT" + "Sun, 03 Jan 2016 13:55:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZGNtZGxldHM2MDAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f5fcc7e-f257-4792-9766-f589fc7e313a" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"key1\": \"pvduynDWrrVKHKjK/NuRzaiRqTU7tkgvZHwpGfTUL0q78wmwRAAcuhjl6hMr98FSmrjlCIdBWRBsU6ZRmfIU+g==\",\r\n \"key2\": \"EvPOMvw4O/Y54TFZIJ58uPgyKu/QeZZbEIaIdUF7G4SNUaV+F1sFCjr8KoLJvRb99iY69JtjaPvQFUSeEI384g==\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "198" + "522" ], "Content-Type": [ - "application/json" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "46f376ba-65ca-4566-9a33-6b0dc1647e22" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-request-id": [ - "e557ec00-c97f-43b1-b457-65de6b0a4735" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" ], "x-ms-correlation-request-id": [ - "e557ec00-c97f-43b1-b457-65de6b0a4735" + "0553be78-beb6-457e-a44d-363df6234a27" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075114Z:e557ec00-c97f-43b1-b457-65de6b0a4735" + "WESTEUROPE:20160103T135521Z:0553be78-beb6-457e-a44d-363df6234a27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:13 GMT" + "Sun, 03 Jan 2016 13:55:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7348,61 +5047,52 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pvduynDWrrVKHKjK/NuRzaiRqTU7tkgvZHwpGfTUL0q78wmwRAAcuhjl6hMr98FSmrjlCIdBWRBsU6ZRmfIU+g==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "827" - ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4d80c1e9-8229-4c07-a659-d14cb480153f" + "754d2205-e6de-4780-a900-c4cda54a3fec" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pvduynDWrrVKHKjK/NuRzaiRqTU7tkgvZHwpGfTUL0q78wmwRAAcuhjl6hMr98FSmrjlCIdBWRBsU6ZRmfIU+g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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": [ - "1126" + "522" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8f4c7c3e-7225-4528-8ef7-70c1966c7b16" + "63b66dea-abed-4418-8c50-b38fcb703679" ], "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": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" ], "x-ms-correlation-request-id": [ - "57b97430-1926-4f96-bc9f-17eb2d389541" + "363b2cc6-8c51-467e-941f-8bae57285588" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075117Z:57b97430-1926-4f96-bc9f-17eb2d389541" + "WESTEUROPE:20160103T135527Z:363b2cc6-8c51-467e-941f-8bae57285588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:16 GMT" + "Sun, 03 Jan 2016 13:55:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7420,7 +5110,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "40723f20-3a8e-4fd2-a18a-787df8276446" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -7432,7 +5122,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "255389df-a12a-40d2-a813-be33a51c17a1" + "ef8e1809-198b-41f1-a775-177daa4028ea" ], "X-Content-Type-Options": [ "nosniff" @@ -7441,13 +5131,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14911" ], "x-ms-correlation-request-id": [ - "99df9210-fbd1-4293-aba3-1bdcf4b5f9f7" + "a196c160-6e6e-4bfc-bf01-41b20f7e70fb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075118Z:99df9210-fbd1-4293-aba3-1bdcf4b5f9f7" + "WESTEUROPE:20160103T135529Z:a196c160-6e6e-4bfc-bf01-41b20f7e70fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7456,7 +5146,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:17 GMT" + "Sun, 03 Jan 2016 13:55:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7474,7 +5164,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "ec778c3a-fbf6-49a1-aa01-04a663bd9c7e" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -7486,7 +5176,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d1e9b289-9fa9-469a-9a49-152358fe2554" + "cd4d0385-7b6c-4b3c-9f4e-3b0812ea4588" ], "X-Content-Type-Options": [ "nosniff" @@ -7495,13 +5185,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14909" ], "x-ms-correlation-request-id": [ - "4013e45d-ec4f-44f3-8768-ff07cb5af839" + "6788c83b-d1c2-4078-98c5-e6261391012d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075120Z:4013e45d-ec4f-44f3-8768-ff07cb5af839" + "WESTEUROPE:20160103T135534Z:6788c83b-d1c2-4078-98c5-e6261391012d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7510,7 +5200,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:19 GMT" + "Sun, 03 Jan 2016 13:55:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7528,7 +5218,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7bf86856-dcf1-4a74-a56b-5de3eb99201e" + "0fb174a8-875c-4740-b480-31db56926095" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -7540,7 +5230,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4ad360f0-60b5-416b-9bca-2c6e4d4ffa9f" + "38e854ad-749a-48d5-a3b7-87aa36a0aa98" ], "X-Content-Type-Options": [ "nosniff" @@ -7549,13 +5239,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14907" ], "x-ms-correlation-request-id": [ - "fcee3e34-3c16-4feb-b297-0e43fe7c144b" + "5b4d836b-a296-4ee6-af2e-a24072cb5d08" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075125Z:fcee3e34-3c16-4feb-b297-0e43fe7c144b" + "WESTEUROPE:20160103T135536Z:5b4d836b-a296-4ee6-af2e-a24072cb5d08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7564,7 +5254,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:25 GMT" + "Sun, 03 Jan 2016 13:55:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7582,7 +5272,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "0fb174a8-875c-4740-b480-31db56926095" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -7594,7 +5284,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c99fc4b4-b213-4ba3-bcf6-868ddc5a7641" + "98f6f04b-489e-439d-9742-1dccccc36bb0" ], "X-Content-Type-Options": [ "nosniff" @@ -7603,13 +5293,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14905" ], "x-ms-correlation-request-id": [ - "3359d09b-970a-4586-80f0-dd67e9a1e14a" + "ad8bc77e-4db6-4ede-a4f1-646a787a362c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075127Z:3359d09b-970a-4586-80f0-dd67e9a1e14a" + "WESTEUROPE:20160103T135538Z:ad8bc77e-4db6-4ede-a4f1-646a787a362c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7618,7 +5308,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:27 GMT" + "Sun, 03 Jan 2016 13:55:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7636,7 +5326,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "f1ea5b12-ab95-4557-93c4-d366e453575d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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}", @@ -7648,7 +5338,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "39a7c4b0-77a3-455e-af3c-b65b9c2c8c3f" + "b3c27bb6-e375-4918-9e88-6f36212d9e13" ], "X-Content-Type-Options": [ "nosniff" @@ -7657,13 +5347,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14903" ], "x-ms-correlation-request-id": [ - "09c5474b-4f4a-42d7-ae2f-4d022633116f" + "14b40900-cba7-4435-9444-995a34cf5f3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075129Z:09c5474b-4f4a-42d7-ae2f-4d022633116f" + "WESTEUROPE:20160103T135544Z:14b40900-cba7-4435-9444-995a34cf5f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7672,7 +5362,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:29 GMT" + "Sun, 03 Jan 2016 13:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7681,8 +5371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7690,19 +5380,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bd5c480a-f7c3-4cad-8f95-4a696237929d" + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "468" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "27b4cf47-b7e2-4e70-b97c-e1a8fe7550de" + "7669c842-e3fd-4369-b1cc-f50f0732821e" ], "X-Content-Type-Options": [ "nosniff" @@ -7710,23 +5400,23 @@ "DataServiceVersion": [ "3.0;" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14922" ], "x-ms-correlation-request-id": [ - "1f745008-e414-4e49-b7db-14fc32bc1817" + "80ce4728-ac56-4f26-a22d-bfc593527ee0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075134Z:1f745008-e414-4e49-b7db-14fc32bc1817" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135513Z:80ce4728-ac56-4f26-a22d-bfc593527ee0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:34 GMT" + "Sun, 03 Jan 2016 13:55:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7735,8 +5425,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7744,19 +5434,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed2dd22c-a435-471f-8f8b-76c9f4e82658" + "a7ebc8c4-dce3-4062-ba72-3ac86459dbb1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "537" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cf4388fc-de38-4bb3-ac7a-d1b01b7087e9" + "23d6e889-76e0-4650-a02c-6731d33bbee7" ], "X-Content-Type-Options": [ "nosniff" @@ -7764,23 +5454,23 @@ "DataServiceVersion": [ "3.0;" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14918" ], "x-ms-correlation-request-id": [ - "45aa0d3b-2c89-4f25-867a-38cc7195ba0c" + "40c9f057-2cb6-4274-be1c-b71bd3ab061b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075136Z:45aa0d3b-2c89-4f25-867a-38cc7195ba0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135519Z:40c9f057-2cb6-4274-be1c-b71bd3ab061b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:36 GMT" + "Sun, 03 Jan 2016 13:55:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7789,8 +5479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7798,19 +5488,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a4567ec-84cd-4f77-8979-53091b8f106a" + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\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/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "537" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1a8d72b0-e68a-4942-a41b-7c1811e72a02" + "f7506f54-22a3-45d0-81cf-0c7cbc6e1551" ], "X-Content-Type-Options": [ "nosniff" @@ -7818,23 +5508,23 @@ "DataServiceVersion": [ "3.0;" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14916" ], "x-ms-correlation-request-id": [ - "7ec8c30d-1771-43cc-a614-35598e60663e" + "ef5332c8-ebf8-475d-aef4-a58fdfad0bdc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075141Z:7ec8c30d-1771-43cc-a614-35598e60663e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135521Z:ef5332c8-ebf8-475d-aef4-a58fdfad0bdc" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:41 GMT" + "Sun, 03 Jan 2016 13:55:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7852,19 +5542,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "754d2205-e6de-4780-a900-c4cda54a3fec" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "580" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c0a7cf9d-5aa3-46cc-affe-5f0993f5c739" + "1e77d6ac-d182-4ca7-b933-8862f0c7d146" ], "X-Content-Type-Options": [ "nosniff" @@ -7876,19 +5566,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14912" ], "x-ms-correlation-request-id": [ - "0cf0a597-5ae8-4d7e-8d4d-eafc782a397e" + "468e68fa-1331-4d6a-9c12-bfe323d59427" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075120Z:0cf0a597-5ae8-4d7e-8d4d-eafc782a397e" + "WESTEUROPE:20160103T135529Z:468e68fa-1331-4d6a-9c12-bfe323d59427" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:19 GMT" + "Sun, 03 Jan 2016 13:55:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7906,19 +5596,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7bf86856-dcf1-4a74-a56b-5de3eb99201e" + "40723f20-3a8e-4fd2-a18a-787df8276446" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "580" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "54309951-4afa-4e32-8d6d-b19ab1d940ac" + "768771a5-46b0-4dbe-a322-42bb567e2a87" ], "X-Content-Type-Options": [ "nosniff" @@ -7930,19 +5620,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14910" ], "x-ms-correlation-request-id": [ - "2d28dcb6-fbb7-45c1-a0fc-a38d6283803c" + "d9db10e8-664f-4a6d-b37c-d4e6a0f30b75" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075127Z:2d28dcb6-fbb7-45c1-a0fc-a38d6283803c" + "WESTEUROPE:20160103T135531Z:d9db10e8-664f-4a6d-b37c-d4e6a0f30b75" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:27 GMT" + "Sun, 03 Jan 2016 13:55:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7960,19 +5650,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "ec778c3a-fbf6-49a1-aa01-04a663bd9c7e" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "581" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "40162cd6-5fc0-4a05-ad18-9f108e816502" + "a0e87175-0b43-44d4-9ecd-a84ee1680715" ], "X-Content-Type-Options": [ "nosniff" @@ -7984,19 +5674,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14908" ], "x-ms-correlation-request-id": [ - "a28d7b40-27be-42a6-8ffc-6472b32acd7b" + "4a4004b6-3cd7-48bd-88f3-6995b521fd95" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075129Z:a28d7b40-27be-42a6-8ffc-6472b32acd7b" + "WESTEUROPE:20160103T135536Z:4a4004b6-3cd7-48bd-88f3-6995b521fd95" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:29 GMT" + "Sun, 03 Jan 2016 13:55:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8014,19 +5704,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bd5c480a-f7c3-4cad-8f95-4a696237929d" + "0fb174a8-875c-4740-b480-31db56926095" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi,Client_GEO_Anomaly,Failed_Logins_Anomaly,Failed_Queries_Anomaly,Data_Extraction_Anomaly,Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "581" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cc105520-a835-4df0-b551-f9fb64dc3676" + "f7d00758-062e-4ac2-b1df-77ec3896203f" ], "X-Content-Type-Options": [ "nosniff" @@ -8038,19 +5728,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14906" ], "x-ms-correlation-request-id": [ - "7fb86121-c13d-487d-8c80-19c2fcce7736" + "a863a799-8897-48b8-b89c-e6748cb49616" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075136Z:7fb86121-c13d-487d-8c80-19c2fcce7736" + "WESTEUROPE:20160103T135538Z:a863a799-8897-48b8-b89c-e6748cb49616" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:35 GMT" + "Sun, 03 Jan 2016 13:55:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8068,19 +5758,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed2dd22c-a435-471f-8f8b-76c9f4e82658" + "f1ea5b12-ab95-4557-93c4-d366e453575d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi,Client_GEO_Anomaly,Failed_Logins_Anomaly,Failed_Queries_Anomaly,Data_Extraction_Anomaly,Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "510" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "838771e1-afaf-401f-baaa-6565be33ff6e" + "f7e63eef-f3e7-401c-962c-d13e8e9ac8e8" ], "X-Content-Type-Options": [ "nosniff" @@ -8092,19 +5782,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14902" ], "x-ms-correlation-request-id": [ - "cc632e1a-34d0-4fb1-931d-41dbc4405200" + "ce293dc5-ea41-4f55-88ab-f2cafcbcd08f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075138Z:cc632e1a-34d0-4fb1-931d-41dbc4405200" + "WESTEUROPE:20160103T135546Z:ce293dc5-ea41-4f55-88ab-f2cafcbcd08f" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:38 GMT" + "Sun, 03 Jan 2016 13:55:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8115,50 +5805,59 @@ { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "208" + ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a4567ec-84cd-4f77-8979-53091b8f106a" + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi,Client_GEO_Anomaly,Failed_Logins_Anomaly,Failed_Queries_Anomaly,Data_Extraction_Anomaly,Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "519" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5070a241-f2fd-45cc-871f-b0e3e2d7467a" + "3ee70506-c669-40eb-857b-6edbf5a65c64" ], "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": [ - "14928" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "3609dcb7-8197-4038-931e-f23b38a15b18" + "6a461b0a-b314-43ec-9fb3-6aa03dbfd0bd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075143Z:3609dcb7-8197-4038-931e-f23b38a15b18" + "WESTEUROPE:20160103T135517Z:6a461b0a-b314-43ec-9fb3-6aa03dbfd0bd" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:42 GMT" + "Sun, 03 Jan 2016 13:55:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8170,31 +5869,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "211" + "251" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "12ed87e8-d2ac-433c-b63c-9d3b901c1492" + "a97d6b84-1a59-4e64-8375-5589229169c9" ], "X-Content-Type-Options": [ "nosniff" @@ -8212,16 +5911,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "c14ea4a1-34bc-4c63-bf4e-f123beedd90d" + "4f8fd5de-b923-480c-8929-805e036aab14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075125Z:c14ea4a1-34bc-4c63-bf4e-f123beedd90d" + "WESTEUROPE:20160103T135527Z:4f8fd5de-b923-480c-8929-805e036aab14" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:25 GMT" + "Sun, 03 Jan 2016 13:55:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8233,31 +5932,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "323" + "252" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "40723f20-3a8e-4fd2-a18a-787df8276446" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "634" + "563" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "19e3834b-a214-4a2c-8546-18779faacc5e" + "27285547-54bb-4246-bcfa-da0b59dc017d" ], "X-Content-Type-Options": [ "nosniff" @@ -8275,16 +5974,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "dbfa2369-8dfa-4a1d-9f16-922b9a680818" + "3ece6aa1-5f8d-47bf-9fab-bc3ea0a23893" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075134Z:dbfa2369-8dfa-4a1d-9f16-922b9a680818" + "WESTEUROPE:20160103T135534Z:3ece6aa1-5f8d-47bf-9fab-bc3ea0a23893" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:33 GMT" + "Sun, 03 Jan 2016 13:55:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8296,31 +5995,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "181" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed2dd22c-a435-471f-8f8b-76c9f4e82658" + "0fb174a8-875c-4740-b480-31db56926095" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "635" + "492" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3bf08431-e664-406e-a776-1ac6a3bdf690" + "33450b15-5281-4125-af67-a21246776557" ], "X-Content-Type-Options": [ "nosniff" @@ -8338,16 +6037,16 @@ "1193" ], "x-ms-correlation-request-id": [ - "79ac4a19-a338-46b0-8060-ea0be6ab5db3" + "4a68f1d3-72f0-4919-b15a-bb6f0ceeabd1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075141Z:79ac4a19-a338-46b0-8060-ea0be6ab5db3" + "WESTEUROPE:20160103T135544Z:4a68f1d3-72f0-4919-b15a-bb6f0ceeabd1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:40 GMT" + "Sun, 03 Jan 2016 13:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8359,7 +6058,7 @@ "Names": {}, "Variables": { "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c", - "User": "yrubin@microsoft.com", + "User": "yaiyun@microsoft.com", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs b/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs index bc84968145f2..e67adf5e1ad1 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs @@ -60,24 +60,18 @@ public class SecurityConstants public const string Disabled = "Disabled"; // Threat Detection disabled types: - public const string Successful_SQLi = "Successful_SQLi"; - public const string Attempted_SQLi = "Attempted_SQLi"; - public const string Client_GEO_Anomaly = "Client_GEO_Anomaly"; - public const string Failed_Logins_Anomaly = "Failed_Logins_Anomaly"; - public const string Failed_Queries_Anomaly = "Failed_Queries_Anomaly"; - public const string Data_Extraction_Anomaly = "Data_Extraction_Anomaly"; - public const string Data_Alteration_Anomaly = "Data_Alteration_Anomaly"; + public const string Sql_Injection = "Sql_Injection"; + public const string Sql_Injection_Vulnerability = "Sql_Injection_Vulnerability"; + public const string Access_Anomaly = "Access_Anomaly"; + public const string Usage_Anomaly = "Usage_Anomaly"; public static readonly Dictionary ExcludedDetectionToExcludedDetectionTypes = new Dictionary { - {Successful_SQLi, DetectionType.Successful_SQLi}, - {Attempted_SQLi, DetectionType.Attempted_SQLi}, - {Client_GEO_Anomaly, DetectionType.Client_GEO_Anomaly}, - {Failed_Logins_Anomaly, DetectionType.Failed_Logins_Anomaly}, - {Failed_Queries_Anomaly, DetectionType.Failed_Queries_Anomaly}, - {Data_Extraction_Anomaly, DetectionType.Data_Extraction_Anomaly}, - {Data_Alteration_Anomaly, DetectionType.Data_Alteration_Anomaly}, + {Sql_Injection, DetectionType.Sql_Injection}, + {Sql_Injection_Vulnerability, DetectionType.Sql_Injection_Vulnerability}, + {Access_Anomaly, DetectionType.Access_Anomaly}, + {Usage_Anomaly, DetectionType.Usage_Anomaly} }; // Masking functions diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs index 8bc565d58609..987709396c02 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/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.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -195,6 +195,15 @@ internal static string InvalidEventTypeSet { } } + /// + /// Looks up a localized string similar to Cannot use the '{0}' option with other excluded detection types.. + /// + internal static string InvalidExcludedDetectionTypeSet { + get { + return ResourceManager.GetString("InvalidExcludedDetectionTypeSet", resourceCulture); + } + } + /// /// Looks up a localized string similar to Please use Set-AzureRmEnvironment to set a valid GraphEndpoint for the current AzureEnvironment.. /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx index c41aaa5c9c62..e5ce2897ef8d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx @@ -273,4 +273,7 @@ In order to enable Threat Detection, please enable database auditing. + + Cannot use the '{0}' option with other excluded detection types. + \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs b/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs index 12b136075026..65d5aaeba65b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs @@ -78,14 +78,41 @@ internal static string[] ProcessAuditEvents(string[] eventTypes) { if (eventTypes.Contains(SecurityConstants.All)) { - throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidEventTypeSet, SecurityConstants.All)); + throw new Exception(string.Format(Properties.Resources.InvalidEventTypeSet, SecurityConstants.All)); } if (eventTypes.Contains(SecurityConstants.None)) { - throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidEventTypeSet, SecurityConstants.None)); + throw new Exception(string.Format(Properties.Resources.InvalidEventTypeSet, SecurityConstants.None)); } } return eventTypes; - } + } + + /// + /// In cases where the user decided to use the shortcut NONE, this method sets the value of the ExcludedDetectionType property to reflect the correct values. + /// + internal static string[] ProcessExcludedDetectionTypes(string[] excludedDetectionTypes) + { + if (excludedDetectionTypes == null || excludedDetectionTypes.Length == 0) + { + return excludedDetectionTypes; + } + + if (excludedDetectionTypes.Length == 1) + { + if (excludedDetectionTypes[0] == SecurityConstants.None) + { + return new string[] { }; + } + } + else + { + if (excludedDetectionTypes.Contains(SecurityConstants.None)) + { + throw new Exception(string.Format(Properties.Resources.InvalidExcludedDetectionTypeSet, SecurityConstants.None)); + } + } + return excludedDetectionTypes; + } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs index 93b9aa3e7995..26de7815a990 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs @@ -17,6 +17,7 @@ using System.Management.Automation; using System.Text.RegularExpressions; using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.Services; using Microsoft.Azure.Commands.Sql.ThreatDetection.Model; namespace Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet @@ -50,7 +51,9 @@ public class SetAzureSqlDatabaseThreatDetection : SqlDatabaseThreatDetectionCmdl /// Gets or sets the names of the detection types to filter. /// [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Detection types to exclude")] - [ValidateSet(SecurityConstants.Successful_SQLi, SecurityConstants.Attempted_SQLi, SecurityConstants.Client_GEO_Anomaly, SecurityConstants.Failed_Logins_Anomaly, SecurityConstants.Failed_Queries_Anomaly, SecurityConstants.Data_Extraction_Anomaly, SecurityConstants.Data_Alteration_Anomaly, IgnoreCase = false)] + [ValidateSet(SecurityConstants.Sql_Injection, + SecurityConstants.Sql_Injection_Vulnerability, SecurityConstants.Access_Anomaly, + SecurityConstants.Usage_Anomaly, SecurityConstants.None, IgnoreCase = false)] public string[] ExcludedDetectionType { get; set; } /// @@ -79,6 +82,8 @@ protected override DatabaseThreatDetectionPolicyModel ApplyUserInputToModel(Data model.EmailAdmins = (bool)EmailAdmins; } + ExcludedDetectionType = Util.ProcessExcludedDetectionTypes(ExcludedDetectionType); + if (ExcludedDetectionType != null) { model.ExcludedDetectionTypes = ExcludedDetectionType.Select(s => SecurityConstants.ExcludedDetectionToExcludedDetectionTypes[s]).ToArray(); diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs index 4f3bc69ba7ef..e53f1926a48c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs @@ -13,7 +13,6 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Sql.Common; -using Microsoft.Azure.Commands.Sql.Auditing.Services; using Microsoft.Azure.Commands.Sql.ThreatDetection.Model; using Microsoft.Azure.Commands.Sql.ThreatDetection.Services; using Microsoft.Azure.Common.Authentication.Models; diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs index 91a9d451092a..36fbcaf0cbae 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs @@ -24,13 +24,10 @@ public enum ThreatDetectionStateType { Enabled, Disabled, New }; /// public enum DetectionType { - Successful_SQLi, - Attempted_SQLi, - Client_GEO_Anomaly, - Failed_Logins_Anomaly, - Failed_Queries_Anomaly, - Data_Extraction_Anomaly, - Data_Alteration_Anomaly + Sql_Injection, + Sql_Injection_Vulnerability, + Access_Anomaly, + Usage_Anomaly, }; /// diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs index 9f9feeac5b4d..7ef6cac7e05a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs @@ -132,14 +132,13 @@ private bool ModelizeThreatDetectionEmailAdmins(string emailAccountAdminsState) /// private void ModelizeDisabledAlerts(DatabaseThreatDetectionPolicyModel model, string disabledAlerts) { + List disabledAlertsArray = disabledAlerts.Split(';').Select(p => p.Trim()).ToList(); + HashSet detectionTypes = new HashSet(); - if (disabledAlerts.IndexOf(SecurityConstants.Successful_SQLi) != -1) detectionTypes.Add(DetectionType.Successful_SQLi); - if (disabledAlerts.IndexOf(SecurityConstants.Attempted_SQLi) != -1) detectionTypes.Add(DetectionType.Attempted_SQLi); - if (disabledAlerts.IndexOf(SecurityConstants.Client_GEO_Anomaly) != -1) detectionTypes.Add(DetectionType.Client_GEO_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Failed_Logins_Anomaly) != -1) detectionTypes.Add(DetectionType.Failed_Logins_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Failed_Queries_Anomaly) != -1) detectionTypes.Add(DetectionType.Failed_Queries_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Data_Extraction_Anomaly) != -1) detectionTypes.Add(DetectionType.Data_Extraction_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Data_Alteration_Anomaly) != -1) detectionTypes.Add(DetectionType.Data_Alteration_Anomaly); + if (disabledAlertsArray.Contains(SecurityConstants.Sql_Injection)) detectionTypes.Add(DetectionType.Sql_Injection); + if (disabledAlertsArray.Contains(SecurityConstants.Sql_Injection_Vulnerability)) detectionTypes.Add(DetectionType.Sql_Injection_Vulnerability); + if (disabledAlertsArray.Contains(SecurityConstants.Access_Anomaly)) detectionTypes.Add(DetectionType.Access_Anomaly); + if (disabledAlertsArray.Contains(SecurityConstants.Usage_Anomaly)) detectionTypes.Add(DetectionType.Usage_Anomaly); model.ExcludedDetectionTypes = detectionTypes.ToArray(); } @@ -212,37 +211,25 @@ private string ExtractExcludedDetectionType(BaseThreatDetectionPolicyModel model } StringBuilder detectionTypes = new StringBuilder(); - if (IsDetectionTypeOn(DetectionType.Successful_SQLi, model.ExcludedDetectionTypes)) - { - detectionTypes.Append(SecurityConstants.Successful_SQLi).Append(";"); - } - if (IsDetectionTypeOn(DetectionType.Attempted_SQLi, model.ExcludedDetectionTypes)) - { - detectionTypes.Append(SecurityConstants.Attempted_SQLi).Append(";"); - } - if (IsDetectionTypeOn(DetectionType.Client_GEO_Anomaly, model.ExcludedDetectionTypes)) - { - detectionTypes.Append(SecurityConstants.Client_GEO_Anomaly).Append(";"); - } - if (IsDetectionTypeOn(DetectionType.Failed_Logins_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Sql_Injection, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Failed_Logins_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Sql_Injection).Append(";"); } - if (IsDetectionTypeOn(DetectionType.Failed_Queries_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Sql_Injection_Vulnerability, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Failed_Queries_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Sql_Injection_Vulnerability).Append(";"); } - if (IsDetectionTypeOn(DetectionType.Data_Extraction_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Access_Anomaly, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Data_Extraction_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Access_Anomaly).Append(";"); } - if (IsDetectionTypeOn(DetectionType.Data_Alteration_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Usage_Anomaly, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Data_Alteration_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Usage_Anomaly).Append(";"); } if (detectionTypes.Length != 0) { - detectionTypes.Remove(detectionTypes.Length - 1, 1); // remove trailing comma + detectionTypes.Remove(detectionTypes.Length - 1, 1); // remove trailing semi-colon } return detectionTypes.ToString(); }