diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs index eaf88888c44e..7c734a8394d9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs @@ -24,16 +24,15 @@ public BatchAccountTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need service team to re-record test after changes to the ClientRuntime.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - [Trait("Re-record", "ClientRuntime changes")] public void TestBatchAccountEndToEnd() { BatchController.NewInstance.RunPsTest("Test-BatchAccountEndToEnd"); } [Fact] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestListNodeAgentSkus() { BatchController.NewInstance.RunPsTest("Test-GetBatchNodeAgentSkus"); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchApplicationPackageTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchApplicationPackageTests.cs index a0ed00679d1a..085247647cd0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchApplicationPackageTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchApplicationPackageTests.cs @@ -26,7 +26,7 @@ public class BatchApplicationPackageTests : WindowsAzure.Commands.Test.Utilities private const string version = "foo"; [Fact] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestUploadApplicationPackage() { string id = "newApplicationPackage"; @@ -56,7 +56,7 @@ public void TestUploadApplicationPackage() } [Fact] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestUpdateApplicationPackage() { string id = "updateApplicationPackage"; @@ -85,8 +85,8 @@ public void TestUpdateApplicationPackage() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreatePoolWithApplicationPackage() { string id = "createPoolWithApplicationPackage"; @@ -114,8 +114,8 @@ public void TestCreatePoolWithApplicationPackage() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestUpdatePoolWithApplicationPackage() { string id = "updatePoolWithApplicationPackage"; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.cs index 5f984ee58199..deae77fb9c28 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.cs @@ -27,15 +27,15 @@ public CertificateTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCertificateCrudOperations() { BatchController.NewInstance.RunPsTest("Test-CertificateCrudOperations"); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCancelCertificateDelete() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.ps1 index 08c2ca4a6ef5..8c141e056be7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/CertificateTests.ps1 @@ -22,8 +22,11 @@ function Test-CertificateCrudOperations $thumbprintAlgorithm = "sha1" $localDir = ($pwd).Path # Use $pwd to get the local directory. If $pwd is not used, paths are relative to [Environment]::CurrentDirectory, which can be different - $certPath = $localDir + "\Resources\BatchTestCert01.cer" - $x509cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 -ArgumentList $certPath + + $certPathVs = $localDir + "/Resources/BatchTestCert01.cer" + # $certPathConsole = [System.IO.Path]::GetDirectoryName($PSScriptRoot) + "/Resources/BatchTestCert01.cer" + # $certPath = if (Test-Path $certPathVs -PathType Leaf) { $certPathVs } Else { $certPathConsole } + $x509cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 -ArgumentList $certPathVs # Add the cert $x509cert | New-AzureBatchCertificate -BatchContext $context diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/Common.ps1 index 06ac6c87a778..1c18a262b3e6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/Common.ps1 @@ -24,6 +24,19 @@ function Start-TestSleep($milliseconds) } } +function Compute-TestTimeout($seconds) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -eq [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + # Timeout of 3 hours, to deal with long delays in recording framework + return 60 * 24 * 3 + } + else + { + return $seconds + } +} + <# .SYNOPSIS Gets a Batch account name for testing. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs index 66ab0d65d6ab..23cbc4f94420 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs @@ -28,8 +28,8 @@ public ComputeNodeTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoveComputeNodes() { BatchController controller = BatchController.NewInstance; @@ -51,8 +51,8 @@ public void TestRemoveComputeNodes() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRebootAndReimageComputeNode() { BatchController controller = BatchController.NewInstance; @@ -74,8 +74,8 @@ public void TestRebootAndReimageComputeNode() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDisableAndEnableComputeNodeScheduling() { BatchController controller = BatchController.NewInstance; @@ -94,8 +94,8 @@ public void TestDisableAndEnableComputeNodeScheduling() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetComputeNodeRemoteLoginSettings() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 index 44081b4806d5..5d47e442d42b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.ps1 @@ -35,7 +35,8 @@ function Test-RemoveComputeNodes $select = "id,state" $computeNodes = Get-AzureBatchComputeNode -PoolId $poolId -Select $select -BatchContext $context $start = [DateTime]::Now - $end = $start.AddSeconds(30) + $timeout = Compute-TestTimeout 30 + $end = $start.AddSeconds($timeout) while ($computeNodes[0].State -ne 'LeavingPool' -and $computeNodes[1].State -ne 'LeavingPool') { if ([DateTime]::Now -gt $end) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs index 895316948c2f..d30386a45b07 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs @@ -27,8 +27,8 @@ public ComputeNodeUserTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestComputeNodeUserEndToEnd() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs index a1a8302ee78b..d44a79477495 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs @@ -29,8 +29,8 @@ public FileTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetNodeFileContentByTask() { BatchController controller = BatchController.NewInstance; @@ -57,8 +57,8 @@ public void TestGetNodeFileContentByTask() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetNodeFileContentByComputeNode() { BatchController controller = BatchController.NewInstance; @@ -76,8 +76,8 @@ public void TestGetNodeFileContentByComputeNode() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetRemoteDesktopProtocolFile() { BatchController controller = BatchController.NewInstance; @@ -95,8 +95,8 @@ public void TestGetRemoteDesktopProtocolFile() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDeleteNodeFileByTask() { BatchController controller = BatchController.NewInstance; @@ -122,8 +122,8 @@ public void TestDeleteNodeFileByTask() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDeleteNodeFileByComputeNode() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs index a8b220968c15..d11f0b7ba8c7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs @@ -25,16 +25,16 @@ public JobScheduleTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestJobScheduleCRUD() { BatchController.NewInstance.RunPsTest("Test-JobScheduleCRUD"); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDisableEnableTerminateJobSchedule() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs index c6792fda647a..d36cca734cbc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs @@ -27,16 +27,16 @@ public JobTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestJobCRUD() { BatchController.NewInstance.RunPsTest("Test-JobCRUD"); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDisableEnableTerminateJob() { BatchController controller = BatchController.NewInstance; @@ -58,8 +58,8 @@ public void TestDisableEnableTerminateJob() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs index 44e311276f75..746ecaf76884 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs @@ -30,15 +30,15 @@ public PoolTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPoolCRUD() { BatchController.NewInstance.RunPsTest("Test-PoolCRUD"); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestResizeAndStopResizePool() { BatchController controller = BatchController.NewInstance; @@ -59,8 +59,8 @@ public void TestResizeAndStopResizePool() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAutoScaleActions() { BatchController controller = BatchController.NewInstance; @@ -81,8 +81,8 @@ public void TestAutoScaleActions() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestChangeOSVersion() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs index 6a035d95f0fb..e2c81167360b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs @@ -96,7 +96,8 @@ public static string AddTestCertificate(BatchController controller, BatchAccount { PSCertificate existingCert = client.ListCertificates(getParameters).FirstOrDefault(); DateTime start = DateTime.Now; - DateTime end = start.AddMinutes(5); + TimeSpan timeout = GetTimeout(TimeSpan.FromMinutes(5)); + DateTime end = start.Add(timeout); // Cert might still be deleting from other tests, so we wait for the delete to finish. while (existingCert != null && existingCert.State == CertificateState.Deleting) @@ -153,7 +154,7 @@ public static void WaitForCertificateToFailDeletion(BatchController controller, PSCertificate cert = client.ListCertificates(parameters).First(); - DateTime timeout = DateTime.Now.AddMinutes(2); + DateTime timeout = DateTime.Now.Add(GetTimeout(TimeSpan.FromMinutes(2))); while (cert.State != CertificateState.DeleteFailed) { if (DateTime.Now > timeout) @@ -261,7 +262,7 @@ public static void WaitForSteadyPoolAllocation(BatchController controller, Batch PoolId = poolId }; - DateTime timeout = DateTime.Now.AddMinutes(5); + DateTime timeout = DateTime.Now.Add(GetTimeout(TimeSpan.FromMinutes(5))); PSCloudPool pool = client.ListPools(options).First(); while (pool.AllocationState != AllocationState.Steady) { @@ -346,7 +347,7 @@ public static void CreateTestJob(BatchController controller, BatchAccountContext /// public static string WaitForRecentJob(BatchController controller, BatchAccountContext context, string jobScheduleId, string previousJob = null) { - DateTime timeout = DateTime.Now.AddMinutes(2); + DateTime timeout = DateTime.Now.Add(GetTimeout(TimeSpan.FromMinutes(2))); BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); ListJobScheduleOptions options = new ListJobScheduleOptions(context) @@ -507,7 +508,7 @@ public static void WaitForIdleComputeNode(BatchController controller, BatchAccou Select = "id,state" }; - DateTime timeout = DateTime.Now.AddMinutes(5); + DateTime timeout = DateTime.Now.Add(GetTimeout(TimeSpan.FromMinutes(10))); PSComputeNode computeNode = client.ListComputeNodes(options).First(); while (computeNode.State != ComputeNodeState.Idle) { @@ -601,5 +602,15 @@ private static void Sleep(int milliseconds) Thread.Sleep(milliseconds); } } + + private static TimeSpan GetTimeout(TimeSpan timeout) + { + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + return TimeSpan.FromHours(3); + } + + return timeout; + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs index 66e6032cede3..f69bbaf933bb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs @@ -25,8 +25,8 @@ public TaskTests(Xunit.Abstractions.ITestOutputHelper output) ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output)); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestTaskCRUD() { BatchController controller = BatchController.NewInstance; @@ -47,8 +47,8 @@ public void TestTaskCRUD() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateTaskCollection() { BatchController controller = BatchController.NewInstance; @@ -69,8 +69,8 @@ public void TestCreateTaskCollection() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestTerminateTask() { BatchController controller = BatchController.NewInstance; @@ -96,8 +96,8 @@ public void TestTerminateTask() TestUtilities.GetCurrentMethodName()); } - [Fact(Skip = "Need Batch team to re-record failing test. See the following issue: https://github.com/Azure/azure-powershell/issues/5006")] - [Trait(Category.AcceptanceType, Category.Flaky)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestListAllSubtasks() { BatchController controller = BatchController.NewInstance; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json index 64c93d9d4789..768711b680da 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2678" + "2746" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,29 +28,32 @@ "14999" ], "x-ms-request-id": [ - "03268dc5-6ee8-4055-a9e2-79fa7f0dc246" + "f12286f8-998d-44cc-8e95-64b5a4693b3a" ], "x-ms-correlation-request-id": [ - "03268dc5-6ee8-4055-a9e2-79fa7f0dc246" + "f12286f8-998d-44cc-8e95-64b5a4693b3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014908Z:03268dc5-6ee8-4055-a9e2-79fa7f0dc246" + "WESTUS2:20180606T011607Z:f12286f8-998d-44cc-8e95-64b5a4693b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:07 GMT" + "Wed, 06 Jun 2018 01:16:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/ps5930?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL3BzNTkzMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/ps9651?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL3BzOTY1MT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -64,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930\",\r\n \"name\": \"ps5930\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651\",\r\n \"name\": \"ps9651\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "165" @@ -82,29 +85,32 @@ "1199" ], "x-ms-request-id": [ - "7aec44d5-99d7-4a50-b5d7-a1ecb299fc87" + "06be8674-7699-43a0-a08e-98a454887fe3" ], "x-ms-correlation-request-id": [ - "7aec44d5-99d7-4a50-b5d7-a1ecb299fc87" + "06be8674-7699-43a0-a08e-98a454887fe3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014910Z:7aec44d5-99d7-4a50-b5d7-a1ecb299fc87" + "WESTUS2:20180606T011608Z:06be8674-7699-43a0-a08e-98a454887fe3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:09 GMT" + "Wed, 06 Jun 2018 01:16:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -115,13 +121,13 @@ "72" ], "x-ms-client-request-id": [ - "77065fab-21d4-415d-b3ef-a2c4da85536e" + "3cfd019e-2332-421f-9f96-06d49bb81bc9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" @@ -142,7 +148,7 @@ "15" ], "x-ms-request-id": [ - "8548c8be-0921-4635-80d8-2701a45eda23" + "066a8a3d-4657-4ac7-a439-78acc6164ee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,19 +160,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "5b23fa7b-7d70-4725-bb55-14c878084bfe" + "134cbeaf-6748-49f7-a49a-b5547ab4c135" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014915Z:5b23fa7b-7d70-4725-bb55-14c878084bfe" + "WESTUS2:20180606T011610Z:134cbeaf-6748-49f7-a49a-b5547ab4c135" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:15 GMT" + "Wed, 06 Jun 2018 01:16:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/operationResults/066a8a3d-4657-4ac7-a439-78acc6164ee1?api-version=2017-01-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -175,8 +181,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "RequestHeaders": { @@ -187,22 +193,22 @@ "72" ], "x-ms-client-request-id": [ - "62291a45-644d-42aa-9350-e0db41104c5f" + "22b13825-900f-4f70-9a1c-c6238555c50b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -210,2774 +216,17 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "e4bc90e3-9737-4df5-a2b7-f38055de8f25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-correlation-request-id": [ - "7f68e9dc-6339-425d-9990-8d0278fbb2b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014920Z:7f68e9dc-6339-425d-9990-8d0278fbb2b5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:20 GMT" - ], - "ETag": [ - "0x8D536CB68BBC0B4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "ea525fb3-bfa8-4add-8d89-561ed8722e30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "e5849e75-55b0-4ba1-9943-85bdcdfceec0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014915Z:e5849e75-55b0-4ba1-9943-85bdcdfceec0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "7bf3ff7c-2878-465d-aaa5-972d10d6acc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "cde5a073-d1cd-48b9-8faa-8d631206f149" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014915Z:cde5a073-d1cd-48b9-8faa-8d631206f149" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "654bf104-93d3-49a4-8eb9-f585f43e1479" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "c7333a96-cae3-4c80-b536-fad7aaf22fde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014915Z:c7333a96-cae3-4c80-b536-fad7aaf22fde" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "0b55fbb7-cf26-4646-95c7-2f9be9556bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-correlation-request-id": [ - "b683b4ab-d850-4b93-a262-7e27a670f620" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014915Z:b683b4ab-d850-4b93-a262-7e27a670f620" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "dab4dff8-66cb-4df9-b5e7-95dd26ba9861" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "53cbd372-464d-4245-8726-ef4959ac3c8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:53cbd372-464d-4245-8726-ef4959ac3c8a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "b9cb1ebd-faef-453d-95cc-2098aa7d3d66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "5bb630c7-2575-472f-8f85-2f2d3e4e5cb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:5bb630c7-2575-472f-8f85-2f2d3e4e5cb9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "f3fcee99-9430-44d1-a87d-19fdb14229f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "912c5ef6-26bf-4c2c-ae60-65d52f0925e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:912c5ef6-26bf-4c2c-ae60-65d52f0925e0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "1074e419-29ed-4bcb-89b5-7f2e7c43dec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "50840fa6-50ad-4b27-b008-9bf836141489" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:50840fa6-50ad-4b27-b008-9bf836141489" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "9284f8a0-a438-4cbc-bac5-509c9d9ed144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "7316adbe-7d8f-48ac-9dde-1eb71c50ea91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:7316adbe-7d8f-48ac-9dde-1eb71c50ea91" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "4402fa19-4643-44ec-bdec-4cca0b7f5916" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "0a89261c-4975-4c6b-88bd-1d64d82cf573" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:0a89261c-4975-4c6b-88bd-1d64d82cf573" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "49bb57e2-b320-4198-b8a3-72fe28c7e9c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "da1c826a-d774-403f-981d-c4dd8a3254c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:da1c826a-d774-403f-981d-c4dd8a3254c6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "7dd43707-5d85-4616-82d6-7aafd3f15416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "4b085b2e-f8f8-418a-ad6c-60ac8c2ab678" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:4b085b2e-f8f8-418a-ad6c-60ac8c2ab678" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "ca86e9ab-44bf-421c-b75a-b87e1b4d4161" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "c6e04bc2-a5aa-482a-a4d4-6ec5248d5087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:c6e04bc2-a5aa-482a-a4d4-6ec5248d5087" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "3af4ed95-49bc-4871-8546-1c8a24907545" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "3603b57f-d7e6-461d-a63f-99ad9c093eb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:3603b57f-d7e6-461d-a63f-99ad9c093eb3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "d497f179-5ab5-4c8d-b2b7-6dfe74029a07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "ba833e62-2429-4c43-8ab6-f69f455436b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:ba833e62-2429-4c43-8ab6-f69f455436b0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "4d9b4737-3a29-4af8-bb12-24b8e4776ae2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "c4e027d9-5ca2-4665-8cd1-7fa418ff8a78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:c4e027d9-5ca2-4665-8cd1-7fa418ff8a78" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "dbc5a584-b7fd-401e-a333-ef3c084ff75a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "ebc9867f-e1a8-4c06-bda2-58f66acc0d27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:ebc9867f-e1a8-4c06-bda2-58f66acc0d27" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c076e09e-998b-4e58-a2c1-1fd262255bdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "d3d33d5e-93a1-4b15-9922-ec0022ab9aef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014916Z:d3d33d5e-93a1-4b15-9922-ec0022ab9aef" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "d9973141-7a36-4d3b-b101-dbb093754426" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "43de891f-f4ac-46c7-9742-c9a52679dd28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:43de891f-f4ac-46c7-9742-c9a52679dd28" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "a66c7852-942a-4ae2-98bb-5d8c7b365bb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "aecacd31-eb5e-48da-93cb-491156ebf586" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:aecacd31-eb5e-48da-93cb-491156ebf586" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "7f79b8d8-38fa-4b58-bcb4-38941f82af81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "6fa46002-77db-4553-9c64-4494456e1aca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:6fa46002-77db-4553-9c64-4494456e1aca" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "ba2c645e-761b-49c6-8b67-a29fc6d27e82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "ecc83dbb-170e-448a-964b-5829dfb0c7e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:ecc83dbb-170e-448a-964b-5829dfb0c7e3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "af775ff9-8327-467a-8b66-6f41c4e7cc05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "6986d693-65cc-40d7-96c8-2912c304d8a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:6986d693-65cc-40d7-96c8-2912c304d8a1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "0423df5e-4a24-4fd9-a9c2-72637dbd2f6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "03920a98-9a4e-44a3-8f8e-2b8bf00f041c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:03920a98-9a4e-44a3-8f8e-2b8bf00f041c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c9338840-1dd2-4dd3-be09-7fcd5433ee1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "6be86241-3196-4dbd-8072-e4fad444b55a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:6be86241-3196-4dbd-8072-e4fad444b55a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "27e1e0de-ac22-412e-8cb5-05ca924e50c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "63fef8e5-e23c-4dbc-ab6c-0df80af5dd4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:63fef8e5-e23c-4dbc-ab6c-0df80af5dd4e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "463a2336-d000-4776-9ba2-c06d83431770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "33c8f90f-569b-4907-acb1-47907cb7ef5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:33c8f90f-569b-4907-acb1-47907cb7ef5d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c9f2a551-2a36-428b-bef5-09198b631de7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "678aa403-1b00-4e3c-9480-658d25984acc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:678aa403-1b00-4e3c-9480-658d25984acc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "33cc43f4-9af7-4d27-ab13-42407e2fa630" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "6637415b-9e97-4438-8fde-4f9309370c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:6637415b-9e97-4438-8fde-4f9309370c72" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "18e110c9-273f-4763-9d9f-308e371cd960" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "7931df8f-bbb2-490c-98a0-1983e57c0167" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:7931df8f-bbb2-490c-98a0-1983e57c0167" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c74a9306-3f96-409c-ae89-f56b80aa7b32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "91d8da86-1014-45b0-9f69-5ae4d21c1943" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:91d8da86-1014-45b0-9f69-5ae4d21c1943" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "71c7f5c7-7d00-4ed2-8e4d-5ff24a48bb9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "8306307b-875a-4845-91d4-04f991146cd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014917Z:8306307b-875a-4845-91d4-04f991146cd9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "6c0ff754-d3e7-4e88-bf89-22c7c08a445c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "29246206-f3da-444f-853e-e170f1399088" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:29246206-f3da-444f-853e-e170f1399088" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "f81c5a29-09fe-4ad5-aec6-af9f206f4342" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "4fffc8e1-2cd4-4567-9d3d-0067b0388488" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:4fffc8e1-2cd4-4567-9d3d-0067b0388488" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "b82012c3-c8b2-4fd3-ab97-bcc8b7df8b07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "f9cb3f49-3465-4c87-9cfc-e5d8915f2c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:f9cb3f49-3465-4c87-9cfc-e5d8915f2c72" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "a7f6626c-580d-4df3-9d16-31a4ffa9743a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "7d196020-b2e3-4075-a66c-8d9c688b6b59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:7d196020-b2e3-4075-a66c-8d9c688b6b59" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "6e762eb0-1e4b-421a-8716-35aea8419b12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "5961fa3c-ef7e-43c7-9d65-645e0152f891" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:5961fa3c-ef7e-43c7-9d65-645e0152f891" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "f23a5113-f232-43eb-b0bd-9d8ad28a184a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "078d2839-79c5-4835-9c1b-0bd1677fe898" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:078d2839-79c5-4835-9c1b-0bd1677fe898" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c3f3a226-3946-4e70-82fe-0f7b4fe893e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "01569a0f-6d66-4444-9e7c-a88eb781a901" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:01569a0f-6d66-4444-9e7c-a88eb781a901" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "bdbea5b7-6173-4e8e-8386-bb5047ba7d83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "0d759270-3b5b-45f3-9c31-93b12d34ad18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:0d759270-3b5b-45f3-9c31-93b12d34ad18" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "3eb38282-2a4a-4356-895c-06597c00fcb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "0a22722d-d96a-4917-9ebf-4cc2ba6e3d57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:0a22722d-d96a-4917-9ebf-4cc2ba6e3d57" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c637b2cc-082e-465c-a965-04a7c023179b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "39b02977-7257-4b32-a905-ab76ee7f974e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:39b02977-7257-4b32-a905-ab76ee7f974e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "10e31fdb-2a80-4b9f-b7af-374d5e54584b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "4f363cb8-745a-4a32-af50-9e7f9a091ace" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014918Z:4f363cb8-745a-4a32-af50-9e7f9a091ace" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "96b36a01-880e-42f2-8bfc-b2c5ce234488" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "b95e8d11-c8b8-48ba-9675-a17772b5d2ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014919Z:b95e8d11-c8b8-48ba-9675-a17772b5d2ae" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "9834ef2d-bfb9-40e1-b5db-84a1a8d60f1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "b48c655a-0fa9-45fc-b581-1291c0971d7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014919Z:b48c655a-0fa9-45fc-b581-1291c0971d7d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Last-Modified": [ + "Wed, 06 Jun 2018 01:16:26 GMT" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "3f9b60a8-709d-4cce-9fa2-d07fc68eb949" + "0a28f0d1-191a-443a-b2d4-b751989a9e91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2985,47 +234,44 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], "x-ms-correlation-request-id": [ - "4f4a87ee-0c0a-452f-9ca3-3f23e92bb098" + "8c883987-e550-4575-a91a-606c9aa97c44" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014919Z:4f4a87ee-0c0a-452f-9ca3-3f23e92bb098" + "WESTUS2:20180606T011626Z:8c883987-e550-4575-a91a-606c9aa97c44" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:19 GMT" + "Wed, 06 Jun 2018 01:16:25 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01" + "ETag": [ + "0x8D5CB4B2008E602" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/8548c8be-0921-4635-80d8-2701a45eda23?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvODU0OGM4YmUtMDkyMS00NjM1LTgwZDgtMjcwMWE0NWVkYTIzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/operationResults/066a8a3d-4657-4ac7-a439-78acc6164ee1?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDMvb3BlcmF0aW9uUmVzdWx0cy8wNjZhOGEzZC00NjU3LTRhYzctYTQzOS03OGFjYzYxNjRlZTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3034,16 +280,16 @@ "-1" ], "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:19 GMT" + "Wed, 06 Jun 2018 01:16:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14999" ], "x-ms-request-id": [ - "35ee2366-0c5f-403e-8413-6ec0d9a27b46" + "ca74cbe3-e3af-4875-9da5-9b4b278c6008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3052,19 +298,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "2897d320-b9fa-4332-b5f6-0457ee4e3632" + "22f34472-9ce8-42ec-ac0a-7d6b418aa977" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014919Z:2897d320-b9fa-4332-b5f6-0457ee4e3632" + "WESTUS2:20180606T011625Z:22f34472-9ce8-42ec-ac0a-7d6b418aa977" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:19 GMT" + "Wed, 06 Jun 2018 01:16:24 GMT" ], "ETag": [ - "0x8D536CB680694A0" + "0x8D5CB4B1F7E13C1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3073,28 +319,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65e661dc-7180-409e-8e50-386aa6e9aaf4" + "a21f9b59-3142-4ca3-a42e-a289dc951221" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3103,16 +349,16 @@ "-1" ], "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:14 GMT" + "Wed, 06 Jun 2018 01:16:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14998" ], "x-ms-request-id": [ - "3d6cbc31-28b8-4487-aeaa-6bff20d5bd6d" + "75f73a57-8210-457c-b622-d49f83398822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3121,19 +367,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "e1fe6458-f3e6-4d96-ac80-2b04dcce5913" + "2e7f5d8e-aefc-45fa-9097-906aa21198c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014919Z:e1fe6458-f3e6-4d96-ac80-2b04dcce5913" + "WESTUS2:20180606T011625Z:2e7f5d8e-aefc-45fa-9097-906aa21198c1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:19 GMT" + "Wed, 06 Jun 2018 01:16:24 GMT" ], "ETag": [ - "0x8D536CB6558344A" + "0x8D5CB4B1658EFC9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3142,28 +388,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "046a4364-51db-4a71-a727-421dd499ff09" + "3413eab3-1952-43f1-9082-f41223c4d3e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3172,16 +418,16 @@ "-1" ], "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:20 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14997" ], "x-ms-request-id": [ - "88095784-736e-47a2-a1d7-393650f4783b" + "302b2e9d-b509-4fbe-9185-158e5629124a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3190,19 +436,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "f650951b-49e8-4714-a4b7-a47dce86c2a5" + "e7b495bc-2b94-4b5f-8b07-ba3e39b724fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014921Z:f650951b-49e8-4714-a4b7-a47dce86c2a5" + "WESTUS2:20180606T011626Z:e7b495bc-2b94-4b5f-8b07-ba3e39b724fe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:20 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "ETag": [ - "0x8D536CB68B70887" + "0x8D5CB4B2004F079" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3211,28 +457,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45ed5311-c3a7-40c2-803c-48d3582cd64e" + "1712eb6f-35d9-4c9f-aa3c-e1ca09164288" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3241,16 +487,16 @@ "-1" ], "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:20 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14996" ], "x-ms-request-id": [ - "1e70a486-5482-4334-956f-49e770763c0e" + "0d5dcc18-f75d-47ba-9595-33ccea813dbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3259,19 +505,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "9f19fc6f-dc2c-4f5b-a81e-836ff59734e7" + "d2f61e60-bacd-4a40-9ea4-e4f50d21a72a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014921Z:9f19fc6f-dc2c-4f5b-a81e-836ff59734e7" + "WESTUS2:20180606T011627Z:d2f61e60-bacd-4a40-9ea4-e4f50d21a72a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:21 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "ETag": [ - "0x8D536CB68B70887" + "0x8D5CB4B2004F079" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3280,28 +526,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "638ab964-51bb-4b3d-930c-a2b411b4bece" + "fff3571e-26a7-4053-b926-86e8f9aa5ff2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3310,16 +556,16 @@ "-1" ], "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:20 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14995" ], "x-ms-request-id": [ - "04d2639c-739e-4af7-93c4-deaa9b7edcdf" + "303d2cdd-5b55-40ac-a6aa-e73b7a8ae626" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3328,19 +574,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "2c888a63-4d0b-4dff-a014-55e77b98342e" + "37c2543d-cda9-4eec-abeb-d712af2ab48a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:2c888a63-4d0b-4dff-a014-55e77b98342e" + "WESTUS2:20180606T011627Z:37c2543d-cda9-4eec-abeb-d712af2ab48a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:21 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "ETag": [ - "0x8D536CB68B70887" + "0x8D5CB4B2004F079" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3349,28 +595,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08e8e925-992a-4360-96bd-dce0864ff053" + "4d01f2a7-d938-47ec-ab1c-9af7b068f8c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5732.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 100,\r\n \"poolQuota\": 20,\r\n \"activeJobAndJobScheduleQuota\": 20,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps543.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"coreQuota\": 20,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"batchservice\"\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3379,16 +625,16 @@ "-1" ], "Last-Modified": [ - "Wed, 29 Nov 2017 01:49:22 GMT" + "Wed, 06 Jun 2018 01:16:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14994" ], "x-ms-request-id": [ - "359ecfbf-c766-4c32-9702-0354f35a3810" + "bf16b256-5a4b-4b67-b49b-970900dbc5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3397,19 +643,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "f88f2582-251d-430e-879e-86368cd3f905" + "36cee673-12ad-4db2-8497-365d0d5fca3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:f88f2582-251d-430e-879e-86368cd3f905" + "WESTUS2:20180606T011628Z:36cee673-12ad-4db2-8497-365d0d5fca3d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" + "Wed, 06 Jun 2018 01:16:27 GMT" ], "ETag": [ - "0x8D536CB69D7AE6F" + "0x8D5CB4B210DBD2B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3418,25 +664,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62e4fdfb-750d-4f47-94e2-e604056782fd" + "541d4aee-33e8-4e54-90df-8d5e158b7ce5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:7f5523eb-63e9-4a02-bd2f-33a1be7cf15b\\nTime:2017-11-29T01:49:23.6607313Z\",\r\n \"target\": \"BatchAccount\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:6478e4d8-3867-4189-9bbd-801c8d3dab80\\nTime:2018-06-06T01:16:43.9502900Z\",\r\n \"target\": \"BatchAccount\"\r\n}", "ResponseHeaders": { "Content-Length": [ "183" @@ -3451,10 +697,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14991" ], "x-ms-request-id": [ - "7f5523eb-63e9-4a02-bd2f-33a1be7cf15b" + "6478e4d8-3867-4189-9bbd-801c8d3dab80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3463,16 +709,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "3c443186-29cb-462d-9b16-b37df56b4cc3" + "931592fe-66e6-4ace-a19b-78469e27d27a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014923Z:3c443186-29cb-462d-9b16-b37df56b4cc3" + "WESTUS2:20180606T011643Z:931592fe-66e6-4ace-a19b-78469e27d27a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:23 GMT" + "Wed, 06 Jun 2018 01:16:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3487,22 +733,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "551c783b-f153-4c63-805b-584da8caa88b" + "b42dd7ef-fb08-4877-93ea-210bad210767" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/Default-AzureBatch-EastUS2/providers/Microsoft.Batch/batchAccounts/matthchreastus2\",\r\n \"name\": \"matthchreastus2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/matthchrwestus\",\r\n \"name\": \"matthchrwestus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchr-centralus-euap/providers/Microsoft.Batch/batchAccounts/matthchrcenuseuap\",\r\n \"name\": \"matthchrcenuseuap\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchreasteuap/providers/Microsoft.Batch/batchAccounts/matthchreasteuap\",\r\n \"name\": \"matthchreasteuap\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchreastus/providers/Microsoft.Batch/batchAccounts/matthchreastus\",\r\n \"name\": \"matthchreastus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus\",\r\n \"name\": \"matthchrwestcentralus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/python_batch_sdk_test/providers/Microsoft.Batch/batchAccounts/pythonsdktest3\",\r\n \"name\": \"pythonsdktest3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"Name\": \"tagName\",\r\n \"Value\": \"tagValue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/Default-AzureBatch-EastUS2/providers/Microsoft.Batch/batchAccounts/matthchreastus2\",\r\n \"name\": \"matthchreastus2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/matthchrwestus\",\r\n \"name\": \"matthchrwestus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchr-centralus-euap/providers/Microsoft.Batch/batchAccounts/matthchrcenuseuap\",\r\n \"name\": \"matthchrcenuseuap\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrcentralus/providers/Microsoft.Batch/batchAccounts/matthchrcentralus\",\r\n \"name\": \"matthchrcentralus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchreasteuap/providers/Microsoft.Batch/batchAccounts/matthchreasteuap\",\r\n \"name\": \"matthchreasteuap\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchreastus/providers/Microsoft.Batch/batchAccounts/matthchreastus\",\r\n \"name\": \"matthchreastus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrnortheurope/providers/Microsoft.Batch/batchAccounts/matthchrnortheurope\",\r\n \"name\": \"matthchrnortheurope\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus\",\r\n \"name\": \"matthchrwestcentralus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543\",\r\n \"name\": \"ps543\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/python_batch_sdk_test/providers/Microsoft.Batch/batchAccounts/pythonsdktest3\",\r\n \"name\": \"pythonsdktest3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"Name\": \"tagName\",\r\n \"Value\": \"tagValue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1991" + "2479" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3514,52 +760,55 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-request-id": [ - "c9730931-4e2c-4e57-8c4d-784699b8bcfc" + "ee7fc6cb-e419-4d89-8358-8fde9508acdc" ], "x-ms-correlation-request-id": [ - "c9730931-4e2c-4e57-8c4d-784699b8bcfc" + "ee7fc6cb-e419-4d89-8358-8fde9508acdc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014921Z:c9730931-4e2c-4e57-8c4d-784699b8bcfc" + "WESTUS2:20180606T011627Z:ee7fc6cb-e419-4d89-8358-8fde9508acdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:21 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/listKeys?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56805799-bd80-4324-98dc-7b2b0a15baaf" + "dabcb3e6-0610-4981-b78a-a52a9d052744" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"ps5732\",\r\n \"primary\": \"z860z1AculqcfVuc9Sf1MNLIN+abDBPRcuZaaLh4yEV9s38C6uq+ubY3z5TNyKFhV8Xt5nkGysKn/J1flnJyJA==\",\r\n \"secondary\": \"IM1lYqEftLjS4VVb/jGzPii1zOxdRzmZ57oUvL/NQIy+edf6u7+47q45TpAvzS2hoHIwXYDSRwDJ3VTvupurTQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"ps543\",\r\n \"primary\": \"mX1SFZtCM88HShOPb41BMqXWIkZN81SrS4HYtwqesk0pPJy4B3kgNcAuSakUDEiIy1l8JgX9Aha2KDozo5A4CQ==\",\r\n \"secondary\": \"3ihzcvTGMzWlS7JIv1o88A7TJbjqtizRdklcQhkUVFvVSpvcOfGEEoxgtGROMmutiT7TW8/feZCsH2SvcY9TZw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "228" + "227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3574,7 +823,7 @@ "1197" ], "x-ms-request-id": [ - "96b78cb8-7f97-4844-bbd4-89455d2dd6af" + "d263a9ec-db38-4bda-b03e-7912af0dc82e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3583,16 +832,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "1f8aab15-f730-42d6-87ac-60d70c81fad5" + "cc26f35b-dc0a-4a8a-b07b-f29a085197c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014921Z:1f8aab15-f730-42d6-87ac-60d70c81fad5" + "WESTUS2:20180606T011627Z:cc26f35b-dc0a-4a8a-b07b-f29a085197c8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:21 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3601,28 +850,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/listKeys?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3c8d936-f93d-44c0-aa3f-9bb583ef2428" + "77fdb3d4-7932-4e49-82f9-dd5e3d7c762e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"ps5732\",\r\n \"primary\": \"z860z1AculqcfVuc9Sf1MNLIN+abDBPRcuZaaLh4yEV9s38C6uq+ubY3z5TNyKFhV8Xt5nkGysKn/J1flnJyJA==\",\r\n \"secondary\": \"IM1lYqEftLjS4VVb/jGzPii1zOxdRzmZ57oUvL/NQIy+edf6u7+47q45TpAvzS2hoHIwXYDSRwDJ3VTvupurTQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"ps543\",\r\n \"primary\": \"mX1SFZtCM88HShOPb41BMqXWIkZN81SrS4HYtwqesk0pPJy4B3kgNcAuSakUDEiIy1l8JgX9Aha2KDozo5A4CQ==\",\r\n \"secondary\": \"3ihzcvTGMzWlS7JIv1o88A7TJbjqtizRdklcQhkUVFvVSpvcOfGEEoxgtGROMmutiT7TW8/feZCsH2SvcY9TZw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "228" + "227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3637,7 +886,7 @@ "1196" ], "x-ms-request-id": [ - "ea1c3c8a-75fb-4375-b89e-3ac5a961822b" + "53f99809-4c52-4cf0-a4b4-098b2da03501" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3646,16 +895,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "863eb020-baf7-4341-88b1-0c4480bc385a" + "f991bdaa-9553-4224-a863-8f2fab0a6cd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:863eb020-baf7-4341-88b1-0c4480bc385a" + "WESTUS2:20180606T011627Z:f991bdaa-9553-4224-a863-8f2fab0a6cd9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:21 GMT" + "Wed, 06 Jun 2018 01:16:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3664,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/regenerateKeys?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/regenerateKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDMvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { @@ -3676,22 +925,22 @@ "28" ], "x-ms-client-request-id": [ - "a2b8d34e-4355-484b-b786-2034565321e3" + "953f5f79-0ddc-4627-a4f5-49bb7824d2db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"ps5732\",\r\n \"primary\": \"pcL9L5BoFNrur0jpO70jqDHg9mMDmHxkay7UxXVN8jdrpjyZsqUOCRmz+0Wyfl9vkhZs3oy1GCfAuUnsPCMrmg==\",\r\n \"secondary\": \"IM1lYqEftLjS4VVb/jGzPii1zOxdRzmZ57oUvL/NQIy+edf6u7+47q45TpAvzS2hoHIwXYDSRwDJ3VTvupurTQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"ps543\",\r\n \"primary\": \"Tbd18mHsPU7TSgdplXufWoZgrYXbXcs4dlWA7RdJVH5zPEgjA0tBIJeDrTtlwHD6AFv9iLpVs2mXvtv8WUTW/w==\",\r\n \"secondary\": \"3ihzcvTGMzWlS7JIv1o88A7TJbjqtizRdklcQhkUVFvVSpvcOfGEEoxgtGROMmutiT7TW8/feZCsH2SvcY9TZw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "228" + "227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3706,7 +955,7 @@ "1195" ], "x-ms-request-id": [ - "bfb7030c-56fc-48b8-b718-b5fa823e49dd" + "3eea1cda-9054-4542-9af8-3f8f619459a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3715,16 +964,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "bd4a7e00-fe40-4dcf-9c45-d16f777f5417" + "d2ae30cb-0bf5-44ab-a2bc-364ebd7b5777" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:bd4a7e00-fe40-4dcf-9c45-d16f777f5417" + "WESTUS2:20180606T011628Z:d2ae30cb-0bf5-44ab-a2bc-364ebd7b5777" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" + "Wed, 06 Jun 2018 01:16:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3733,259 +982,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea60558b-e935-4e52-a315-d56c9f0c5391" + "7e902190-6428-4a45-96cc-dbdedd8b4d47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "00ca8c29-6af1-4a35-bb60-195614e655e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "67290415-019a-44c3-922c-3b8b481bbec6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:67290415-019a-44c3-922c-3b8b481bbec6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvMDBjYThjMjktNmFmMS00YTM1LWJiNjAtMTk1NjE0ZTY1NWUxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "b1a02b5e-edab-44d7-809b-2576045dc391" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "73d0d6f3-a459-4d2c-a4bf-ad7a6feb364e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:73d0d6f3-a459-4d2c-a4bf-ad7a6feb364e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvMDBjYThjMjktNmFmMS00YTM1LWJiNjAtMTk1NjE0ZTY1NWUxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "55f450e4-7809-41b0-a97f-eab441b50665" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "b58c6767-307d-487d-b0d8-f219b67b23d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014922Z:b58c6767-307d-487d-b0d8-f219b67b23d8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvMDBjYThjMjktNmFmMS00YTM1LWJiNjAtMTk1NjE0ZTY1NWUxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "8dcbbd6c-5c0d-4544-a07f-ed8959f6b911" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-correlation-request-id": [ - "a98afa87-f3c3-4b49-b946-8b19c9384905" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171129T014923Z:a98afa87-f3c3-4b49-b946-8b19c9384905" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvMDBjYThjMjktNmFmMS00YTM1LWJiNjAtMTk1NjE0ZTY1NWUxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" @@ -4006,7 +1015,7 @@ "15" ], "x-ms-request-id": [ - "1b2be70d-8095-4a12-a9fa-b84a861f799d" + "befc1624-e651-4646-b43d-41a201747700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4014,23 +1023,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "b479b1a6-fd65-4397-b14a-d0e4639f0044" + "98debe89-19a5-4a31-a0a2-cd084eb96c49" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014923Z:b479b1a6-fd65-4397-b14a-d0e4639f0044" + "WESTUS2:20180606T011628Z:98debe89-19a5-4a31-a0a2-cd084eb96c49" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" + "Wed, 06 Jun 2018 01:16:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/operationResults/befc1624-e651-4646-b43d-41a201747700?api-version=2017-01-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4039,13 +1048,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvMDBjYThjMjktNmFmMS00YTM1LWJiNjAtMTk1NjE0ZTY1NWUxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/operationResults/befc1624-e651-4646-b43d-41a201747700?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDMvb3BlcmF0aW9uUmVzdWx0cy9iZWZjMTYyNC1lNjUxLTQ2NDYtYjQzZC00MWEyMDE3NDc3MDA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" @@ -4062,11 +1071,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "156d1f1a-156f-4d00-a825-8f0b2aa08b0b" + "befd3d4a-f837-4392-9198-b1c482c99b58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4075,37 +1081,34 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14993" ], "x-ms-correlation-request-id": [ - "4927d2d1-0304-43dc-a26a-26ce83f5c31b" + "aba05ec2-bb83-4ff5-bff1-2d93aab567bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014923Z:4927d2d1-0304-43dc-a26a-26ce83f5c31b" + "WESTUS2:20180606T011643Z:aba05ec2-bb83-4ff5-bff1-2d93aab567bb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01" + "Wed, 06 Jun 2018 01:16:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps5930/providers/Microsoft.Batch/batchAccounts/ps5732/operationResults/00ca8c29-6af1-4a35-bb60-195614e655e1?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzNTkzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NzMyL29wZXJhdGlvblJlc3VsdHMvMDBjYThjMjktNmFmMS00YTM1LWJiNjAtMTk1NjE0ZTY1NWUxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/ps9651/providers/Microsoft.Batch/batchAccounts/ps543/operationResults/befc1624-e651-4646-b43d-41a201747700?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL3BzOTY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NDMvb3BlcmF0aW9uUmVzdWx0cy9iZWZjMTYyNC1lNjUxLTQ2NDYtYjQzZC00MWEyMDE3NDc3MDA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2556.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" @@ -4123,7 +1126,7 @@ "no-cache" ], "x-ms-request-id": [ - "19d9b640-72e7-40a2-8c88-817f8f0ce6a7" + "02eb73e2-a4c0-4b08-9e80-ca422af9baa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4132,19 +1135,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14992" ], "x-ms-correlation-request-id": [ - "fb3f5953-8639-45e6-803f-f65a7357ee9a" + "03da0d9d-f42b-4fb0-8eeb-fed364cb285b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014923Z:fb3f5953-8639-45e6-803f-f65a7357ee9a" + "WESTUS2:20180606T011643Z:03da0d9d-f42b-4fb0-8eeb-fed364cb285b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:22 GMT" + "Wed, 06 Jun 2018 01:16:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4153,8 +1156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/ps5930?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL3BzNTkzMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/ps9651?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL3BzOTY1MT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4176,36 +1179,39 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "5041aae9-0d1b-4ff0-954b-4956761eb977" + "c6ebc9cc-fad8-44e9-9540-3076fbd9f4c6" ], "x-ms-correlation-request-id": [ - "5041aae9-0d1b-4ff0-954b-4956761eb977" + "c6ebc9cc-fad8-44e9-9540-3076fbd9f4c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014924Z:5041aae9-0d1b-4ff0-954b-4956761eb977" + "WESTUS2:20180606T011644Z:c6ebc9cc-fad8-44e9-9540-3076fbd9f4c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:23 GMT" + "Wed, 06 Jun 2018 01:16:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,32 +1240,35 @@ "14998" ], "x-ms-request-id": [ - "e13afac2-2a18-4b4d-8809-ca6db0c7a1bb" + "efbfa6f7-8661-4144-a54a-dd9dfd037984" ], "x-ms-correlation-request-id": [ - "e13afac2-2a18-4b4d-8809-ca6db0c7a1bb" + "efbfa6f7-8661-4144-a54a-dd9dfd037984" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014924Z:e13afac2-2a18-4b4d-8809-ca6db0c7a1bb" + "WESTUS2:20180606T011644Z:efbfa6f7-8661-4144-a54a-dd9dfd037984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:24 GMT" + "Wed, 06 Jun 2018 01:16:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4288,32 +1297,35 @@ "14997" ], "x-ms-request-id": [ - "f66fb822-2c38-4005-ac86-a25db16f425b" + "bfcbbb11-c7ee-4f8f-8e74-72a9db4e1de9" ], "x-ms-correlation-request-id": [ - "f66fb822-2c38-4005-ac86-a25db16f425b" + "bfcbbb11-c7ee-4f8f-8e74-72a9db4e1de9" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014939Z:f66fb822-2c38-4005-ac86-a25db16f425b" + "WESTUS2:20180606T011659Z:bfcbbb11-c7ee-4f8f-8e74-72a9db4e1de9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:39 GMT" + "Wed, 06 Jun 2018 01:16:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4342,32 +1354,35 @@ "14996" ], "x-ms-request-id": [ - "a997a233-33e3-435c-a06f-6a3cb5800411" + "8eb05027-9fa6-4e8a-a9bd-6a741fda216c" ], "x-ms-correlation-request-id": [ - "a997a233-33e3-435c-a06f-6a3cb5800411" + "8eb05027-9fa6-4e8a-a9bd-6a741fda216c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T014954Z:a997a233-33e3-435c-a06f-6a3cb5800411" + "WESTUS2:20180606T011714Z:8eb05027-9fa6-4e8a-a9bd-6a741fda216c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:49:54 GMT" + "Wed, 06 Jun 2018 01:17:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4393,22 +1408,25 @@ "14995" ], "x-ms-request-id": [ - "8c588c19-63be-4633-8a40-1190afe27545" + "48fee36b-7a35-48ed-9fd6-b799bb18eed2" ], "x-ms-correlation-request-id": [ - "8c588c19-63be-4633-8a40-1190afe27545" + "48fee36b-7a35-48ed-9fd6-b799bb18eed2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171129T015010Z:8c588c19-63be-4633-8a40-1190afe27545" + "WESTUS2:20180606T011730Z:48fee36b-7a35-48ed-9fd6-b799bb18eed2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 29 Nov 2017 01:50:09 GMT" + "Wed, 06 Jun 2018 01:17:29 GMT" ] }, "StatusCode": 200 @@ -4416,14 +1434,14 @@ ], "Names": { "Test-BatchAccountEndToEnd": [ - "ps5732", - "ps5930" + "ps543", + "ps9651" ] }, "Variables": { "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": null, - "AZURE_BATCH_ENDPOINT": null, - "AZURE_BATCH_RESOURCE_GROUP": null + "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", + "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestListNodeAgentSkus.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestListNodeAgentSkus.json index 8fb8027bb399..e86509967e66 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestListNodeAgentSkus.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestListNodeAgentSkus.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/nodeagentskus?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L25vZGVhZ2VudHNrdXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/nodeagentskus?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L25vZGVhZ2VudHNrdXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f6f127ab-95d8-4b67-82e2-386196a54cc1" + "ecdba4b4-a014-4983-a6a1-4259b9649949" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:20 GMT" + "Fri, 25 May 2018 18:53:58 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodeagentskus\",\r\n \"value\": [\r\n {\r\n \"id\": \"batch.node.centos 7\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS-HPC\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"Oracle\",\r\n \"offer\": \"Oracle-Linux\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"linux-data-science-vm\",\r\n \"sku\": \"linuxdsvm\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-centos73\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.debian 8\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"Credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8-backports\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.opensuse 13.2\",\r\n \"verifiedImageReferences\": [],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.opensuse 42.1\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES-HPC\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.ubuntu 14.04\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.5-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.ubuntu 16.04\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"17.04\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.windows amd64\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-with-Containers\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"standard-data-science-vm\",\r\n \"sku\": \"standard-data-science-vm\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-windows2016\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"windows\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#nodeagentskus\",\r\n \"value\": [\r\n {\r\n \"id\": \"batch.node.centos 7\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS-HPC\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS-HPC\",\r\n \"sku\": \"7.1\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"Oracle\",\r\n \"offer\": \"Oracle-Linux\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"linux-data-science-vm\",\r\n \"sku\": \"linuxdsvm\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-centos73\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.debian 8\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.debian 9\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"9\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.opensuse 42.1\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.ubuntu 14.04\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.5-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.ubuntu 16.04\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"id\": \"batch.node.windows amd64\",\r\n \"verifiedImageReferences\": [\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-with-Containers\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"standard-data-science-vm\",\r\n \"sku\": \"standard-data-science-vm\",\r\n \"version\": \"latest\"\r\n },\r\n {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-windows2016\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n }\r\n ],\r\n \"osType\": \"windows\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "010cc2f9-7971-4203-aba9-db7cc15744a5" + "fde6f232-eb9f-43a9-b429-d099aa33f9f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:21 GMT" + "Fri, 25 May 2018 18:53:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -55,9 +55,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json index 8fc98c511f2d..e466b59b10e2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/createPoolWithApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/createPoolWithApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL2NyZWF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvbz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81eef6d4-fccb-4068-b501-01abeefc6beb" + "60e80424-07c8-4aab-be04-6cae475cb7d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"createPoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-createpoolwithappl-3cfcd7091812a8971dd693f069532e872e2342e7/createpoolwithapplicationpackage-foo-6dfcf3c0-30f0-497f-a267-75e4c9fa0703?sv=2015-04-05&sr=b&sig=nVDxM7Y23U7vR7NfGAc7jMMAvT%2FdeQBmO2pqH5Gs1xM%3D&st=2017-10-06T03%3A14%3A23Z&se=2017-10-06T07%3A19%3A23Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:23.6274666Z\",\r\n \"state\": \"pending\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"createPoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-createpoolwithappl-3cfcd7091812a8971dd693f069532e872e2342e7/createpoolwithapplicationpackage-foo-6160dade-5146-4c52-bceb-bd8dae01b8db?sv=2015-04-05&sr=b&sig=9LKCYbIjgva%2Bu5mqmDXqZTRhZ051%2FjCt%2BpIkbKICEyc%3D&st=2018-05-25T18%3A53%3A10Z&se=2018-05-25T22%3A58%3A10Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:58:10.7016329Z\",\r\n \"state\": \"pending\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "452" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +37,7 @@ "1199" ], "x-ms-request-id": [ - "90ecf8a7-d154-4875-87b3-b1b53b4fb8a6" + "d344a031-3460-4f8a-aff3-538efa4578c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,16 +46,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "5f257b9f-4082-4daf-8b5a-315b7cffdf05" + "ea4f8c42-3d7f-40a8-a8a6-e42ff6f0c7e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031923Z:5f257b9f-4082-4daf-8b5a-315b7cffdf05" + "WESTUS2:20180525T185810Z:ea4f8c42-3d7f-40a8-a8a6-e42ff6f0c7e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:22 GMT" + "Fri, 25 May 2018 18:58:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -64,8 +64,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/createPoolWithApplicationPackage/versions/foo/activate?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/createPoolWithApplicationPackage/versions/foo/activate?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL2NyZWF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvby9hY3RpdmF0ZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { @@ -76,15 +76,15 @@ "23" ], "x-ms-client-request-id": [ - "b6db06ad-b45a-4aa8-9413-76c26110104d" + "e4851254-53a7-435e-8dbb-1c140d5f9329" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -94,13 +94,13 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:23 GMT" + "Fri, 25 May 2018 18:58:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bf75576d-1561-4295-823d-db9b4a8edffd" + "e33922ca-4876-4a00-9022-e4c880b3db44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,19 +112,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "dd978746-0b32-43e5-97c5-94c70b303363" + "e3375e75-7ff4-4fc7-8976-006fb200b2c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031924Z:dd978746-0b32-43e5-97c5-94c70b303363" + "WESTUS2:20180525T185811Z:e3375e75-7ff4-4fc7-8976-006fb200b2c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:23 GMT" + "Fri, 25 May 2018 18:58:10 GMT" ], "ETag": [ - "0x8D50C690AEDF09D" + "0x8D5C27175D813D2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -133,28 +133,28 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/createPoolWithApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/createPoolWithApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL2NyZWF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvbz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d90186e-3832-4199-bafe-c244c01557de" + "659e30a0-352e-41f6-8eee-1695c8ef0759" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"createPoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-createpoolwithappl-3cfcd7091812a8971dd693f069532e872e2342e7/createpoolwithapplicationpackage-foo-6dfcf3c0-30f0-497f-a267-75e4c9fa0703?sv=2015-04-05&sr=b&sig=lE5zO7FeAFkKP8278gHysCXOXntyvaiPb0i9NQ2Ok%2Fg%3D&st=2017-10-06T03%3A14%3A24Z&se=2017-10-06T07%3A19%3A24Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:24.3065779Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2017-10-06T03:19:24.0795996Z\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"createPoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-createpoolwithappl-3cfcd7091812a8971dd693f069532e872e2342e7/createpoolwithapplicationpackage-foo-6160dade-5146-4c52-bceb-bd8dae01b8db?sv=2015-04-05&sr=b&sig=k0QSodgaLQX5d9WG9rgwQBbpjwXzPQeJEXxKNso346Y%3D&st=2018-05-25T18%3A53%3A11Z&se=2018-05-25T22%3A58%3A11Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:58:11.2919485Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2018-05-25T18:58:11.1763508Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "518" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,16 +163,16 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:24 GMT" + "Fri, 25 May 2018 18:58:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "f2e54198-cf81-4ad7-9806-5e260ddbbafd" + "e5c4101e-1a1e-4be4-9a28-c9e43459b864" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,19 +181,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "94d060d4-25c9-4572-950b-fa26e5dc20a8" + "5887388a-48ff-470f-9c9c-b0fa12ea81fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031924Z:94d060d4-25c9-4572-950b-fa26e5dc20a8" + "WESTUS2:20180525T185811Z:5887388a-48ff-470f-9c9c-b0fa12ea81fd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:23 GMT" + "Fri, 25 May 2018 18:58:10 GMT" ], "ETag": [ - "0x8D50C690B46F660" + "0x8D5C27176224E1A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -202,8 +202,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testCreatePoolWithAppPackages\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 3,\r\n \"enableInterNodeCommunication\": false,\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"createPoolWithApplicationPackage\",\r\n \"version\": \"foo\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -214,32 +214,32 @@ "370" ], "client-request-id": [ - "9c844539-4c2d-497e-91cf-fcac4a2ea297" + "646a66e8-2b9e-4660-9e48-88358c3b1706" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:24 GMT" + "Fri, 25 May 2018 18:58:11 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:24 GMT" + "Fri, 25 May 2018 18:58:11 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "42c1b0ad-90b6-4299-9838-22a8e23254e8" + "8a8d54af-0123-42c8-b5d8-c4600cb1d4d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,16 +251,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testCreatePoolWithAppPackages" + "https://batchtestaccount.westus.batch.azure.com/pools/testCreatePoolWithAppPackages" ], "Date": [ - "Fri, 06 Oct 2017 03:19:24 GMT" + "Fri, 25 May 2018 18:58:10 GMT" ], "ETag": [ - "0x8D50C690B516434" + "0x8D5C27176672016" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testCreatePoolWithAppPackages" + "https://batchtestaccount.westus.batch.azure.com/pools/testCreatePoolWithAppPackages" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -269,21 +269,21 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/createPoolWithApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/createPoolWithApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL2NyZWF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvbz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7eaa085e-8a10-440a-bb1a-fc7f3aad27c9" + "cbb75c15-371f-44c1-b11a-cc47f419b4ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -296,7 +296,7 @@ "no-cache" ], "x-ms-request-id": [ - "b88788cf-5a3e-494a-b365-b10d98185991" + "e840a0ae-b11f-464e-8f8f-a74e03bfd9af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,20 +304,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "868e0f33-bd72-475e-9c12-c15079233e4f" + "fec13d8a-37e7-47b6-969e-ee4b00c8da40" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031924Z:868e0f33-bd72-475e-9c12-c15079233e4f" + "WESTUS2:20180525T185812Z:fec13d8a-37e7-47b6-969e-ee4b00c8da40" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:24 GMT" + "Fri, 25 May 2018 18:58:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -326,21 +326,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/createPoolWithApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/createPoolWithApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL2NyZWF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94d16e92-21f5-4b4b-bbc8-21d4b3ad8d44" + "f23e6a30-b8d7-4b0e-b1e4-19495157b966" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -353,7 +353,7 @@ "no-cache" ], "x-ms-request-id": [ - "b0ed127b-d41d-4f1d-a33f-e97707451cc4" + "5feaf4db-f5a6-454e-b69f-fdb9be729777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,20 +361,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "23bd1146-988e-4fb0-adc8-d33fa3cc5f4a" + "4d70ec04-7f47-4f3b-883f-dbba280cf526" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031925Z:23bd1146-988e-4fb0-adc8-d33fa3cc5f4a" + "WESTUS2:20180525T185812Z:4d70ec04-7f47-4f3b-883f-dbba280cf526" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:24 GMT" + "Fri, 25 May 2018 18:58:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -383,26 +383,26 @@ "StatusCode": 204 }, { - "RequestUri": "/pools/testCreatePoolWithAppPackages?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RDcmVhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testCreatePoolWithAppPackages?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RDcmVhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "be302925-2905-4b90-b233-31d660270f5e" + "8ee8c8fd-3249-462d-8d78-4d7dc3ac97f2" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:25 GMT" + "Fri, 25 May 2018 18:58:12 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -411,7 +411,7 @@ "chunked" ], "request-id": [ - "fbc150a0-9c84-4904-ac82-3b539b2a8c61" + "9daad69d-cec9-42a4-a72a-55463b8316ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +423,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:19:25 GMT" + "Fri, 25 May 2018 18:58:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -434,9 +434,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json index 3e2053a184c1..5c023c6af756 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80070a70-e7c5-40c4-a548-21c348c144eb" + "737856ae-3ed8-4597-9f94-1befe83cbcb3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"updateApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-updateapplicationp-c8ab891134526756161acdd8565c03773460c3b0/updateapplicationpackage-foo-f637dffc-9113-4ee1-b1bb-a99707790c6a?sv=2015-04-05&sr=b&sig=zHg8DziRBCCHnJ8UU4szfNcwQOolkfFcp%2BjDcAb3aww%3D&st=2017-10-06T03%3A14%3A36Z&se=2017-10-06T07%3A19%3A36Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:36.768918Z\",\r\n \"state\": \"pending\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"updateApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-updateapplicationp-c8ab891134526756161acdd8565c03773460c3b0/updateapplicationpackage-foo-f42c62e2-46c0-43c3-a989-857bfc4df911?sv=2015-04-05&sr=b&sig=l0PHCO1auUlY6enEcrxQLuG5MXL09JeCpvoicvfO%2FDU%3D&st=2018-05-25T18%3A52%3A41Z&se=2018-05-25T22%3A57%3A41Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:57:41.6299731Z\",\r\n \"state\": \"pending\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "435" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +37,7 @@ "1199" ], "x-ms-request-id": [ - "75ed339d-9757-4a69-8c23-5494faf7e5ec" + "0b9addf6-cacf-48c9-81fd-5fdc87a27b16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,16 +46,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "e1331a0a-fd5b-4ac2-bd0f-5d6cf07c6428" + "3324e8d5-c820-4d3c-8c19-a1056bfc4c07" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031936Z:e1331a0a-fd5b-4ac2-bd0f-5d6cf07c6428" + "WESTUS2:20180525T185741Z:3324e8d5-c820-4d3c-8c19-a1056bfc4c07" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:36 GMT" + "Fri, 25 May 2018 18:57:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -64,21 +64,21 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecafec39-9847-4460-8e74-591f68855760" + "aaa829fa-7efd-4718-95c2-5eeadb379725" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -94,16 +94,16 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:36 GMT" + "Fri, 25 May 2018 18:57:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14999" ], "x-ms-request-id": [ - "375b9271-970b-47da-a451-650b3397d718" + "41b0d609-5c57-48f9-8325-5df8351bec1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,19 +112,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "0ee151c1-a128-4b7f-8cfc-66bed3331e43" + "d22e6420-aaf1-4788-a5f0-e2b9ae3b0f23" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031937Z:0ee151c1-a128-4b7f-8cfc-66bed3331e43" + "WESTUS2:20180525T185742Z:d22e6420-aaf1-4788-a5f0-e2b9ae3b0f23" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:36 GMT" + "Fri, 25 May 2018 18:57:41 GMT" ], "ETag": [ - "0x8D50C6912C27F5B" + "0x8D5C27164838D72" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -133,25 +133,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b87cc9d5-2537-4c55-9f0b-3c26012979a2" + "d2c4d5b3-9947-4887-856e-2a04d5650770" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"updateApplicationPackage\",\r\n \"displayName\": \"application-display-name\",\r\n \"packages\": [\r\n {\r\n \"version\": \"foo\",\r\n \"state\": \"active\",\r\n \"lastActivationTime\": \"2017-10-06T03:19:37.6171643Z\",\r\n \"format\": \"zip\"\r\n }\r\n ],\r\n \"allowUpdates\": true,\r\n \"defaultVersion\": \"foo\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"updateApplicationPackage\",\r\n \"displayName\": \"application-display-name\",\r\n \"packages\": [\r\n {\r\n \"version\": \"foo\",\r\n \"state\": \"active\",\r\n \"lastActivationTime\": \"2018-05-25T18:57:42.5373383Z\",\r\n \"format\": \"zip\"\r\n }\r\n ],\r\n \"allowUpdates\": true,\r\n \"defaultVersion\": \"foo\"\r\n}", "ResponseHeaders": { "Content-Length": [ "232" @@ -163,16 +163,16 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:38 GMT" + "Fri, 25 May 2018 18:57:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14997" ], "x-ms-request-id": [ - "801f0600-dc96-419e-bb2b-b1b0d3d37be5" + "7ac8e5a6-9b47-4063-83ed-fbd40fce52d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,19 +181,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "b549fada-fa55-4bed-ab17-301c62fb834f" + "d290b9a7-df24-42c2-a38f-e19b895b6062" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031938Z:b549fada-fa55-4bed-ab17-301c62fb834f" + "WESTUS2:20180525T185743Z:d290b9a7-df24-42c2-a38f-e19b895b6062" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:37 GMT" + "Fri, 25 May 2018 18:57:42 GMT" ], "ETag": [ - "0x8D50C6913B22228" + "0x8D5C2716567F1BD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -202,8 +202,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage/versions/foo/activate?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage/versions/foo/activate?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { @@ -214,15 +214,15 @@ "23" ], "x-ms-client-request-id": [ - "a8bfd5f3-5f59-4b4c-a53f-d7ef13131a32" + "976e52bc-2bf9-4a19-a95d-272c1cfb55b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -232,13 +232,13 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:37 GMT" + "Fri, 25 May 2018 18:57:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e8f86d09-0f09-43f4-a117-553dfe753a84" + "0378774f-7507-46c0-8cd1-4e4f8f44e056" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,19 +250,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "17252eca-49a1-4809-b644-2592db435163" + "68ab1ecd-3f99-4667-acf2-89a0b6a676b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031937Z:17252eca-49a1-4809-b644-2592db435163" + "WESTUS2:20180525T185742Z:68ab1ecd-3f99-4667-acf2-89a0b6a676b4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:37 GMT" + "Fri, 25 May 2018 18:57:42 GMT" ], "ETag": [ - "0x8D50C6912DF6934" + "0x8D5C271648598AF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -271,28 +271,28 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b782d95-d509-42e8-bc37-37ffef3e2ca4" + "687d6f3a-ddff-4803-8c0f-48e756e0cba7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"updateApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-updateapplicationp-c8ab891134526756161acdd8565c03773460c3b0/updateapplicationpackage-foo-f637dffc-9113-4ee1-b1bb-a99707790c6a?sv=2015-04-05&sr=b&sig=ggCPs3ef6Hha7xbRkBsCwNlaFlxoCB6MmcmMuoxOH0c%3D&st=2017-10-06T03%3A14%3A37Z&se=2017-10-06T07%3A19%3A37Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:37.7202825Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2017-10-06T03:19:37.6171643Z\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"updateApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-updateapplicationp-c8ab891134526756161acdd8565c03773460c3b0/updateapplicationpackage-foo-f42c62e2-46c0-43c3-a989-857bfc4df911?sv=2015-04-05&sr=b&sig=FPrzU79e5SIaTbEmE5SzrblzgFNL6xo71KQmJULwy7Q%3D&st=2018-05-25T18%3A52%3A42Z&se=2018-05-25T22%3A57%3A42Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:57:42.7077447Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2018-05-25T18:57:42.5373383Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "500" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:37 GMT" + "Fri, 25 May 2018 18:57:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14998" ], "x-ms-request-id": [ - "cf06b66f-c739-4496-b9e8-6d7197aa2468" + "d476123b-2919-41cb-9390-f46e49541246" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,19 +319,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "5470d414-1f25-4a5a-a8e7-87e077815215" + "54e2da27-2ebb-4db8-8d16-8245a08e2c0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031937Z:5470d414-1f25-4a5a-a8e7-87e077815215" + "WESTUS2:20180525T185742Z:54e2da27-2ebb-4db8-8d16-8245a08e2c0b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:37 GMT" + "Fri, 25 May 2018 18:57:42 GMT" ], "ETag": [ - "0x8D50C69135CED9F" + "0x8D5C271651094ED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -340,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"defaultVersion\": \"foo\",\r\n \"displayName\": \"application-display-name\"\r\n}", "RequestHeaders": { @@ -352,15 +352,15 @@ "77" ], "x-ms-client-request-id": [ - "7474e439-aca2-4b1c-a18c-2be853fa0232" + "09fbf795-5419-45c3-9f72-79197bece953" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -370,13 +370,13 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:36 GMT" + "Fri, 25 May 2018 18:57:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "152c29bd-3f4a-453a-a3bd-69f89b2258be" + "0fc4f7f7-fba4-4745-98df-8875816b20d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -388,19 +388,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "621f2a42-1e14-4540-b4b8-f20644dd2908" + "5e9c5d7c-5da8-4ffd-a465-b32799701028" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031938Z:621f2a42-1e14-4540-b4b8-f20644dd2908" + "WESTUS2:20180525T185743Z:5e9c5d7c-5da8-4ffd-a465-b32799701028" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:37 GMT" + "Fri, 25 May 2018 18:57:42 GMT" ], "ETag": [ - "0x8D50C6912C27F5B" + "0x8D5C27164838D72" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -409,21 +409,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "043ac86f-84e4-4d7b-88b2-b82d15833867" + "309c4b1d-0b4c-429a-96cc-2117adee16da" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -436,7 +436,7 @@ "no-cache" ], "x-ms-request-id": [ - "f9ffeff2-a304-4c08-86c1-704e98145e10" + "40d00551-be05-4170-b9a2-d16ef4e41f6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,20 +444,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "ea766e6f-79c4-4987-b936-fe81c6112cee" + "a6681f01-dadb-4cd8-9397-e8582bbad544" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031938Z:ea766e6f-79c4-4987-b936-fe81c6112cee" + "WESTUS2:20180525T185743Z:a6681f01-dadb-4cd8-9397-e8582bbad544" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:38 GMT" + "Fri, 25 May 2018 18:57:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,21 +466,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updateApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updateApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZUFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31dc1b19-826a-45fa-b7bb-935ec79969b4" + "3a811336-10e0-4014-bd61-b45e1ae415e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -493,7 +493,7 @@ "no-cache" ], "x-ms-request-id": [ - "162ff286-b8f6-44a8-8fba-a94f90091612" + "f79135d3-5f26-4947-b70d-b52215ec4cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,20 +501,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "19a47e33-32be-49e7-bb10-46af4e3106b1" + "9fce7b6f-efb8-467c-a3d6-dd9adcc902ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031938Z:19a47e33-32be-49e7-bb10-46af4e3106b1" + "WESTUS2:20180525T185744Z:9fce7b6f-efb8-467c-a3d6-dd9adcc902ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:38 GMT" + "Fri, 25 May 2018 18:57:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -525,9 +525,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json index 5203ce969d8d..43cce1c2f9b8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvbz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1a538e0-fe9d-4c1a-9f49-fbf8c8079ebe" + "604b3f53-624c-47e1-9b5a-5bbca87b083f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"updatePoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-updatepoolwithappl-4a358fdb664073254e74693d5d6d8255aed78782/updatepoolwithapplicationpackage-foo-2f656f1b-8893-4fc8-95c8-877aae70c450?sv=2015-04-05&sr=b&sig=Si12P1iQA2hhZDBGlS4xPYyC8haS6ehAxVL%2B0jgw3tY%3D&st=2017-10-06T03%3A14%3A47Z&se=2017-10-06T07%3A19%3A47Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:47.5338143Z\",\r\n \"state\": \"pending\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"updatePoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-updatepoolwithappl-4a358fdb664073254e74693d5d6d8255aed78782/updatepoolwithapplicationpackage-foo-a8ddbdd8-dc9d-458a-84b8-0cf2c579ad58?sv=2015-04-05&sr=b&sig=axg86ILq2Id3j91567lLSqnsEYOJPBX45I36Ke4BgAs%3D&st=2018-05-25T18%3A53%3A28Z&se=2018-05-25T22%3A58%3A28Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:58:28.3926314Z\",\r\n \"state\": \"pending\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "452" + "458" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "b6a45419-dfc8-43fe-a38c-e3fce216e650" + "4dfca3e5-4ddb-4ed5-8b5f-b6afcb0ab2bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,16 +46,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "f1643140-d4b9-4fd7-a744-95bb237d6cd5" + "16ae38fb-3480-4098-81c5-5df0f466b757" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031947Z:f1643140-d4b9-4fd7-a744-95bb237d6cd5" + "WESTUS2:20180525T185828Z:16ae38fb-3480-4098-81c5-5df0f466b757" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -64,8 +64,8 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { @@ -76,32 +76,32 @@ "260" ], "client-request-id": [ - "9245c70e-0b3f-4884-815f-fd2feb858d5e" + "026b5dde-aad2-4292-8906-ec18a0ea512b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:28 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "685500d1-fa0a-40ee-b21b-273623f59b75" + "36fc0acc-0d65-4a79-b0a9-496e91b5966f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,16 +113,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testUpdatePoolWithAppPackages" + "https://batchtestaccount.westus.batch.azure.com/pools/testUpdatePoolWithAppPackages" ], "Date": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:28 GMT" ], "ETag": [ - "0x8D50C6919497A42" + "0x8D5C271809D527E" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testUpdatePoolWithAppPackages" + "https://batchtestaccount.westus.batch.azure.com/pools/testUpdatePoolWithAppPackages" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updatePoolWithApplicationPackage/versions/foo/activate?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updatePoolWithApplicationPackage/versions/foo/activate?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvby9hY3RpdmF0ZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { @@ -143,15 +143,15 @@ "23" ], "x-ms-client-request-id": [ - "5e7b7b71-e3fb-4d17-9a58-95844f698742" + "78c817df-c8e8-4ce1-af3a-ec3a96a5a60e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -161,13 +161,13 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7a2eec9f-1ced-4854-b0d8-60cfa0c744e9" + "954267e8-55d2-4595-a61b-455374e7a109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -176,22 +176,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "90e315b9-a329-405d-88f2-22014e510623" + "08c16ecf-5bc5-41dc-8916-22e2c75dc17e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031948Z:90e315b9-a329-405d-88f2-22014e510623" + "WESTUS2:20180525T185829Z:08c16ecf-5bc5-41dc-8916-22e2c75dc17e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "ETag": [ - "0x8D50C691948E86B" + "0x8D5C27180639901" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -200,28 +200,28 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvbz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05c2025f-d413-4dba-b369-5dbcd8b8114d" + "43671cf6-2775-4bc4-be9b-cb8e15d40c2c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"updatePoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-updatepoolwithappl-4a358fdb664073254e74693d5d6d8255aed78782/updatepoolwithapplicationpackage-foo-2f656f1b-8893-4fc8-95c8-877aae70c450?sv=2015-04-05&sr=b&sig=sHRmRr33SafcMRZhH%2BpQR%2FZpBXV7KUCWC6JXzPtYVec%3D&st=2017-10-06T03%3A14%3A48Z&se=2017-10-06T07%3A19%3A48Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:48.4805043Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2017-10-06T03:19:48.3711457Z\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"updatePoolWithApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-updatepoolwithappl-4a358fdb664073254e74693d5d6d8255aed78782/updatepoolwithapplicationpackage-foo-a8ddbdd8-dc9d-458a-84b8-0cf2c579ad58?sv=2015-04-05&sr=b&sig=b1KnFoSls3g9r3fecD1%2Feb5ZGwgbQCyWhCNl05AGgmA%3D&st=2018-05-25T18%3A53%3A29Z&se=2018-05-25T22%3A58%3A29Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:58:29.3990947Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2018-05-25T18:58:29.2429752Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "520" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -230,16 +230,16 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-request-id": [ - "2df6d449-a733-485c-8339-de285ea3db7b" + "a0ab1994-ab8f-4b00-afab-dd92926abd6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -248,19 +248,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "a707dec5-d517-46d1-9a53-4144e1bada65" + "37ee5d63-932d-42f4-b96b-7fd24d8ce45f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031948Z:a707dec5-d517-46d1-9a53-4144e1bada65" + "WESTUS2:20180525T185829Z:37ee5d63-932d-42f4-b96b-7fd24d8ce45f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "ETag": [ - "0x8D50C6919C189F0" + "0x8D5C27180E7B5A9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -269,41 +269,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "746cf91a-6f36-466f-90fc-e16a357c7494" + "a06c01b7-a6ef-4a90-ac1b-919a63ac53de" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D50C6919497A42\",\r\n \"lastModified\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"creationTime\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D5C271809D527E\",\r\n \"lastModified\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"creationTime\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:47 GMT" + "Fri, 25 May 2018 18:58:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a1f017ae-23a1-4441-a0c9-1ce29d99603f" + "8bf49e38-62a4-4519-8ca8-5c58fc162015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,10 +315,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "ETag": [ - "0x8D50C6919497A42" + "0x8D5C271809D527E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -327,41 +327,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5f849384-4711-40bb-8906-52c9fede5543" + "63c8b9b5-ab2f-41be-877d-ce47413e940a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D50C6919D83A63\",\r\n \"lastModified\": \"2017-10-06T03:19:48.7493731Z\",\r\n \"creationTime\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:19:47.8138434Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"updatepoolwithapplicationpackage\",\r\n \"version\": \"foo\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D5C2718132E724\",\r\n \"lastModified\": \"2018-05-25T18:58:29.7483044Z\",\r\n \"creationTime\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:58:28.7680126Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"updatepoolwithapplicationpackage\",\r\n \"version\": \"foo\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "40d257f6-1939-4f95-bc86-31c9bb100c2e" + "e4d2dd1d-8b63-419f-a320-21dff56bb478" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,10 +373,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "ETag": [ - "0x8D50C6919D83A63" + "0x8D5C2718132E724" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -385,8 +385,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages/updateproperties?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/testUpdatePoolWithAppPackages/updateproperties?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"certificateReferences\": [],\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"updatePoolWithApplicationPackage\",\r\n \"version\": \"foo\"\r\n }\r\n ],\r\n \"metadata\": []\r\n}", "RequestHeaders": { @@ -397,20 +397,20 @@ "195" ], "client-request-id": [ - "0a86961e-0701-4b1f-aee8-f56efddc4432" + "dc863e7c-f7b3-4e0a-9252-5e382e994097" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -419,10 +419,10 @@ "0" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "request-id": [ - "6e2662c0-e117-4443-98a5-abe667e55173" + "d76cc0bb-2493-4b1e-9cbf-eb5c2f803554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -434,13 +434,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testUpdatePoolWithAppPackages/updateproperties" + "https://batchtestaccount.westus.batch.azure.com/pools/testUpdatePoolWithAppPackages/updateproperties" ], "Date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:29 GMT" ], "ETag": [ - "0x8D50C6919D83A63" + "0x8D5C2718132E724" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -449,21 +449,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlL3ZlcnNpb25zL2Zvbz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f44049b-ac27-48f6-b1c6-27657b9ce7d9" + "0ba9392b-ea48-412a-9e39-14e683068b4e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -476,7 +476,7 @@ "no-cache" ], "x-ms-request-id": [ - "c79444fc-e481-4b24-9b6e-1c4a2610bc3f" + "2d9aea3d-ef2c-43c9-87b5-641562ce4686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,20 +484,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "b3aa788d-20ae-4867-b3fd-ce86734a5258" + "c9899bce-3336-4ed2-874a-cdf365349374" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031949Z:b3aa788d-20ae-4867-b3fd-ce86734a5258" + "WESTUS2:20180525T185830Z:c9899bce-3336-4ed2-874a-cdf365349374" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:48 GMT" + "Fri, 25 May 2018 18:58:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -506,21 +506,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/updatePoolWithApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/updatePoolWithApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3VwZGF0ZVBvb2xXaXRoQXBwbGljYXRpb25QYWNrYWdlP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77ad274d-67c1-4b9e-b9a7-6343e1276b24" + "bede77d8-cafb-4280-a20f-c688701170a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -533,7 +533,7 @@ "no-cache" ], "x-ms-request-id": [ - "93f2602f-1d26-4134-abb7-7f8a2c306f97" + "dd8ade9b-903d-4f4e-ab6e-9fef10424a1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,20 +541,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" ], "x-ms-correlation-request-id": [ - "9b264f36-4e0d-4df2-b69b-ee6474cfe98c" + "13d8d535-76a8-4aa4-b743-290da7d86edf" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031949Z:9b264f36-4e0d-4df2-b69b-ee6474cfe98c" + "WESTUS2:20180525T185830Z:13d8d535-76a8-4aa4-b743-290da7d86edf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:49 GMT" + "Fri, 25 May 2018 18:58:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,26 +563,26 @@ "StatusCode": 204 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5caff7b9-93c4-46d6-8305-65d1f5464795" + "90028b34-c9a8-4a2c-a1a0-5223ba8ed0c1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:19:49 GMT" + "Fri, 25 May 2018 18:58:30 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -591,7 +591,7 @@ "chunked" ], "request-id": [ - "938a3455-93cb-4618-85ae-7790e4311190" + "ac2eadd4-b886-4633-b03a-c0f6c4bf8019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,7 +603,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:19:49 GMT" + "Fri, 25 May 2018 18:58:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -614,9 +614,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json index 2e2b44b71c3a..b7b81ced063d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/newApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/newApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL25ld0FwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d5e14c0-df94-4c92-82d2-2d0e36f26a12" + "ed83410b-9bb4-4914-b346-747e2a0971ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"newApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-newapplicationpack-b74fa09770130f03cc6d783f5307ccc689c45409/newapplicationpackage-foo-e008bb33-4d0b-445c-9d23-2219c4cd16b5?sv=2015-04-05&sr=b&sig=6%2By2QNKc%2FZ51tZGFo34ESZCJMblL%2BziJJBP496RzNY4%3D&st=2017-10-06T03%3A14%3A12Z&se=2017-10-06T07%3A19%3A12Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:12.1180915Z\",\r\n \"state\": \"pending\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"newApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-newapplicationpack-b74fa09770130f03cc6d783f5307ccc689c45409/newapplicationpackage-foo-abb14457-8823-45e6-812f-ce8cb587f1a6?sv=2015-04-05&sr=b&sig=ZPbn30YdmrFaTBBiHLG%2FOe4vF0JJdLvHsLLyY9%2BU0qM%3D&st=2018-05-25T18%3A52%3A55Z&se=2018-05-25T22%3A57%3A55Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:57:55.3981174Z\",\r\n \"state\": \"pending\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "434" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +37,7 @@ "1199" ], "x-ms-request-id": [ - "8186e83e-9640-4a68-8f33-99f60e04587d" + "0d045aa4-5bcb-412e-b0a7-abc447a659f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,16 +46,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "5e707e75-df6b-49c2-993b-7cf73afdb30f" + "be3a9534-181e-41a6-928b-feb6bb9fbfca" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031911Z:5e707e75-df6b-49c2-993b-7cf73afdb30f" + "WESTUS2:20180525T185755Z:be3a9534-181e-41a6-928b-feb6bb9fbfca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:11 GMT" + "Fri, 25 May 2018 18:57:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -64,8 +64,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/newApplicationPackage/versions/foo/activate?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/newApplicationPackage/versions/foo/activate?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL25ld0FwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { @@ -76,15 +76,15 @@ "23" ], "x-ms-client-request-id": [ - "4cf42bba-2228-49be-926a-619594374925" + "aff06522-7fe9-43ea-8286-06bb69f64955" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -94,13 +94,13 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:12 GMT" + "Fri, 25 May 2018 18:57:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "51ff8b4c-b720-4efd-9a03-d36bb193be87" + "20000dc7-225c-456a-9bfb-c675d11b2a97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,19 +112,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "80498708-0f4e-42b0-9a80-bb213cc0b114" + "4cde35bc-ef08-4b17-819d-cdd86a977cec" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031912Z:80498708-0f4e-42b0-9a80-bb213cc0b114" + "WESTUS2:20180525T185755Z:4cde35bc-ef08-4b17-819d-cdd86a977cec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:12 GMT" + "Fri, 25 May 2018 18:57:55 GMT" ], "ETag": [ - "0x8D50C6904101665" + "0x8D5C2716CB90AE3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -133,28 +133,28 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/newApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/newApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL25ld0FwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45e79202-29d6-43ee-9791-70e6cff9d72a" + "664b03e7-bb1b-4b54-b55c-cabae75cb925" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"newApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://matthchr1.blob.core.windows.net/app-newapplicationpack-b74fa09770130f03cc6d783f5307ccc689c45409/newapplicationpackage-foo-e008bb33-4d0b-445c-9d23-2219c4cd16b5?sv=2015-04-05&sr=b&sig=H2togtJ8Hf%2BF5qeYoozhCN5r8Q6r%2Fmg70jC6OecWEHY%3D&st=2017-10-06T03%3A14%3A13Z&se=2017-10-06T07%3A19%3A13Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2017-10-06T07:19:13.175039Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2017-10-06T03:19:12.8641897Z\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"newApplicationPackage\",\r\n \"version\": \"foo\",\r\n \"storageUrl\": \"https://batchtestaccount1.blob.core.windows.net/app-newapplicationpack-b74fa09770130f03cc6d783f5307ccc689c45409/newapplicationpackage-foo-abb14457-8823-45e6-812f-ce8cb587f1a6?sv=2015-04-05&sr=b&sig=ZPbn30YdmrFaTBBiHLG%2FOe4vF0JJdLvHsLLyY9%2BU0qM%3D&st=2018-05-25T18%3A52%3A55Z&se=2018-05-25T22%3A57%3A55Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2018-05-25T22:57:55.9782255Z\",\r\n \"state\": \"active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2018-05-25T18:57:55.8576464Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "497" + "506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +163,7 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:19:13 GMT" + "Fri, 25 May 2018 18:57:55 GMT" ], "Pragma": [ "no-cache" @@ -172,7 +172,7 @@ "14999" ], "x-ms-request-id": [ - "a3d04945-f529-4609-9cec-1ccf21f542b5" + "beac5efc-81e8-4efd-ab6c-e190e7de12a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,19 +181,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "63f8415c-95a1-4a6f-b3c8-ce31c2ba417b" + "a0e9c9b5-cc55-4113-a4c8-7872e4174aa8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031912Z:63f8415c-95a1-4a6f-b3c8-ce31c2ba417b" + "WESTUS2:20180525T185756Z:a0e9c9b5-cc55-4113-a4c8-7872e4174aa8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:12 GMT" + "Fri, 25 May 2018 18:57:55 GMT" ], "ETag": [ - "0x8D50C69049ABC9E" + "0x8D5C2716D0121BE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -202,21 +202,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/newApplicationPackage/versions/foo?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/newApplicationPackage/versions/foo?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL25ld0FwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e56f7bf5-45e9-4c84-991c-d3bb94b844d7" + "d2f15b4a-ca91-4660-8a66-5522a5aabccc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -229,7 +229,7 @@ "no-cache" ], "x-ms-request-id": [ - "c6bfd514-183c-4870-a63f-1509b1eb5427" + "399cc926-26bd-43e7-a893-0ad8e07972b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,20 +237,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "9725fc8d-bb9b-4118-8415-5799bea2ed9e" + "eb7b9ee0-da57-40f9-bcc3-ab8ccbaf63f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031913Z:9725fc8d-bb9b-4118-8415-5799bea2ed9e" + "WESTUS2:20180525T185756Z:eb7b9ee0-da57-40f9-bcc3-ab8ccbaf63f5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:13 GMT" + "Fri, 25 May 2018 18:57:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,21 +259,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/newApplicationPackage?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/newApplicationPackage?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL25ld0FwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35dc65e8-dc5e-49b0-a9a1-e96a90e4e919" + "5e0a0b7c-0a69-40c5-bd4e-be8e971bb3d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -286,7 +286,7 @@ "no-cache" ], "x-ms-request-id": [ - "70ecd3be-db46-4d2e-9267-f86898d8ef93" + "ebb1a4f4-cada-4bc4-8f11-9c2934a0067c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,20 +294,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "b1b6b440-ba27-4cee-9e92-6a66ed377df5" + "d9eef0cc-2366-4547-9d60-73f028ad4ca5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171006T031913Z:b1b6b440-ba27-4cee-9e92-6a66ed377df5" + "WESTUS2:20180525T185756Z:d9eef0cc-2366-4547-9d60-73f028ad4ca5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:19:13 GMT" + "Fri, 25 May 2018 18:57:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -318,9 +318,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json index 66b25f39c2d6..b7836203dd46 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/test?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/test?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3Rlc3Q/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { @@ -13,15 +13,15 @@ "2" ], "x-ms-client-request-id": [ - "488e8925-0dd5-4119-b3f6-23e007cef4d2" + "9118abe9-e25c-4a2b-9532-9717419b473c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -40,10 +40,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "ba045387-8a14-4dea-a71b-a3447aa9a35b" + "6fcbc142-213f-4ec0-b9c0-2ac9ed6384ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,16 +52,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "b9b09103-1d4f-41a6-9e6a-8fc2eb066efd" + "b162330c-eab4-4a80-a5e1-c8da19a3f621" ], "x-ms-routing-request-id": [ - "WESTUS:20171006T031001Z:b9b09103-1d4f-41a6-9e6a-8fc2eb066efd" + "WESTUS2:20180525T184130Z:b162330c-eab4-4a80-a5e1-c8da19a3f621" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:10:01 GMT" + "Fri, 25 May 2018 18:41:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -70,21 +70,21 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/test?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/test?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3Rlc3Q/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc637685-0b0d-46eb-a6ef-88488c2fc6e6" + "2c98b6dd-516d-4089-9e71-310315025889" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -100,16 +100,16 @@ "-1" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:01 GMT" + "Fri, 25 May 2018 18:41:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "ce0936d9-cb35-4742-9631-22b53d5f6bb5" + "3fc4b4fe-9b13-4dc2-a0df-4f88e5e59c03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -118,19 +118,19 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "8b9e8711-2779-4d32-a593-263c93dfc76d" + "b197e025-2592-48a5-ae69-d50ea9e3c865" ], "x-ms-routing-request-id": [ - "WESTUS:20171006T031001Z:8b9e8711-2779-4d32-a593-263c93dfc76d" + "WESTUS2:20180525T184131Z:b197e025-2592-48a5-ae69-d50ea9e3c865" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:10:01 GMT" + "Fri, 25 May 2018 18:41:30 GMT" ], "ETag": [ - "0x8D50C67BBEC5E13" + "0x8D5C26F21F1CF27" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -139,21 +139,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/matthchrwestcentralus/providers/Microsoft.Batch/batchAccounts/matthchrwestcentralus/applications/test?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL21hdHRoY2hyd2VzdGNlbnRyYWx1cy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvbWF0dGhjaHJ3ZXN0Y2VudHJhbHVzL2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/resourceGroups/antoniowtestbatchrg/providers/Microsoft.Batch/batchAccounts/batchtestaccount/applications/test?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Jlc291cmNlR3JvdXBzL2FudG9uaW93dGVzdGJhdGNocmcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2JhdGNodGVzdGFjY291bnQvYXBwbGljYXRpb25zL3Rlc3Q/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ea652e6-db4d-45ff-89e3-d6e59a72c5d5" + "8074f17e-af84-486e-8d92-8cc5d4273106" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -166,7 +166,7 @@ "no-cache" ], "x-ms-request-id": [ - "47949d5a-90ec-4be0-b645-353883b51c2e" + "9014c7bf-aa95-4189-8be9-9308fffe94f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,20 +174,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "f38c2c32-4b31-4de5-8466-00f12a6d957c" + "6426bdc4-ef8c-42bc-9747-5315924f8376" ], "x-ms-routing-request-id": [ - "WESTUS:20171006T031001Z:f38c2c32-4b31-4de5-8466-00f12a6d957c" + "WESTUS2:20180525T184131Z:6426bdc4-ef8c-42bc-9747-5315924f8376" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:10:01 GMT" + "Fri, 25 May 2018 18:41:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -198,9 +198,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file 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 f07e78601d5d..3570dabbf265 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 @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d338e2ab-37eb-4eef-821d-30941fb7b105" + "b5402240-cf79-41af-8781-1bd290ce42a3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:19 GMT" + "Fri, 25 May 2018 18:54:24 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "acbd2798-be3e-404c-bb7e-776677ec15f3" + "eabb0a1e-bb61-4b0c-9d57-590a6b86f99e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:18 GMT" + "Fri, 25 May 2018 18:54:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,29 +53,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2349caeb-c63b-40cc-9721-b7d4206050c5" + "0d0094f8-9966-4e81-8eed-7a5ab205a378" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:24 GMT" + "Fri, 25 May 2018 18:54:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -84,7 +84,7 @@ "chunked" ], "request-id": [ - "7ae21780-3c76-429a-9f27-bec91134edb0" + "67b01683-f7b6-4c35-af45-6c5a71e28b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -96,7 +96,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:23 GMT" + "Fri, 25 May 2018 18:54:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,29 +105,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9bbdcf03-4d42-4b05-b699-051814ecf35e" + "1ce49d13-3e8d-4794-8d3f-b14d9c30ff77" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:29 GMT" + "Fri, 25 May 2018 18:54:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -136,7 +136,7 @@ "chunked" ], "request-id": [ - "733d6c9f-441b-48ae-a228-45076a134369" + "0cc4ef08-3976-4dfe-ad51-598a7336f1de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:28 GMT" + "Fri, 25 May 2018 18:54:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -157,29 +157,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b7a45a8b-990d-4f15-8247-ed799328d1fd" + "da447d19-ea4b-4cbd-ba7f-21015a359f95" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:34 GMT" + "Fri, 25 May 2018 18:54:39 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -188,7 +188,7 @@ "chunked" ], "request-id": [ - "e8fa12a1-ecb8-4621-9e0e-4e58e2d0b54c" + "02bf5bba-d65c-41e4-86d8-0716a1daae6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -200,7 +200,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:33 GMT" + "Fri, 25 May 2018 18:54:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -209,29 +209,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2ede08dc-cff4-4151-ae74-e1493ad7c09b" + "73281a25-4a71-48c3-a803-28e1f9873663" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:39 GMT" + "Fri, 25 May 2018 18:54:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -240,7 +240,7 @@ "chunked" ], "request-id": [ - "18f0b032-3c20-4303-95e2-bb295a7fc16a" + "e52ddebb-b7a8-4fcd-9341-eb8b80f22434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,7 +252,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:39 GMT" + "Fri, 25 May 2018 18:54:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -261,29 +261,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1fe318ff-cab6-42ab-b4f0-53549a26f992" + "7f53fc2d-7bf5-4ded-9f4d-6eb484460090" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:44 GMT" + "Fri, 25 May 2018 18:54:49 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -292,7 +292,7 @@ "chunked" ], "request-id": [ - "ee9983cb-d9aa-43fd-9a9c-874c2fb8c8a4" + "2df5dda2-b09e-497a-9937-a348248e9025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,7 +304,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:44 GMT" + "Fri, 25 May 2018 18:54:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -313,29 +313,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "788ed896-9af7-478a-87f2-5bcaa3681112" + "9e1e7881-d8b3-40fc-aac2-5aa10516e216" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:49 GMT" + "Fri, 25 May 2018 18:54:54 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -344,7 +344,7 @@ "chunked" ], "request-id": [ - "0b7de1d4-d1a8-41ad-88d4-8fe77e3cffa4" + "e3ed7b00-c64e-42b7-a11c-559b7af3a7f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -356,7 +356,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:49 GMT" + "Fri, 25 May 2018 18:54:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -365,29 +365,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2c8fdeda-cd8c-48dd-b259-b5051970a9e9" + "22cbfc44-ff9e-436f-a84a-8ea85c1d09fc" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:54 GMT" + "Fri, 25 May 2018 18:54:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -396,7 +396,7 @@ "chunked" ], "request-id": [ - "8fbe423c-0670-4724-bf9f-4935ae147da8" + "865cb400-636b-4a16-952d-97d0c6e21251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -408,7 +408,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:54 GMT" + "Fri, 25 May 2018 18:54:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -417,29 +417,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bfac2f8e-0458-465b-a6a0-42f4b3346fe9" + "018314b7-58bf-4ccd-b88b-0290e92c42c3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:59 GMT" + "Fri, 25 May 2018 18:55:04 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -448,7 +448,7 @@ "chunked" ], "request-id": [ - "ad4116a2-e970-4c42-a05b-d1150b05e05f" + "48cc3b2a-3877-4c7c-b327-c1c157a7568d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,7 +460,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:59 GMT" + "Fri, 25 May 2018 18:55:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -469,29 +469,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bf1d56df-582f-4f18-a483-7617326af5fa" + "f12cd6e5-92f0-46a9-b077-d57ee7359b83" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:04 GMT" + "Fri, 25 May 2018 18:55:09 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -500,7 +500,7 @@ "chunked" ], "request-id": [ - "3afad07a-bece-40f3-aa3c-c1b6a3359c70" + "fd2d0ef1-6e95-48d2-8dee-085f5700fd82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,7 +512,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:04 GMT" + "Fri, 25 May 2018 18:55:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -521,29 +521,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "102e94f2-6d7e-47ae-8445-e00a622ddbe8" + "6f279f38-2f06-41ae-9285-062916cbc28c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:09 GMT" + "Fri, 25 May 2018 18:55:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -552,7 +552,7 @@ "chunked" ], "request-id": [ - "3c2bf31d-934d-4b4b-bbd3-9f66e0353d6a" + "f1f28a07-b4a6-446b-8a33-ba6b1e692222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,7 +564,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:09 GMT" + "Fri, 25 May 2018 18:55:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,29 +573,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d8707dad-5e63-4935-956d-53c932960131" + "20173957-879d-43a1-9910-bab583109793" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:14 GMT" + "Fri, 25 May 2018 18:55:19 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -604,7 +604,7 @@ "chunked" ], "request-id": [ - "5c31a1c2-e5d6-4b67-b580-74d8cff351e8" + "c5f0f2e9-3ee8-4519-b0a6-ca5ad1cf38fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,7 +616,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:14 GMT" + "Fri, 25 May 2018 18:55:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -625,29 +625,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e40e8a54-9809-491d-b1c4-eac10c8d0bf8" + "258c57d1-34d7-4347-a014-71746a0c8e92" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:19 GMT" + "Fri, 25 May 2018 18:55:24 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -656,7 +656,7 @@ "chunked" ], "request-id": [ - "d6d47ca5-4f3b-48ef-9195-3ba2b183e228" + "b24019ef-44c7-48f7-a98c-dc07ff27ce6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -668,7 +668,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:19 GMT" + "Fri, 25 May 2018 18:55:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -677,29 +677,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac5eb6de-faa2-45d4-bea4-d3af87e071d8" + "7b8abdf3-e579-488a-9dd4-361cddc96bc1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:24 GMT" + "Fri, 25 May 2018 18:55:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -708,7 +708,7 @@ "chunked" ], "request-id": [ - "62973a92-7ddf-48ad-8a5e-400a5eb1bdf3" + "baec6972-a9ca-4437-8407-4cf3bf2f7554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,7 +720,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:24 GMT" + "Fri, 25 May 2018 18:55:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -729,29 +729,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4a3ce789-db1f-45f8-ae3e-d101d21db737" + "9672741c-fc38-49d6-8b04-ed094387eb32" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:29 GMT" + "Fri, 25 May 2018 18:55:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -760,7 +760,7 @@ "chunked" ], "request-id": [ - "fd33c7e2-a6c9-4fbc-8304-b3018d762f87" + "43354240-3502-404d-b9e4-5fe913513307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -772,7 +772,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:29 GMT" + "Fri, 25 May 2018 18:55:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -781,29 +781,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e3d0f83b-0eca-4830-960f-3dd3563c87c6" + "b3f089b3-9e89-43d9-9c86-7d2048f52fbc" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:34 GMT" + "Fri, 25 May 2018 18:55:39 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -812,7 +812,7 @@ "chunked" ], "request-id": [ - "6c3c0b72-6101-4693-bd2a-b05774e785d4" + "a903060f-5d25-4176-a2dd-069e18059b58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -824,7 +824,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:34 GMT" + "Fri, 25 May 2018 18:55:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -833,38 +833,38 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "842eab58-48b5-4277-ab69-8dd0ec3baf54" + "584dd7ea-1f03-474e-a1ea-ec5bbe318157" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:39 GMT" + "Fri, 25 May 2018 18:55:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.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:fce47fe8-5d03-4dd8-9fb4-de7a00fcb5ca\\nTime:2018-05-25T18:55:44.9374762Z\"\r\n }\r\n}", "ResponseHeaders": { + "Content-Length": [ + "351" + ], "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Transfer-Encoding": [ - "chunked" - ], "request-id": [ - "4a64e262-3174-40b9-88a5-8707c2087cb1" + "fce47fe8-5d03-4dd8-9fb4-de7a00fcb5ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,47 +876,50 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:39 GMT" + "Fri, 25 May 2018 18:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkc2VsZWN0PXRodW1icHJpbnQlMkNzdGF0ZQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/certificates?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", + "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": { + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "816" + ], "client-request-id": [ - "f43aee4e-870b-4d67-a2aa-715f67ced4f4" + "1f3493e1-41f9-42ef-9484-09e3e5ec43ac" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" + "Fri, 25 May 2018 18:55:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.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:716709e0-a468-4bba-9cfe-2a96617b10d4\\nTime:2017-10-06T03:21:44.5006018Z\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "363" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "716709e0-a468-4bba-9cfe-2a96617b10d4" + "125192a3-60c2-4d20-962b-ec2893e819ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,51 +930,60 @@ "DataServiceVersion": [ "3.0" ], + "DataServiceId": [ + "https://batchtestaccount.westus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + ], "Date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" + "Fri, 25 May 2018 18:55:44 GMT" + ], + "Location": [ + "https://batchtestaccount.westus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 404 + "StatusCode": 201 }, { - "RequestUri": "/certificates?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "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}", + "RequestBody": "{\r\n \"id\": \"certPool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 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\": [\r\n \"task\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "816" + "505" ], "client-request-id": [ - "f6cd189f-d528-4e23-8325-68795ed8feb2" + "857571a2-570c-4ae5-aa0a-0d97a73359d7" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" + "Fri, 25 May 2018 18:55:45 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { + "Last-Modified": [ + "Fri, 25 May 2018 18:55:45 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3bc59385-55ef-48dd-83aa-e228b03c2f8c" + "e3e3c0ed-1062-4246-a572-e73846b8dc28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,13 +995,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://batchtestaccount.westus.batch.azure.com/pools/certPool" ], "Date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" + "Fri, 25 May 2018 18:55:44 GMT" + ], + "ETag": [ + "0x8D5C2711F1B5021" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://batchtestaccount.westus.batch.azure.com/pools/certPool" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -998,44 +1013,35 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"certPool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 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\": [\r\n \"task\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "Content-Length": [ - "505" - ], "client-request-id": [ - "452f9b43-3a65-4fe9-8cad-67463dd2b038" + "fca68f5a-2540-4686-beaa-813a6148939a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:45 GMT" + "Fri, 25 May 2018 18:55:45 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { - "Last-Modified": [ - "Fri, 06 Oct 2017 03:21:45 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1d18cdb0-493e-4579-9ea7-1d9581fd0fb4" + "71cfa2e7-75a5-4007-8785-c5f81c7fe3e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1046,45 +1052,36 @@ "DataServiceVersion": [ "3.0" ], - "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/certPool" - ], "Date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" - ], - "ETag": [ - "0x8D50C695F3AEFD3" - ], - "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/certPool" + "Fri, 25 May 2018 18:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ca477647-3016-4bc5-af6e-25fe14f2dee5" + "05040545-bfd2-4d6e-9b65-d0c1e08d6d2a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:45 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -1093,7 +1090,7 @@ "chunked" ], "request-id": [ - "b716592c-7713-46e8-8187-1f544cd9f577" + "a63d39b0-bbfe-442f-ac2a-a6e3d093c08d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,7 +1102,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1114,35 +1111,38 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", - "RequestMethod": "DELETE", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d4e0f323-4c38-4c47-946d-c8878f340be0" + "15901039-ce6a-4d10-a320-c39e81bb3b43" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:46 GMT" + "Fri, 25 May 2018 18:55:45 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f8da47da-a3ed-4324-a654-ce643ad173a9" + "bb85daf9-47ea-4271-9b2a-5f081c02cb0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,38 +1154,38 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:46 GMT" + "Fri, 25 May 2018 18:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "082c56b5-5094-4738-9b90-71003292569d" + "9722e87e-e040-440e-9c37-15a40d6adf6d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:45 GMT" + "Fri, 25 May 2018 18:55:55 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:44.9790319Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" @@ -1194,7 +1194,7 @@ "chunked" ], "request-id": [ - "f34b4a95-1968-4b8a-9107-e4a6d73aa8c8" + "94b35ec3-d972-4881-83e3-96fe3a746b35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1206,7 +1206,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:44 GMT" + "Fri, 25 May 2018 18:55:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,29 +1215,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b6518fdc-127d-4fb4-8f57-898bb4be707d" + "7038c3b5-0394-4c18-bc72-1a456058cb23" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:21:55 GMT" + "Fri, 25 May 2018 18:56:05 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:44.9790319Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" @@ -1246,7 +1246,7 @@ "chunked" ], "request-id": [ - "8d11ff85-c595-42e5-a534-0c2dfa91e51c" + "6bc18a1a-c970-4cd0-b1a4-f7128a3fe05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1258,7 +1258,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:21:55 GMT" + "Fri, 25 May 2018 18:56:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1267,29 +1267,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9da4c43d-58e4-4377-b4cc-de255e8e14df" + "8fbb7862-7c85-4a11-a936-05aaf6d665b8" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:05 GMT" + "Fri, 25 May 2018 18:56:15 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:44.9790319Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" @@ -1298,7 +1298,7 @@ "chunked" ], "request-id": [ - "e75dc7f0-4f1c-4f58-9444-18e0123e699c" + "eeafa5c2-ff5f-4d53-82cb-d07c2086fe77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,7 +1310,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:05 GMT" + "Fri, 25 May 2018 18:56:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1319,29 +1319,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a0a206df-4104-4b21-b506-2d38bde6637c" + "99b5df31-7c74-48b8-84af-e837b0298cca" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:15 GMT" + "Fri, 25 May 2018 18:56:25 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:44.9790319Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" @@ -1350,7 +1350,7 @@ "chunked" ], "request-id": [ - "223d9d10-e241-4cb9-8702-34540fc33377" + "26525c87-fb76-45d5-a4c9-028a1f8f0175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1362,7 +1362,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:15 GMT" + "Fri, 25 May 2018 18:56:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1371,29 +1371,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "73587d58-7278-4b43-bffe-dc7f5da2d60f" + "4e2d4297-420d-426f-af5d-1f80eb9796a9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:25 GMT" + "Fri, 25 May 2018 18:56:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:44.9790319Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" @@ -1402,7 +1402,7 @@ "chunked" ], "request-id": [ - "67b3b499-df43-4850-b661-f26efca7c3e3" + "fbd0ebe9-56d2-430a-93c7-f87ab6a78e8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1414,7 +1414,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:25 GMT" + "Fri, 25 May 2018 18:56:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1423,29 +1423,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1d3c97fa-795d-40be-a09b-64e5ce09d4be" + "0a9a52c9-1e09-4375-922f-73a069d8ac56" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:35 GMT" + "Fri, 25 May 2018 18:56:45 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:44.9790319Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.0150823Z\",\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" @@ -1454,7 +1454,7 @@ "chunked" ], "request-id": [ - "20308253-d045-4704-879c-c5eeb761ba79" + "88be3e89-a228-429c-8833-97227800c71d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1466,7 +1466,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:35 GMT" + "Fri, 25 May 2018 18:56:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1475,29 +1475,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9da11c44-25f7-4883-9929-76ab5f94a5b4" + "a49a290c-1b21-4f66-94b9-cd31031b94da" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:55 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:22:45.6045125Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:56:46.6643031Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\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" @@ -1506,7 +1506,7 @@ "chunked" ], "request-id": [ - "1ec322c7-8fad-46ca-aada-dff67556309e" + "e8244d36-da25-44f9-abbc-777a117e6c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,7 +1518,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1527,29 +1527,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "538c38ed-7186-4769-acc1-f69dcee7be11" + "291185fb-8886-40ff-9e3a-2f426c5fc8ba" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:55 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:22:45.6045125Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:56:46.6643031Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\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" @@ -1558,7 +1558,7 @@ "chunked" ], "request-id": [ - "6d0c13a4-964e-40bb-a0fe-0ebf6cbd12be" + "fd12aae3-2f8e-4ffd-9287-edc503bb03f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,7 +1570,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1579,29 +1579,29 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b456316a-8a84-468b-a7f0-57d00ed3b942" + "4332fcc4-4576-45d5-b0c9-1e16b5e8d628" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:46 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:22:45.6045125Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:21:45.3536348Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:56:46.6643031Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:55:45.329989Z\",\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" @@ -1610,7 +1610,7 @@ "chunked" ], "request-id": [ - "dfcebd35-9398-4448-8360-84c114efb10a" + "0ae23f36-89e5-4a4d-b510-0db1d0ce11bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1622,7 +1622,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1631,26 +1631,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKS9jYW5jZWxkZWxldGU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKS9jYW5jZWxkZWxldGU/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9f5a7d09-6b8d-476f-a3a5-f20e824ab427" + "7d0a6035-794f-4aaf-8292-347bd8e1a108" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:46 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -1659,7 +1659,7 @@ "0" ], "request-id": [ - "176f75e3-abea-427e-8d8f-21f359a0d6aa" + "ef7bb73f-0462-4f7d-a2f8-53ae0d0c2e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,10 +1671,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete" + "https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete" ], "Date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1683,29 +1683,29 @@ "StatusCode": 204 }, { - "RequestUri": "/certificates?api-version=2017-09-01.6.0&$filter=state%20eq%20'active'", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjc=", + "RequestUri": "/certificates?api-version=2018-03-01.6.1&$filter=state%20eq%20'active'", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkZmlsdGVyPXN0YXRlJTIwZXElMjAlMjdhY3RpdmUlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bada4558-012e-4848-a14c-e3a80b0e7041" + "b6f1d7ac-0072-4f03-9073-2e612b51ae5b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:46 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:22:46.1118094Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:22:45.6045125Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:56:56.2686158Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:56:46.6643031Z\",\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" @@ -1714,7 +1714,7 @@ "chunked" ], "request-id": [ - "34126dea-149e-4eff-8357-1bf82cc487a1" + "2956c16a-49d4-4d6e-ba75-647dd2704396" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1726,7 +1726,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1735,26 +1735,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/certPool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/certPool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "890975c8-cd9f-4f2d-973f-596b0dbf4837" + "10dbf032-26fb-4a32-ade3-80f38d5f9a2c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:22:46 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -1763,7 +1763,7 @@ "chunked" ], "request-id": [ - "4dba75ea-be7a-426f-8738-102c19c34f07" + "ef072e1c-0514-46dd-b1ed-da372aaba7ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:22:45 GMT" + "Fri, 25 May 2018 18:56:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1786,9 +1786,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json index 36fc8bbfc0ee..fc5fa6ac9e78 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/certificates?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "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": { @@ -13,20 +13,20 @@ "816" ], "client-request-id": [ - "3234b7a9-0a4b-4e21-aa1a-2f807bbe75da" + "dc0a6775-eda7-4e29-ad4a-91ab583df1c5" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -35,7 +35,7 @@ "chunked" ], "request-id": [ - "f5ea5056-c6f1-43a5-bf10-b5f9bc981b6d" + "3527894a-607b-4800-b27c-4ed7166f2ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,13 +47,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://batchtestaccount.westus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://batchtestaccount.westus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -62,29 +62,29 @@ "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cf9da8e1-b1d0-419d-90ec-05acd7606fd7" + "1fd1976f-422d-4079-a1df-968d622d25df" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:20:10.8294953Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:54:10.5945918Z\",\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" @@ -93,7 +93,7 @@ "chunked" ], "request-id": [ - "15652b01-ed68-4d77-8b08-7f7bb7af3f79" + "fc7357b4-c348-493b-a0ee-b46890c1216d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,26 +114,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "427ef158-8217-4fc4-8c00-59318d108925" + "f76eece2-22d4-4a7f-9160-d02197530aad" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -142,7 +142,7 @@ "chunked" ], "request-id": [ - "af180685-c3d3-4917-97bc-95b5c5beec6c" + "c1b92504-cd01-4264-993b-06825a893b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,7 +154,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -163,29 +163,29 @@ "StatusCode": 202 }, { - "RequestUri": "/certificates?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/certificates?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "29494547-bc7f-459e-8799-0131da2b514f" + "e6c94add-77a0-4f39-97de-5320d790bdff" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:11 GMT" + "Fri, 25 May 2018 18:54:11 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:20:11.0364413Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:20:10.8294953Z\",\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://batchtestaccount.westus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:54:10.9085731Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:54:10.5945918Z\",\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" @@ -194,7 +194,7 @@ "chunked" ], "request-id": [ - "74661932-d73c-4e72-a314-eb2d74316607" + "b70cef84-41d0-4e6c-a789-ac3f61b993e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -206,7 +206,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:10 GMT" + "Fri, 25 May 2018 18:54:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -217,9 +217,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json index ef9c0fb3b685..8afedc6416dd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "adc2a56a-5967-44c7-8b6b-e39000388da6" + "d12aa7dc-f7eb-4c75-ab14-235051eee530" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:52 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:19.346011Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:13:20.967891Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.714012Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.164.86\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.430067Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.936633Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.439947Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.705569Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20180605t170754z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:13:20.147072Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.712534Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.202.29\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.434222Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.115793Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.175795Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.503918Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "762dabde-b0cc-4e80-ba47-568d57044b6c" + "7f72714f-a1ae-4b47-9779-b70682fbfb5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,29 +53,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z?api-version=2018-03-01.6.1&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ed32f52e-d0cb-4e38-aca7-d30f0b1bfb82" + "a6cb0334-5a0f-44cc-9f35-b56b15a1faf3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:53 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -84,7 +84,7 @@ "chunked" ], "request-id": [ - "b6863d38-0bc2-4e6f-8360-df3746a63a0e" + "fba5919e-21ac-42f7-8d94-2a5f894ff015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -96,7 +96,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,29 +105,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9152ae4e-759e-4f8f-b749-1b9b222098b2" + "d44991ad-6c72-47a7-96bc-dd78b9068e65" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:13:20.967891Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.714012Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.164.86\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.430067Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.936633Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.439947Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.705569Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -136,7 +136,7 @@ "chunked" ], "request-id": [ - "5217cbab-a569-4e99-92d3-133ee9b52fe8" + "6dac138c-0115-4a25-bd76-2bff06ba1157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -157,8 +157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/disablescheduling?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L2Rpc2FibGVzY2hlZHVsaW5nP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/disablescheduling?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2Rpc2FibGVzY2hlZHVsaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeDisableSchedulingOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -169,20 +169,20 @@ "50" ], "client-request-id": [ - "636f0070-6a48-4765-ab7c-6c5c447c53de" + "b2a8557b-40e2-4fa0-8afa-b4429af66e04" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -191,7 +191,7 @@ "chunked" ], "request-id": [ - "f88536be-5fb1-4404-8552-c6084d9f1e93" + "38cbb797-c374-48e3-9d38-bb483f3e3c1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -203,10 +203,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/disablescheduling" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/disablescheduling" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -215,29 +215,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0&$select=id%2CschedulingState", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGU=", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z?api-version=2018-03-01.6.1&$select=id%2CschedulingState", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93a74ff7-0e33-4f6e-bcc1-275046ff6137" + "5f254781-2459-40ba-af03-71a09d41e38b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"schedulingState\": \"disabled\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"schedulingState\": \"disabled\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -246,7 +246,7 @@ "chunked" ], "request-id": [ - "2f4192aa-8342-46ce-adc5-ed2f22846cf0" + "82f0360e-8f6d-4236-8985-dc8cd338e386" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,7 +258,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -267,29 +267,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0&$select=id%2CschedulingState", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGU=", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z?api-version=2018-03-01.6.1&$select=id%2CschedulingState", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRzZWxlY3Q9aWQlMkNzY2hlZHVsaW5nU3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9ae7ce30-6cc7-4ce6-831f-b52cb94c1ee5" + "c81126b7-8f46-46ca-a861-a5afbd175010" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:36 GMT" + "Tue, 05 Jun 2018 23:28:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"schedulingState\": \"enabled\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"schedulingState\": \"enabled\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -298,7 +298,7 @@ "chunked" ], "request-id": [ - "3730a807-efd0-4f6f-9452-749acb87f79a" + "ab376349-a8ac-4943-91cf-8ddc9c8e145d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -310,7 +310,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -319,26 +319,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/enablescheduling?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L2VuYWJsZXNjaGVkdWxpbmc/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/enablescheduling?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2VuYWJsZXNjaGVkdWxpbmc/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d02dc559-abd1-4144-bf18-8654782ba2e5" + "34f2688e-eb33-4222-a645-cdf6cc657f04" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:36 GMT" + "Tue, 05 Jun 2018 23:28:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -347,7 +347,7 @@ "chunked" ], "request-id": [ - "d5486cf3-b056-4925-805e-f9112541e09c" + "200c2986-5b92-4931-8ac9-36d91937da97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -359,10 +359,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/enablescheduling" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/enablescheduling" ], "Date": [ - "Fri, 06 Oct 2017 03:13:35 GMT" + "Tue, 05 Jun 2018 23:28:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json index 92e182fb7a8c..5bcf9a9fc66c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/pools/testIaasPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testIaasPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "720781e0-9810-46be-a552-b25b882778ca" + "3dfd043b-5926-4c4e-b916-1156bc1faaaf" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:45 GMT" + "Tue, 05 Jun 2018 23:30:37 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t024827z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool/nodes/tvm-892191217_1-20171006t024827z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T02:48:32.656449Z\",\r\n \"lastBootTime\": \"2017-10-06T02:48:32.489208Z\",\r\n \"allocationTime\": \"2017-10-06T02:48:27.2643724Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t024827z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"52.161.9.247\",\r\n \"publicFQDN\": \"dns9bb8316e-08f6-4a88-8823-2d039bff149b-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-3840119875_1-20180605t170418z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool/nodes/tvm-3840119875_1-20180605t170418z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T17:05:17.885188Z\",\r\n \"lastBootTime\": \"2018-06-05T17:05:17.796542Z\",\r\n \"allocationTime\": \"2018-06-05T17:04:18.6270555Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvm-3840119875_1-20180605t170418z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"13.78.128.182\",\r\n \"publicFQDN\": \"dns05bdf992-9584-4181-8c77-08a2819f65f0-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "78d98627-6595-4670-b988-e52a334d8081" + "cb995f19-ecac-4bd1-8a09-9ad8493ae721" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:44 GMT" + "Tue, 05 Jun 2018 23:30:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,29 +53,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testIaasPool/nodes/tvm-892191217_1-20171006t024827z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm0tODkyMTkxMjE3XzEtMjAxNzEwMDZ0MDI0ODI3ej9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testIaasPool/nodes/tvm-3840119875_1-20180605t170418z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm0tMzg0MDExOTg3NV8xLTIwMTgwNjA1dDE3MDQxOHo/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c7cbf377-28bc-4b36-adb1-3f97be83787a" + "7fea0c2c-4ab0-4d4f-a38b-e3b11c6af9a3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:45 GMT" + "Tue, 05 Jun 2018 23:30:37 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t024827z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool/nodes/tvm-892191217_1-20171006t024827z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T02:48:32.656449Z\",\r\n \"lastBootTime\": \"2017-10-06T02:48:32.489208Z\",\r\n \"allocationTime\": \"2017-10-06T02:48:27.2643724Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t024827z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"52.161.9.247\",\r\n \"publicFQDN\": \"dns9bb8316e-08f6-4a88-8823-2d039bff149b-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_1-20180605t170418z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool/nodes/tvm-3840119875_1-20180605t170418z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T17:05:17.885188Z\",\r\n \"lastBootTime\": \"2018-06-05T17:05:17.796542Z\",\r\n \"allocationTime\": \"2018-06-05T17:04:18.6270555Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvm-3840119875_1-20180605t170418z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"13.78.128.182\",\r\n \"publicFQDN\": \"dns05bdf992-9584-4181-8c77-08a2819f65f0-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -84,7 +84,7 @@ "chunked" ], "request-id": [ - "2b2bc710-1f1c-4d07-9cc0-f2b65f92bf3f" + "88c5a75d-5979-4c41-bbfc-a7cbf9981517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -96,7 +96,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:45 GMT" + "Tue, 05 Jun 2018 23:30:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,29 +105,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testIaasPool/nodes/tvm-892191217_1-20171006t024827z/remoteloginsettings?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm0tODkyMTkxMjE3XzEtMjAxNzEwMDZ0MDI0ODI3ei9yZW1vdGVsb2dpbnNldHRpbmdzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testIaasPool/nodes/tvm-3840119875_1-20180605t170418z/remoteloginsettings?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm0tMzg0MDExOTg3NV8xLTIwMTgwNjA1dDE3MDQxOHovcmVtb3RlbG9naW5zZXR0aW5ncz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a4cdca84-733e-4ca6-896c-2af3700b443f" + "787742c3-4d19-4883-a122-d6f3cd8c5d03" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:45 GMT" + "Tue, 05 Jun 2018 23:30:37 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.RemoteLoginSettings\",\r\n \"remoteLoginIPAddress\": \"52.161.9.247\",\r\n \"remoteLoginPort\": 50000\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.RemoteLoginSettings\",\r\n \"remoteLoginIPAddress\": \"13.78.128.182\",\r\n \"remoteLoginPort\": 50000\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -136,7 +136,7 @@ "chunked" ], "request-id": [ - "fc4418d5-e977-4dd4-8a3c-5157a778e667" + "5c2f4752-666a-4686-9e16-08e936eab013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,10 +148,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool/nodes/tvm-892191217_1-20171006t024827z/remoteloginsettings" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool/nodes/tvm-3840119875_1-20180605t170418z/remoteloginsettings" ], "Date": [ - "Fri, 06 Oct 2017 03:13:45 GMT" + "Tue, 05 Jun 2018 23:30:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json index 03b5cd78a8b1..08e29f349e03 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "249249af-138f-435b-83c3-ff4b3eb30573" + "784dd6c9-1ee2-47c9-b07e-8fd742c565bf" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:19.346011Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-3840119875_1-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T01:00:51.860284Z\",\r\n \"lastBootTime\": \"2018-06-06T01:00:50.462955Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.160.207\",\r\n \"affinityId\": \"TVM:tvm-3840119875_1-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T01:00:51.450462Z\",\r\n \"endTime\": \"2018-06-06T01:00:51.813417Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-3840119875_2-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T00:59:51.973056Z\",\r\n \"lastBootTime\": \"2018-06-06T00:59:50.501139Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.156.166\",\r\n \"affinityId\": \"TVM:tvm-3840119875_2-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T00:59:51.534433Z\",\r\n \"endTime\": \"2018-06-06T00:59:51.910566Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "2d7e5577-ae21-4ef6-8a5e-acfcadf33fa4" + "6456f0de-77e1-429c-830d-d9f77743b21f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,29 +53,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9f43efc3-fd10-436f-b464-66e9cc1cec14" + "91a0a3c8-5eef-42bd-957e-5784f3bc463b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:19.346011Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-3840119875_1-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T01:00:51.860284Z\",\r\n \"lastBootTime\": \"2018-06-06T01:00:50.462955Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.160.207\",\r\n \"affinityId\": \"TVM:tvm-3840119875_1-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T01:00:51.450462Z\",\r\n \"endTime\": \"2018-06-06T01:00:51.813417Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-3840119875_2-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T00:59:51.973056Z\",\r\n \"lastBootTime\": \"2018-06-06T00:59:50.501139Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.156.166\",\r\n \"affinityId\": \"TVM:tvm-3840119875_2-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T00:59:51.534433Z\",\r\n \"endTime\": \"2018-06-06T00:59:51.910566Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -84,7 +84,7 @@ "chunked" ], "request-id": [ - "d67b3954-e2d9-45f7-9c9d-a5da7e123aef" + "cc7f2878-6d09-4d2c-9d5f-acb39f58c295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -96,7 +96,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,29 +105,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z?api-version=2018-03-01.6.1&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzEtMjAxODA2MDZ0MDA1NjQ1ej9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90d03576-8b79-447e-942c-4bd50a2bbb25" + "67c4f110-eaac-43cb-9b5f-b697c8bc20d0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_1-20180606t005645z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -136,7 +136,7 @@ "chunked" ], "request-id": [ - "2c4d0220-4179-42ca-9cba-714d72fbf24d" + "9427d1b6-3f9b-4196-85cf-9920d28293d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -157,29 +157,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_2-20171006t025921z?api-version=2017-09-01.6.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMi0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z?api-version=2018-03-01.6.1&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzItMjAxODA2MDZ0MDA1NjQ1ej9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6652e90c-5b7c-469c-8e98-59a72535c8e5" + "b82b927a-ee8c-4986-8699-01347a6e7a6f" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_2-20180606t005645z\",\r\n \"state\": \"idle\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -188,7 +188,7 @@ "chunked" ], "request-id": [ - "8aaa49bb-658d-4e72-9bdf-3f539199cdf7" + "6fd760bc-897b-4ef6-baa1-5256689f9674" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -200,7 +200,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:45 GMT" + "Wed, 06 Jun 2018 01:01:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -209,29 +209,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzEtMjAxODA2MDZ0MDA1NjQ1ej9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0d603923-2aa1-414e-a9aa-4dcd1624ecfc" + "faaf6cdf-a610-4733-9899-eb0d2993326d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:46 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_1-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T01:00:51.860284Z\",\r\n \"lastBootTime\": \"2018-06-06T01:00:50.462955Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.160.207\",\r\n \"affinityId\": \"TVM:tvm-3840119875_1-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T01:00:51.450462Z\",\r\n \"endTime\": \"2018-06-06T01:00:51.813417Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -240,7 +240,7 @@ "chunked" ], "request-id": [ - "19f00a33-a86e-4268-b511-d9879461dbb2" + "e797cdc7-7878-4de2-858b-052ff238986b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,7 +252,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -261,29 +261,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzEtMjAxODA2MDZ0MDA1NjQ1ej9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ea3183e8-9dab-43ca-b2ad-76cc224d60a5" + "485ba0e5-2be5-477f-b5a6-0b8b69a4466d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:46 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:32:46.9243564Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_1-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T01:01:33.7347511Z\",\r\n \"lastBootTime\": \"2018-06-06T01:00:50.462955Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.160.207\",\r\n \"affinityId\": \"TVM:tvm-3840119875_1-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T01:00:51.450462Z\",\r\n \"endTime\": \"2018-06-06T01:00:51.813417Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -292,7 +292,7 @@ "chunked" ], "request-id": [ - "e7b8f5d8-24d6-406f-b137-0fef90780ab3" + "078cedae-b51b-4003-ab12-967b6dd613c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,7 +304,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/reboot?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L3JlYm9vdD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z/reboot?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzEtMjAxODA2MDZ0MDA1NjQ1ei9yZWJvb3Q/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeRebootOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -325,20 +325,20 @@ "39" ], "client-request-id": [ - "7334108d-619a-4963-bde9-76c5af2690ba" + "67097c2e-affd-4004-860b-de8a8a9410d7" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:46 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -347,7 +347,7 @@ "chunked" ], "request-id": [ - "42334467-ac38-4661-92ad-10c25ed6f35f" + "49dbefe5-6068-43e4-afed-991e51fbf73d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -359,10 +359,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/reboot" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_1-20180606t005645z/reboot" ], "Date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -371,29 +371,29 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_2-20171006t025921z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMi0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzItMjAxODA2MDZ0MDA1NjQ1ej9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae03c9e3-c665-4ca4-bf7b-fb5c8f733b3e" + "bb2d31ac-2fa8-470d-9f1a-2e6440cabad6" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:19.346011Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_2-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T00:59:51.973056Z\",\r\n \"lastBootTime\": \"2018-06-06T00:59:50.501139Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.156.166\",\r\n \"affinityId\": \"TVM:tvm-3840119875_2-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T00:59:51.534433Z\",\r\n \"endTime\": \"2018-06-06T00:59:51.910566Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -402,7 +402,7 @@ "chunked" ], "request-id": [ - "7ac74f7a-efa8-48ee-ad25-97f0b3bd2333" + "c1a8751c-f1cd-4149-9da1-428d8184453b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -414,7 +414,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -423,29 +423,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_2-20171006t025921z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMi0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzItMjAxODA2MDZ0MDA1NjQ1ej9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d739c3c6-311f-43f3-b34c-1ef6bd37eeb2" + "ad308e4e-64db-4ca0-aca3-0b6914ba81b0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:32:47.1777641Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-3840119875_2-20180606t005645z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-06T01:01:34.1382759Z\",\r\n \"lastBootTime\": \"2018-06-06T00:59:50.501139Z\",\r\n \"allocationTime\": \"2018-06-06T00:56:45.3586019Z\",\r\n \"ipAddress\": \"100.73.156.166\",\r\n \"affinityId\": \"TVM:tvm-3840119875_2-20180606t005645z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-06T00:59:51.534433Z\",\r\n \"endTime\": \"2018-06-06T00:59:51.910566Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -454,7 +454,7 @@ "chunked" ], "request-id": [ - "b76708bc-34b7-4755-bd76-793a5b5abe95" + "9fa80561-9f7f-4ac9-8e68-f38beb001a28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -466,7 +466,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -475,8 +475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_2-20171006t025921z/reimage?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMi0yMDE3MTAwNnQwMjU5MjF6L3JlaW1hZ2U/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z/reimage?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS0zODQwMTE5ODc1XzItMjAxODA2MDZ0MDA1NjQ1ei9yZWltYWdlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeReimageOption\": \"terminate\"\r\n}", "RequestHeaders": { @@ -487,20 +487,20 @@ "40" ], "client-request-id": [ - "ee59b15c-4d5d-4500-b2cc-e64f5ab1df48" + "12b1f5e3-6f3a-4793-8084-3dfb2bdbf13a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -509,7 +509,7 @@ "chunked" ], "request-id": [ - "1b4c88ef-71f3-49fb-8241-576d1a51bcc2" + "de8592d7-be1f-4be2-8936-b63ca6d0e9a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,10 +521,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z/reimage" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-3840119875_2-20180606t005645z/reimage" ], "Date": [ - "Fri, 06 Oct 2017 03:32:47 GMT" + "Wed, 06 Jun 2018 01:01:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json index 5eaa196edd4d..b966c7d7efc4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"removenodepool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 2,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "245" ], "client-request-id": [ - "db83f097-cafc-4b46-bd1d-f81dc2b99ea1" + "c830e452-ac6c-48f3-90f3-bd8578aea788" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "582b71e3-4bf6-433f-87c3-695c9d0b98de" + "c45b685c-8f11-4f3e-9e48-95328bbc6407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,10 +53,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool" ], "Date": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool" @@ -68,41 +68,41 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "96dbe51c-1324-4b26-b3d4-4f64432df2ac" + "7ffc4122-eef5-4289-8f9c-a6db73cd75b3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ccd41bf6-5260-40b0-9dee-33d82c62403e" + "b346770a-fca1-4ebc-b56d-1462ea969c08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,10 +114,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,41 +126,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "466827d3-cb55-4608-8b84-ec4707f6b4d6" + "59a93190-d588-4daf-96b3-03f6e2b5786d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:41 GMT" + "Tue, 05 Jun 2018 23:29:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "54079d61-1ba3-4bb2-a060-65b23f7ff50b" + "f4d56c3a-4ca8-4369-a5b5-091fff158824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,10 +172,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:41 GMT" + "Tue, 05 Jun 2018 23:29:18 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,41 +184,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8151e5b1-faeb-4ce8-8050-07fda5dd1163" + "725eca2a-f1d5-4978-beca-7124375428bd" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:46 GMT" + "Tue, 05 Jun 2018 23:29:23 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d13fd821-eb40-487c-a061-4cfc5e875a5b" + "3a6f146b-b8a3-4c6e-81a6-d5814a39c3d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -230,10 +230,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:46 GMT" + "Tue, 05 Jun 2018 23:29:23 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -242,41 +242,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ba0be64d-3555-4f05-b1cb-e8a3648bf96d" + "3aebe097-76ff-408e-b19f-326199ca0670" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:51 GMT" + "Tue, 05 Jun 2018 23:29:28 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "94a74ccf-09b1-47c8-98a4-48eb3aad7fc5" + "28a7f5e8-19d4-4660-b6db-dcc92899191c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -288,10 +288,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:51 GMT" + "Tue, 05 Jun 2018 23:29:28 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,41 +300,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3d73bdda-1bd9-47a4-8f8d-e1eb09661201" + "345f83cb-d5c0-4ab2-8b18-290ece494f19" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:56 GMT" + "Tue, 05 Jun 2018 23:29:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "46a8699d-bcae-4fe0-818d-34cda008785c" + "67eeca04-0be5-4311-8acd-ac6c53556677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -346,10 +346,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:56 GMT" + "Tue, 05 Jun 2018 23:29:33 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,41 +358,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8c60e689-460a-4580-afc9-1df0e13ac6ba" + "93fcac3e-eaf2-4a65-8253-db483d2a2e3f" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:01 GMT" + "Tue, 05 Jun 2018 23:29:38 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "df8b980a-1eda-4dd7-aebb-3eeb7a0971a2" + "a9ab49c0-da43-4c4d-9849-814b121f495c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,10 +404,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:01 GMT" + "Tue, 05 Jun 2018 23:29:38 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -416,41 +416,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eda42e7e-070c-4abb-a488-478fe8275dd9" + "03bac1ae-2295-4ba8-9f60-14cc49a5d8d3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:06 GMT" + "Tue, 05 Jun 2018 23:29:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "73aab365-ec24-4eb8-a846-c719d1236da8" + "b04fbbd6-ffa2-4347-9482-570f56f49215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -462,10 +462,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:06 GMT" + "Tue, 05 Jun 2018 23:29:43 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -474,41 +474,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "171be4c3-33f7-44fd-bd48-c4e4eb6de9e7" + "04d60358-72bc-4d49-bbcf-3df723293c9d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:11 GMT" + "Tue, 05 Jun 2018 23:29:48 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "51e7de3f-e671-47e9-9cc8-1e770c793dbb" + "6bd7ea08-1c91-4f99-83f2-05b3c877faa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,10 +520,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:11 GMT" + "Tue, 05 Jun 2018 23:29:48 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -532,41 +532,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6a9b9558-a000-43fd-973e-f680c9fd2cba" + "9a16f500-27db-4a28-8d8a-014fce4d6954" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:16 GMT" + "Tue, 05 Jun 2018 23:29:53 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7b34a1b4-c7a3-4960-9cba-24cdafde4da7" + "20553962-5b7a-42d7-bb48-36a8de82b419" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -578,10 +578,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:17 GMT" + "Tue, 05 Jun 2018 23:29:53 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -590,41 +590,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "663b895c-a3e9-4bb4-9cd8-f9763a3b4827" + "2f2046b6-4736-478d-9167-91ee0fc8ae18" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:21 GMT" + "Tue, 05 Jun 2018 23:29:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D50C681833F9BF\",\r\n \"lastModified\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"creationTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:36.4984767Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:13:21.4509962Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 2,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:36 GMT" + "Tue, 05 Jun 2018 23:29:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "098ff11f-9d9f-428b-bf2f-1ef691faf9a0" + "1f0544a2-e762-4aae-9d29-687afbd2dee0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,10 +636,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:22 GMT" + "Tue, 05 Jun 2018 23:29:58 GMT" ], "ETag": [ - "0x8D50C681833F9BF" + "0x8D5CB3C25C21026" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -648,29 +648,87 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1fe5f720-7fc6-4b4b-893e-5932adff58ee" + "a7faeea2-e475-42ac-8bcb-76049592b6c6" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:22 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t031320z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool/nodes/tvm-892191217_1-20171006t031320z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:13:20.0217943Z\",\r\n \"allocationTime\": \"2017-10-06T03:13:20.0217943Z\",\r\n \"ipAddress\": \"10.72.32.83\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t031320z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t031320z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool/nodes/tvm-892191217_2-20171006t031320z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:13:20.0217943Z\",\r\n \"allocationTime\": \"2017-10-06T03:13:20.0217943Z\",\r\n \"ipAddress\": \"10.72.16.116\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t031320z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D5CB3C25C21026\",\r\n \"lastModified\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"creationTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:29:13.4744614Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-06-05T23:30:03.1676056Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 2,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Tue, 05 Jun 2018 23:29:13 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8c4e2ebf-6900-446b-bce9-3ed9f53477f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 05 Jun 2018 23:30:04 GMT" + ], + "ETag": [ + "0x8D5CB3C25C21026" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/removenodepool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fd5e226a-52b3-4e24-ba94-51f4828cbbaa" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 05 Jun 2018 23:30:04 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t233002z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool/nodes/tvm-892191217_1-20180605t233002z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:30:02.2131109Z\",\r\n \"allocationTime\": \"2018-06-05T23:30:02.2131109Z\",\r\n \"ipAddress\": \"10.72.4.92\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t233002z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t233002z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool/nodes/tvm-892191217_2-20180605t233002z\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:30:02.2131109Z\",\r\n \"allocationTime\": \"2018-06-05T23:30:02.2131109Z\",\r\n \"ipAddress\": \"10.72.68.45\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20180605t233002z\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -679,7 +737,7 @@ "chunked" ], "request-id": [ - "66794846-72f5-4dc2-b1a9-27657b057a52" + "619e4b9c-b53c-4fef-b543-df9066f28edc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +749,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:21 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -700,10 +758,10 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/removenodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL3JlbW92ZW5vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool/removenodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL3JlbW92ZW5vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-892191217_1-20171006t031320z\",\r\n \"tvm-892191217_2-20171006t031320z\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvm-892191217_1-20180605t233002z\",\r\n \"tvm-892191217_2-20180605t233002z\"\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" @@ -712,32 +770,32 @@ "107" ], "client-request-id": [ - "3b0fab4d-98ec-485c-ab7b-2ca53443afb0" + "1745cdc3-fdb2-414f-91e9-e1ee866a81c2" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:22 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:13:22 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f8cc0b9-1103-40c7-bdd0-db44a61a48f9" + "12ae2f16-94f2-447a-9a47-ca44058253d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -752,10 +810,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/removenodepool/removenodes" ], "Date": [ - "Fri, 06 Oct 2017 03:13:21 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "ETag": [ - "0x8D50C68339211CB" + "0x8D5CB3C44498BDF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -764,29 +822,29 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2017-09-01.6.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2018-03-01.6.1&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "40edc3a0-c12a-4cda-800f-6b5fb4601279" + "a5e06e3b-6bdd-43e4-baf2-ed9663079eaa" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:22 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t031320z\",\r\n \"state\": \"creating\"\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t031320z\",\r\n \"state\": \"creating\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t233002z\",\r\n \"state\": \"creating\"\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t233002z\",\r\n \"state\": \"creating\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -795,7 +853,7 @@ "chunked" ], "request-id": [ - "322d3782-be19-46da-95cd-7fb17ddc3fae" + "996ac076-8351-457f-8835-f57b9d11d1aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,7 +865,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:21 GMT" + "Tue, 05 Jun 2018 23:30:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -816,29 +874,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2017-09-01.6.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2018-03-01.6.1&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aff14874-3a05-4af1-aa94-14f5ff0157cd" + "f95db703-6589-4920-9e07-3b6d85f6b6ed" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:23 GMT" + "Tue, 05 Jun 2018 23:30:05 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t031320z\",\r\n \"state\": \"creating\"\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t031320z\",\r\n \"state\": \"creating\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t233002z\",\r\n \"state\": \"creating\"\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t233002z\",\r\n \"state\": \"creating\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -847,7 +905,7 @@ "chunked" ], "request-id": [ - "94b4133c-4052-4b3f-8fa5-506face5d2ba" + "3cfad172-eeac-41d6-9681-b7d1cf5f8ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,7 +917,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:23 GMT" + "Tue, 05 Jun 2018 23:30:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -868,29 +926,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2017-09-01.6.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2018-03-01.6.1&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cb787b64-b7ee-4466-a2ff-15b20800ca39" + "e6968436-702f-43ce-bb17-1a3325316c7d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:24 GMT" + "Tue, 05 Jun 2018 23:30:06 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t031320z\",\r\n \"state\": \"leavingpool\"\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t031320z\",\r\n \"state\": \"creating\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t233002z\",\r\n \"state\": \"leavingpool\"\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t233002z\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -899,7 +957,7 @@ "chunked" ], "request-id": [ - "dec2ac38-145f-4669-8c9b-3ac57402bef5" + "8269b8c0-1557-4d72-8bf6-af5d61e9dd63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -911,7 +969,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:24 GMT" + "Tue, 05 Jun 2018 23:30:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -920,26 +978,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/removenodepool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "12f73726-34f7-447b-a00a-ee81cbb4a0c5" + "d9f6d1b2-75ab-4da9-9c67-21dacfe31792" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:13:24 GMT" + "Tue, 05 Jun 2018 23:30:07 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -948,7 +1006,7 @@ "chunked" ], "request-id": [ - "07df5627-5d66-4261-999f-e6552e860931" + "67d62864-2da6-470e-a187-23e1f32e978f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -960,7 +1018,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:13:24 GMT" + "Tue, 05 Jun 2018 23:30:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json index 7f211c0daf33..b69e2a4df0d8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a4c3815b-a748-42d5-92a6-7e643119b3ad" + "59712715-c0b9-48c5-a87b-d0e3d2a9a359" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:00 GMT" + "Tue, 05 Jun 2018 23:38:00 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"offline\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:13:35.9391788Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 3,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:19.346011Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"offline\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:28:56.9228842Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.714012Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.164.86\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 4,\r\n \"totalTasksSucceeded\": 3,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/nodeFileContentByTask/tasks/testTask\",\r\n \"jobId\": \"nodeFileContentByTask\",\r\n \"taskId\": \"testTask\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:37:36.526016Z\",\r\n \"endTime\": \"2018-06-05T23:37:36.744764Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.439947Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.705569Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20180605t170754z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:13:20.147072Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.712534Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.202.29\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.434222Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.115793Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.175795Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.503918Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "82f306bd-04c2-4f3c-b231-539cff4ae0f5" + "3e157b98-9821-487a-90ac-0bbcc707d38b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:00 GMT" + "Tue, 05 Jun 2018 23:38:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,8 +53,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"userendtoend\",\r\n \"isAdmin\": false,\r\n \"expiryTime\": \"0001-01-01T00:00:00Z\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { @@ -65,20 +65,20 @@ "124" ], "client-request-id": [ - "e772da99-7bbf-4860-bab6-66829102c6f3" + "9bbc1edf-8b06-4174-af07-83367de5ac44" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:00 GMT" + "Tue, 05 Jun 2018 23:38:00 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -87,7 +87,7 @@ "chunked" ], "request-id": [ - "c4a1eca9-f3e4-4df9-b4c8-7bc58bb32bb9" + "49a189ad-01bd-4935-aa7c-435fa37540e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,13 +99,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users/userendtoend" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users/userendtoend" ], "Date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:00 GMT" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users/userendtoend" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users/userendtoend" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,10 +114,10 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users/userendtoend?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L3VzZXJzL3VzZXJlbmR0b2VuZD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users/userendtoend?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L3VzZXJzL3VzZXJlbmR0b2VuZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"Abcdefghijk1234!\",\r\n \"expiryTime\": \"2017-10-11T03:20:01.1921213Z\"\r\n}", + "RequestBody": "{\r\n \"password\": \"Abcdefghijk1234!\",\r\n \"expiryTime\": \"2018-06-10T23:38:01.0567803Z\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" @@ -126,20 +126,20 @@ "87" ], "client-request-id": [ - "ffa89d2d-6118-4196-8661-e4f511c228a0" + "5fbfc4a9-e06d-404f-a87e-799ac1bc3c10" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:01 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -148,7 +148,7 @@ "chunked" ], "request-id": [ - "63de2889-fd01-4b01-9179-73c181923cf2" + "64e5e457-1f47-4273-b3ef-bba1c8aad26a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -160,10 +160,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users/userendtoend" + "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users/userendtoend" ], "Date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -172,26 +172,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users/userendtoend?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L3VzZXJzL3VzZXJlbmR0b2VuZD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users/userendtoend?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L3VzZXJzL3VzZXJlbmR0b2VuZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d7c2b012-ee50-4e94-b570-e51a1450d0e9" + "f1bc0d77-fe5b-41fd-9dda-0eebdcea3920" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:01 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -200,7 +200,7 @@ "chunked" ], "request-id": [ - "978c57a0-1955-40c2-84f4-270c7cbe6845" + "8a03742f-d106-41ff-bf4e-a8bee0090c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -212,7 +212,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -221,29 +221,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/users/userendtoend?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L3VzZXJzL3VzZXJlbmR0b2VuZD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/users/userendtoend?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L3VzZXJzL3VzZXJlbmR0b2VuZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "19b5e993-53cd-4408-b38e-929cb1493ef7" + "4615bc46-c91b-4e1f-8b32-8e861db4c7e1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:01 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.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:8d3156e1-cea9-45eb-b9ab-b7ec860d7917\\nTime:2017-10-06T03:20:02.0678925Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.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:4121a3bb-1ad3-43f4-a4dd-0d356cb1d4d7\\nTime:2018-06-05T23:38:02.0242832Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "358" @@ -252,7 +252,7 @@ "application/json; odata=minimalmetadata" ], "request-id": [ - "8d3156e1-cea9-45eb-b9ab-b7ec860d7917" + "4121a3bb-1ad3-43f4-a4dd-0d356cb1d4d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -264,7 +264,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:20:01 GMT" + "Tue, 05 Jun 2018 23:38:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNode.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNode.json index a2fa954d1548..bae0a26a113f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNode.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByComputeNode.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deleteNodeFile\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "97" ], "client-request-id": [ - "9a0e31e9-50c9-4ad6-864d-2708f04e8175" + "9d9eafb0-e155-4d24-9bf3-20ca6ac7157e" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:17 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:39 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ade5e225-bb4e-43c6-a9ca-de7e7aca55a8" + "95d372a1-b8a6-443b-afed-f9ab9cc7cbd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,10 +53,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:17 GMT" ], "ETag": [ - "0x8D50C67F5F33A8C" + "0x8D5CB3D46A0050F" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeFile/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deleteNodeFile/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "188" ], "client-request-id": [ - "bfcd290a-a41d-4bc7-b4bd-937fc1ebb33a" + "b2e3e08d-2eaf-4723-921d-c98f50f12367" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:39 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9e34cc1b-4a29-49d8-9246-9c7ad70ff341" + "fe2dc485-6cba-40d5-ab5c-e3c6390c0e4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,10 +120,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deleteNodeFile/tasks/task1" ], "Date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:17 GMT" ], "ETag": [ - "0x8D50C67F600D689" + "0x8D5CB3D46B0F158" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deleteNodeFile/tasks/task1" @@ -135,41 +135,41 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deleteNodeFile/tasks/task1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deleteNodeFile/tasks/task1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a6317fa4-679b-4403-98a7-f85f21246ae4" + "7e06d74e-d41b-4e38-86e1-ecd28eb796b3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deleteNodeFile/tasks/task1\",\r\n \"eTag\": \"0x8D50C67F600D689\",\r\n \"creationTime\": \"2017-10-06T03:11:39.1208073Z\",\r\n \"lastModified\": \"2017-10-06T03:11:39.1208073Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:39.1208073Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deleteNodeFile/tasks/task1\",\r\n \"eTag\": \"0x8D5CB3D46B0F158\",\r\n \"creationTime\": \"2018-06-05T23:37:18.223804Z\",\r\n \"lastModified\": \"2018-06-05T23:37:18.223804Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:37:18.223804Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:11:39 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e01b1e6e-efc1-44e2-95b5-e6281ab381dc" + "f959f38b-bcad-42f4-9798-c267e7221a52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,10 +181,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:17 GMT" ], "ETag": [ - "0x8D50C67F600D689" + "0x8D5CB3D46B0F158" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -193,41 +193,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeFile/tasks/task1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deleteNodeFile/tasks/task1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cb08a9dc-7019-4cfd-bdac-86702f503017" + "b0d39ca8-1281-4740-a96f-cf4c39b245d8" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:40 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deleteNodeFile/tasks/task1\",\r\n \"eTag\": \"0x8D50C67F600D689\",\r\n \"creationTime\": \"2017-10-06T03:11:39.1208073Z\",\r\n \"lastModified\": \"2017-10-06T03:11:39.1208073Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:39.126152Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:38.9630338Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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\": \"2017-10-06T03:11:38.9630338Z\",\r\n \"endTime\": \"2017-10-06T03:11:39.126152Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testpool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"poolId\": \"testpool\",\r\n \"nodeId\": \"tvm-892191217_1-20171006t025921z\",\r\n \"taskRootDirectory\": \"workitems\\\\deletenodefile\\\\job-1\\\\task1\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testpool/nodes/tvm-892191217_1-20171006t025921z/files/workitems/deletenodefile/job-1/task1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deleteNodeFile/tasks/task1\",\r\n \"eTag\": \"0x8D5CB3D46B0F158\",\r\n \"creationTime\": \"2018-06-05T23:37:18.223804Z\",\r\n \"lastModified\": \"2018-06-05T23:37:18.223804Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-06-05T23:37:18.69964Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2018-06-05T23:37:18.465324Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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\": \"2018-06-05T23:37:18.465324Z\",\r\n \"endTime\": \"2018-06-05T23:37:18.69964Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"poolId\": \"testPool\",\r\n \"nodeId\": \"tvm-892191217_1-20180605t170754z\",\r\n \"taskRootDirectory\": \"workitems\\\\deleteNodeFile\\\\job-1\\\\task1\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/files/workitems/deleteNodeFile/job-1/task1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:39 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "21166e65-d1d8-4889-852c-5525c0d38296" + "181f333f-c875-4409-b0f9-ee01de6baf79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,10 +239,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "ETag": [ - "0x8D50C67F600D689" + "0x8D5CB3D46B0F158" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -251,26 +251,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeFile/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'task1'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/deleteNodeFile/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'task1'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac85b318-57ff-4329-ab04-1d1ba232a3eb" + "862a1fea-93b0-44bc-9382-b7d2add5c86d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", @@ -282,7 +282,7 @@ "chunked" ], "request-id": [ - "5b14cf95-0e92-44a5-9ef2-38fb4fc698c5" + "4b770bae-f8ac-4a48-8d60-2b1ff25be013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +294,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:38 GMT" + "Tue, 05 Jun 2018 23:37:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,26 +303,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeFile/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'task1'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/deleteNodeFile/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'task1'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "700b5d0a-364b-4c29-b2ac-f60629ff8284" + "49423070-f88d-41fb-ab8d-4abcb4ace695" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:40 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", @@ -334,7 +334,7 @@ "chunked" ], "request-id": [ - "edd60335-8985-4bd4-aada-68e27151f420" + "b2b907a4-f5fd-429e-a232-4a33757bb205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -346,7 +346,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,26 +355,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/files/workitems%5CdeleteNodeFile%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L2ZpbGVzL3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVGaWxlJTVDam9iLTElNUN0YXNrMSU1Q3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/files/workitems%5CdeleteNodeFile%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2ZpbGVzL3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVGaWxlJTVDam9iLTElNUN0YXNrMSU1Q3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f72e157b-1b3d-47f5-8073-7e1c858f8215" + "20025f3d-9340-4596-9113-8c5e956e5793" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -383,13 +383,13 @@ "9" ], "Content-Type": [ - "application/octet-stream" + "text/plain" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:39 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "request-id": [ - "ee2d952c-82ba-44e8-8c4e-cb59f2eac2b0" + "8eacfdf4-0831-4623-a65d-d422d497b1be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,16 +401,16 @@ "3.0" ], "ocp-creation-time": [ - "Fri, 06 Oct 2017 03:11:39 GMT" + "Tue, 05 Jun 2018 23:37:18 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-892191217_1-20171006t025921z%2Ffiles%2Fworkitems%2FdeleteNodeFile%2Fjob-1%2Ftask1%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-892191217_1-20180605t170754z%2Ffiles%2Fworkitems%2FdeleteNodeFile%2Fjob-1%2Ftask1%2Fwd%2FtestFile.txt" ], "Date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -419,26 +419,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/files/workitems%5CdeleteNodeFile%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?recursive=false&api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L2ZpbGVzL3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVGaWxlJTVDam9iLTElNUN0YXNrMSU1Q3dkJTVDdGVzdEZpbGUudHh0P3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/files/workitems%5CdeleteNodeFile%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt?recursive=false&api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2ZpbGVzL3dvcmtpdGVtcyU1Q2RlbGV0ZU5vZGVGaWxlJTVDam9iLTElNUN0YXNrMSU1Q3dkJTVDdGVzdEZpbGUudHh0P3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "45a2e5b6-37ac-48b8-a90a-9401ad89758e" + "a68cfae9-c6e6-4ebf-be52-7c99a8cc3bd0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -447,7 +447,7 @@ "chunked" ], "request-id": [ - "e9cdf99f-418c-4f87-becb-f364c7bb9197" + "ed48b2e1-113e-4145-9417-420203967662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,7 +459,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -468,26 +468,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/files?recursive=false&api-version=2017-09-01.6.0&$filter=startswith(name%2C'workitems%5CdeleteNodeFile%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt')", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L2ZpbGVzP3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3d29ya2l0ZW1zJTVDZGVsZXRlTm9kZUZpbGUlNUNqb2ItMSU1Q3Rhc2sxJTVDd2QlNUN0ZXN0RmlsZS50eHQlMjclMjk=", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/files?recursive=false&api-version=2018-03-01.6.1&$filter=startswith(name%2C'workitems%5CdeleteNodeFile%5Cjob-1%5Ctask1%5Cwd%5CtestFile.txt')", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2ZpbGVzP3JlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3d29ya2l0ZW1zJTVDZGVsZXRlTm9kZUZpbGUlNUNqb2ItMSU1Q3Rhc2sxJTVDd2QlNUN0ZXN0RmlsZS50eHQlMjclMjk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7d594967-6c79-452e-a52f-6adab881dcb7" + "9008dd39-a9c3-4cfa-bf30-586091d401c9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:42 GMT" + "Tue, 05 Jun 2018 23:37:21 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#files\",\r\n \"value\": []\r\n}", @@ -499,7 +499,7 @@ "chunked" ], "request-id": [ - "602a66e5-201f-4afa-8961-0f5a260a009e" + "04e710f8-12d4-4cf4-8ac2-42d45fadf2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,7 +511,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:41 GMT" + "Tue, 05 Jun 2018 23:37:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,26 +520,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deleteNodeFile?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deleteNodeFile?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRlTm9kZUZpbGU/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9ec1cfff-ba09-44fd-8430-c37054a18ce7" + "c1f18a40-351c-4a26-8ae7-b7a862d7b478" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:42 GMT" + "Tue, 05 Jun 2018 23:37:21 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -548,7 +548,7 @@ "chunked" ], "request-id": [ - "3e8f1138-b4dd-4b96-938f-3083bf5f4644" + "729d5596-9743-44cf-874f-18e4c0ca08cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,7 +560,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:42 GMT" + "Tue, 05 Jun 2018 23:37:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTask.json index 4089e5995693..04f1cbbdc3ba 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestDeleteNodeFileByTask.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"deletetaskFile\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "97" ], "client-request-id": [ - "a778a57a-16c8-4df7-980c-b73ba636bedc" + "c998c61d-75f6-4b83-aac3-3ecc1a99bd74" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:50 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2488585d-e191-4563-8dc2-2b55279bd299" + "a1c36ade-dc4c-4765-8c77-131b848e2647" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,10 +53,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:49 GMT" ], "ETag": [ - "0x8D50C681152E838" + "0x8D5CB3D3663AFAC" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deletetaskFile/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deletetaskFile/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "188" ], "client-request-id": [ - "b9a5c6b1-47db-4547-a4c7-23dfcb41d5f0" + "232803ac-5627-4ecf-81be-c3cf46475f09" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:50 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "25a2e86e-6e9d-43f9-987b-1e68f1588d9d" + "feefc291-6056-4676-bd5f-4fe2ea5d7793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,10 +120,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deletetaskFile/tasks/task1" ], "Date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "ETag": [ - "0x8D50C68112DE4FC" + "0x8D5CB3D3677767B" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deletetaskFile/tasks/task1" @@ -135,41 +135,41 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/deletetaskFile/tasks/task1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deletetaskFile/tasks/task1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0dfe8f57-5244-4e13-955d-7013f38d949b" + "26fdbe66-38cb-48ce-867e-3a3eccb4f790" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deletetaskFile/tasks/task1\",\r\n \"eTag\": \"0x8D50C68112DE4FC\",\r\n \"creationTime\": \"2017-10-06T03:12:24.7145724Z\",\r\n \"lastModified\": \"2017-10-06T03:12:24.7145724Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:24.7145724Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deletetaskFile/tasks/task1\",\r\n \"eTag\": \"0x8D5CB3D3677767B\",\r\n \"creationTime\": \"2018-06-05T23:36:51.0035579Z\",\r\n \"lastModified\": \"2018-06-05T23:36:51.0035579Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:36:51.0035579Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test\\\" > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1a9a154-9f4d-4086-9bb6-62046df93975" + "a01fbdc9-84ca-4669-818b-ae61b473f7f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,10 +181,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "ETag": [ - "0x8D50C68112DE4FC" + "0x8D5CB3D3677767B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -193,26 +193,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deletetaskFile/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'task1'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/deletetaskFile/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'task1'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e627b489-ef18-48fb-96c6-095b3ed7e60d" + "8d035d08-38e7-44b2-b61a-5f4b46fce4bc" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", @@ -224,7 +224,7 @@ "chunked" ], "request-id": [ - "a9375aa4-767b-411e-9e46-5bb20e11176d" + "b7343f31-b8ff-4296-9276-beb00a58f32f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,7 +236,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:24 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -245,26 +245,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deletetaskFile/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'task1'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/deletetaskFile/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'task1'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e12fc1b5-9221-40bd-a87f-907bad6227e0" + "2e4b0ba5-50eb-4b1c-ac9c-c76b59f49db0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:26 GMT" + "Tue, 05 Jun 2018 23:36:53 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", @@ -276,7 +276,7 @@ "chunked" ], "request-id": [ - "9808480e-18f5-4527-97f7-4ae82c83b0a4" + "a12c9eda-a681-4b6b-ac9a-44ece57866e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -288,7 +288,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:26 GMT" + "Tue, 05 Jun 2018 23:36:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,26 +297,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deletetaskFile/tasks/task1/files/wd%5CtestFile.txt?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazEvZmlsZXMvd2QlNUN0ZXN0RmlsZS50eHQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deletetaskFile/tasks/task1/files/wd%5CtestFile.txt?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazEvZmlsZXMvd2QlNUN0ZXN0RmlsZS50eHQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6f79566a-140e-418d-a464-e545d8743ee0" + "c5f44965-ab17-44c9-8d88-d17f1f720c62" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:27 GMT" + "Tue, 05 Jun 2018 23:36:53 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -325,13 +325,13 @@ "9" ], "Content-Type": [ - "application/octet-stream" + "text/plain" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:25 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "request-id": [ - "c1d690ec-fb94-48e1-ab24-c4c62831d556" + "0ac8ea91-9d3c-4a61-9886-d1e3c48d64f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -343,7 +343,7 @@ "3.0" ], "ocp-creation-time": [ - "Fri, 06 Oct 2017 03:12:25 GMT" + "Tue, 05 Jun 2018 23:36:51 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -352,7 +352,7 @@ "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fjobs%2FdeletetaskFile%2Ftasks%2Ftask1%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Fri, 06 Oct 2017 03:12:26 GMT" + "Tue, 05 Jun 2018 23:36:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -361,26 +361,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deletetaskFile/tasks/task1/files/wd%5CtestFile.txt?recursive=false&api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazEvZmlsZXMvd2QlNUN0ZXN0RmlsZS50eHQ/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/deletetaskFile/tasks/task1/files/wd%5CtestFile.txt?recursive=false&api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazEvZmlsZXMvd2QlNUN0ZXN0RmlsZS50eHQ/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "990edd4a-94df-4e73-9866-6051e03a96a6" + "313f844b-5bb9-476a-804a-a8d706b8e6f0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:27 GMT" + "Tue, 05 Jun 2018 23:36:54 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -389,7 +389,7 @@ "chunked" ], "request-id": [ - "65b0ca79-a28e-498c-92d4-fcaf16995417" + "4b1370be-43d4-4c77-b81d-4ff065252276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,7 +401,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:26 GMT" + "Tue, 05 Jun 2018 23:36:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -410,26 +410,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deletetaskFile/tasks/task1/files?recursive=false&api-version=2017-09-01.6.0&$filter=startswith(name%2C'wd%5CtestFile.txt')", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazEvZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCU1Q3Rlc3RGaWxlLnR4dCUyNyUyOQ==", + "RequestUri": "/jobs/deletetaskFile/tasks/task1/files?recursive=false&api-version=2018-03-01.6.1&$filter=startswith(name%2C'wd%5CtestFile.txt')", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGUvdGFza3MvdGFzazEvZmlsZXM/cmVjdXJzaXZlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd3ZCU1Q3Rlc3RGaWxlLnR4dCUyNyUyOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eeeb73eb-52cd-42a4-9240-dbe0e7b71a68" + "5a04e6f8-1607-4db4-8391-477f32eb4ea9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:27 GMT" + "Tue, 05 Jun 2018 23:36:54 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#files\",\r\n \"value\": []\r\n}", @@ -441,7 +441,7 @@ "chunked" ], "request-id": [ - "38140e10-f3b8-4047-9383-c6b374752b53" + "87b482be-5540-434a-9c2a-21fc2c8bd2b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,7 +453,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:27 GMT" + "Tue, 05 Jun 2018 23:36:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -462,26 +462,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/deletetaskFile?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/deletetaskFile?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvZGVsZXRldGFza0ZpbGU/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e96d860a-fba9-4dcb-95f6-39304777be28" + "6ad09165-1f07-4dd3-a5f8-5ea905ec6528" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:27 GMT" + "Tue, 05 Jun 2018 23:36:54 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -490,7 +490,7 @@ "chunked" ], "request-id": [ - "e5bb0cd1-ea3a-4b11-bcb9-b54b3fce2166" + "e010c3e5-bfa2-4522-94aa-aeaf38b53dc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,7 +502,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:27 GMT" + "Tue, 05 Jun 2018 23:36:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNode.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNode.json index 1a6a70499f25..aa48d9c4ff71 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNode.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByComputeNode.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9a515d4b-95fd-4ba2-af63-e8db72150495" + "fbf4dc61-fae1-4d1d-b289-225d2f40e7ee" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 04:26:17 GMT" + "Tue, 05 Jun 2018 23:37:05 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t042216z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t042216z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T04:25:27.3554696Z\",\r\n \"lastBootTime\": \"2017-10-06T04:25:26.4245582Z\",\r\n \"allocationTime\": \"2017-10-06T04:22:16.6052713Z\",\r\n \"ipAddress\": \"100.77.180.119\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t042216z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2017-10-06T04:25:27.2954704Z\",\r\n \"endTime\": \"2017-10-06T04:25:27.3554696Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t042216z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t042216z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T04:25:28.275097Z\",\r\n \"lastBootTime\": \"2017-10-06T04:25:27.5028896Z\",\r\n \"allocationTime\": \"2017-10-06T04:22:16.6052713Z\",\r\n \"ipAddress\": \"100.77.196.49\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t042216z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2017-10-06T04:25:28.2210989Z\",\r\n \"endTime\": \"2017-10-06T04:25:28.275097Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"offline\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:28:56.9228842Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.714012Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.164.86\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/deletetaskFile/tasks/task1\",\r\n \"jobId\": \"deletetaskFile\",\r\n \"taskId\": \"task1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:36:51.43662Z\",\r\n \"endTime\": \"2018-06-05T23:36:51.702737Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.439947Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.705569Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20180605t170754z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:13:20.147072Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.712534Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.202.29\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.434222Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.115793Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.175795Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.503918Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "f1a44d4e-bb81-4378-86b3-0be9ca483f00" + "4d6b89f3-a535-47de-8370-e2e8f9b913e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 04:26:17 GMT" + "Tue, 05 Jun 2018 23:37:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,26 +53,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t042216z/files/startup%5Cstdout.txt?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwNDIyMTZ6L2ZpbGVzL3N0YXJ0dXAlNUNzdGRvdXQudHh0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/files/startup%5Cstdout.txt?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2ZpbGVzL3N0YXJ0dXAlNUNzdGRvdXQudHh0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "016545b2-d032-4293-ab7b-455e49e3d5d6" + "29a4f37d-b297-44bf-9aee-188c49a35cbc" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 04:26:18 GMT" + "Tue, 05 Jun 2018 23:37:06 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -81,13 +81,13 @@ "7" ], "Content-Type": [ - "application/octet-stream" + "text/plain" ], "Last-Modified": [ - "Fri, 06 Oct 2017 04:25:27 GMT" + "Tue, 05 Jun 2018 17:11:00 GMT" ], "request-id": [ - "b6dfdf16-143b-44b5-abdb-3382a7394d24" + "2d7ace6b-5708-4881-8ba0-4685501fa46a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,16 +99,16 @@ "3.0" ], "ocp-creation-time": [ - "Fri, 06 Oct 2017 04:25:27 GMT" + "Tue, 05 Jun 2018 17:11:00 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-892191217_1-20171006t042216z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-892191217_1-20180605t170754z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Fri, 06 Oct 2017 04:26:18 GMT" + "Tue, 05 Jun 2018 23:37:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,41 +117,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t042216z/files/startup%5Cstdout.txt?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwNDIyMTZ6L2ZpbGVzL3N0YXJ0dXAlNUNzdGRvdXQudHh0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/files/startup%5Cstdout.txt?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L2ZpbGVzL3N0YXJ0dXAlNUNzdGRvdXQudHh0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5353935b-5368-47dc-bf36-9b08f3ad2cec" + "df5e9ad8-2cee-493b-9d84-47cb68192396" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 04:26:18 GMT" + "Tue, 05 Jun 2018 23:37:06 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "hello\r\n", "ResponseHeaders": { "Content-Type": [ - "application/octet-stream" + "text/plain" ], "Last-Modified": [ - "Fri, 06 Oct 2017 04:25:27 GMT" + "Tue, 05 Jun 2018 17:11:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "758a34d5-2302-45bd-8e71-5f839e8fbab9" + "c0d07c42-bbcb-45f9-bbf7-535a8d631460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -163,16 +163,16 @@ "3.0" ], "ocp-creation-time": [ - "Fri, 06 Oct 2017 04:25:27 GMT" + "Tue, 05 Jun 2018 17:11:00 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-892191217_1-20171006t042216z%2Ffiles%2Fstartup%2Fstdout.txt" + "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fpools%2FtestPool%2Fnodes%2Ftvm-892191217_1-20180605t170754z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Fri, 06 Oct 2017 04:26:18 GMT" + "Tue, 05 Jun 2018 23:37:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTask.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTask.json index 49865e0be3fc..50e55f0306a4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTask.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetNodeFileContentByTask.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"nodeFileContentByTask\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "104" ], "client-request-id": [ - "fd57776d-4d30-4b87-a740-fa686da97682" + "09b1f983-d1ca-4c24-aa60-f2f5de79a6e1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:05 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:06 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d35cc791-75de-4b0d-9ae9-1c5bccadbc1f" + "ca63c4c2-2cc6-4993-bff7-69943c4caf26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,10 +53,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:12:05 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "ETag": [ - "0x8D50C68063DBFC2" + "0x8D5CB3D512B9FD0" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileContentByTask/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/nodeFileContentByTask/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "201" ], "client-request-id": [ - "f1c5510a-d87a-47c7-8f89-921d41af25d8" + "fe903a01-915d-48f1-8fbe-766078869211" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:06 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:06 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bb952d70-4958-4f24-8121-8525c4a3a206" + "ef1fbd99-925b-4e29-9259-020f606c5ec6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,10 +120,10 @@ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/nodeFileContentByTask/tasks/testTask" ], "Date": [ - "Fri, 06 Oct 2017 03:12:05 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "ETag": [ - "0x8D50C6806335701" + "0x8D5CB3D51389643" ], "Location": [ "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/nodeFileContentByTask/tasks/testTask" @@ -135,41 +135,41 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/nodeFileContentByTask/tasks/testTask?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/nodeFileContentByTask/tasks/testTask?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4aa30091-a6fa-4335-be77-e2afc7a80032" + "621c5164-73ce-4c7e-99ec-4d4c50f4b249" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:06 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/nodeFileContentByTask/tasks/testTask\",\r\n \"eTag\": \"0x8D50C6806335701\",\r\n \"creationTime\": \"2017-10-06T03:12:06.2953217Z\",\r\n \"lastModified\": \"2017-10-06T03:12:06.2953217Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:12:06.2953217Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/nodeFileContentByTask/tasks/testTask\",\r\n \"eTag\": \"0x8D5CB3D51389643\",\r\n \"creationTime\": \"2018-06-05T23:37:35.8899779Z\",\r\n \"lastModified\": \"2018-06-05T23:37:35.8899779Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-06-05T23:37:35.8899779Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:12:06 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c3dc83a0-8273-401d-833e-ab7c8e02800d" + "501bf13f-7a48-462c-8d13-40379a0ae65e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,10 +181,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:05 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "ETag": [ - "0x8D50C6806335701" + "0x8D5CB3D51389643" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -193,26 +193,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTask/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'testTask'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/jobs/nodeFileContentByTask/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d99a2017-6bbe-41e1-b5c2-5faed09cb8d5" + "94be451c-783f-46e1-b264-1faa4cbae1bc" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:06 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", @@ -224,7 +224,7 @@ "chunked" ], "request-id": [ - "dc57ef8d-b0b4-4c85-afec-d34105f03a00" + "dbfb6079-e019-4780-9566-cdfd1aaa91f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,7 +236,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:05 GMT" + "Tue, 05 Jun 2018 23:37:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -245,26 +245,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTask/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'testTask'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/jobs/nodeFileContentByTask/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac66fd90-2eb2-4f96-b24d-a4996dd5a657" + "42482ae8-6447-4a54-a922-3b97cc3ced36" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:38 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", @@ -276,7 +276,7 @@ "chunked" ], "request-id": [ - "9431809f-128a-46c1-a702-18cc05bfea1e" + "565144e5-db93-4de4-9527-8aa1fa670004" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -288,7 +288,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,26 +297,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTask/tasks/testTask/files/wd%5CtestFile.txt?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/nodeFileContentByTask/tasks/testTask/files/wd%5CtestFile.txt?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "17af6be3-9d0b-49b4-b730-dcd7c296b72f" + "f7584468-677e-4544-8448-2599c3f089e6" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:38 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -325,13 +325,13 @@ "21" ], "Content-Type": [ - "application/octet-stream" + "text/plain" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:07 GMT" + "Tue, 05 Jun 2018 23:37:36 GMT" ], "request-id": [ - "bb15f65f-f183-43df-ae3e-1a6913beba8e" + "ff7f55a5-aabc-420f-82ad-199b1ef2d2e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -343,7 +343,7 @@ "3.0" ], "ocp-creation-time": [ - "Fri, 06 Oct 2017 03:12:07 GMT" + "Tue, 05 Jun 2018 23:37:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -352,7 +352,7 @@ "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fjobs%2FnodeFileContentByTask%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -361,41 +361,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTask/tasks/testTask/files/wd%5CtestFile.txt?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/nodeFileContentByTask/tasks/testTask/files/wd%5CtestFile.txt?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrL3Rhc2tzL3Rlc3RUYXNrL2ZpbGVzL3dkJTVDdGVzdEZpbGUudHh0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7b090947-e326-49b8-9e03-9135212feceb" + "d2b73f02-92ec-4414-9ddd-e45a6930815c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:38 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "test file contents \r\n", "ResponseHeaders": { "Content-Type": [ - "application/octet-stream" + "text/plain" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:12:07 GMT" + "Tue, 05 Jun 2018 23:37:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8868d9f8-ba75-4e20-a9fc-2f63fab86752" + "cf56e948-4755-42d7-a1c2-f59a2e7d41a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -407,7 +407,7 @@ "3.0" ], "ocp-creation-time": [ - "Fri, 06 Oct 2017 03:12:07 GMT" + "Tue, 05 Jun 2018 23:37:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" @@ -416,7 +416,7 @@ "https%3A%2F%2Fmatthchrwestcentralus.westcentralus.batch.azure.com%2Fjobs%2FnodeFileContentByTask%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -425,26 +425,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/nodeFileContentByTask?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/nodeFileContentByTask?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbm9kZUZpbGVDb250ZW50QnlUYXNrP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4e655ec4-ba18-4443-b85b-dea7f1f91718" + "404dce36-7c18-42f5-9164-11efbad5b5a6" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:12:09 GMT" + "Tue, 05 Jun 2018 23:37:39 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, "ResponseBody": "", @@ -453,7 +453,7 @@ "chunked" ], "request-id": [ - "74888bf8-cc67-4a7c-9bc1-9b2410f95793" + "5d35c6e3-3608-4b9f-879e-8b809028a749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,7 +465,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:12:08 GMT" + "Tue, 05 Jun 2018 23:37:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json index e653bd20de6b..db929accae56 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json @@ -1,29 +1,29 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0d5a2ea0-5513-4399-96fd-e6f7a318f671" + "77d1c621-5854-486c-b093-7675e5448697" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:54 GMT" + "Tue, 05 Jun 2018 23:36:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:19.346011Z\",\r\n \"lastBootTime\": \"2017-10-06T03:10:18.7690398Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.184.70\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"offline\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:28:56.9228842Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.714012Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.164.86\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.430067Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.936633Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.439947Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.705569Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n },\r\n {\r\n \"id\": \"tvm-892191217_2-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_2-20180605t170754z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:13:20.147072Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.712534Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.202.29\",\r\n \"affinityId\": \"TVM:tvm-892191217_2-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.434222Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.115793Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.175795Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.503918Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -32,7 +32,7 @@ "chunked" ], "request-id": [ - "cdba7ec6-9b0d-4363-b61c-fbb970e46cfa" + "c073a1b7-bc29-4c84-90ea-a22dc263fced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,7 +44,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:54 GMT" + "Tue, 05 Jun 2018 23:36:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -53,29 +53,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6P2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "027f2d54-c8ae-42be-b6fd-1647fc5bbc1c" + "7180c808-1817-49e1-8f1e-7390e4995ce0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:54 GMT" + "Tue, 05 Jun 2018 23:36:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20171006t025921z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20171006t025921z\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:08:30.280407Z\",\r\n \"lastBootTime\": \"2017-10-06T03:08:27.8246934Z\",\r\n \"allocationTime\": \"2017-10-06T02:59:21.803234Z\",\r\n \"ipAddress\": \"100.77.180.43\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171006t025921z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvm-892191217_1-20180605t170754z\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testPool/nodes/tvm-892191217_1-20180605t170754z\",\r\n \"state\": \"offline\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2018-06-05T23:28:56.9228842Z\",\r\n \"lastBootTime\": \"2018-06-05T17:10:59.714012Z\",\r\n \"allocationTime\": \"2018-06-05T17:07:54.5257972Z\",\r\n \"ipAddress\": \"100.72.164.86\",\r\n \"affinityId\": \"TVM:tvm-892191217_1-20180605t170754z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-06-05T23:13:19.430067Z\",\r\n \"endTime\": \"2018-06-05T23:13:20.936633Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"resourceFiles\": [],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2018-06-05T17:11:00.439947Z\",\r\n \"endTime\": \"2018-06-05T17:11:00.705569Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0\r\n },\r\n \"isDedicated\": true\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -84,7 +84,7 @@ "chunked" ], "request-id": [ - "64d54ca1-4ba1-4ca7-8908-eb2f5b8fcb3b" + "01fbbfbe-e8b0-457b-ba11-975f08a2f36b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -96,7 +96,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:54 GMT" + "Tue, 05 Jun 2018 23:36:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,29 +105,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20171006t025921z/rdp?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE3MTAwNnQwMjU5MjF6L3JkcD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/testPool/nodes/tvm-892191217_1-20180605t170754z/rdp?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bS04OTIxOTEyMTdfMS0yMDE4MDYwNXQxNzA3NTR6L3JkcD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9f724c02-a5dc-4bc9-a476-2fe368a2a2b9" + "310bc332-6d3c-4c52-85f0-2d488cdcfed5" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:54 GMT" + "Tue, 05 Jun 2018 23:36:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.1.1" ] }, - "ResponseBody": "full address:s:52.161.109.189\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", + "ResponseBody": "full address:s:13.78.130.251\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -136,7 +136,7 @@ "chunked" ], "request-id": [ - "1266dd08-f969-4591-8d06-eabed027d426" + "d3da2358-b841-46a1-9373-c6e39b338d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:54 GMT" + "Tue, 05 Jun 2018 23:36:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json index 635764a76d32..ecc312ea71e0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobschedules?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobschedules?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "157" ], "client-request-id": [ - "2c4200f1-1468-47af-9692-86515b718750" + "a94c22cd-2462-4f04-9ee7-6e8862b00858" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53386dbe-0cf1-4da1-9d22-1cf276f8903f" + "ecadd9d8-ebf2-4484-b86c-e21d650a6172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "ETag": [ - "0x8D50C67B07F4DAF" + "0x8D5C26F0E8E132D" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,26 +68,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/disable?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2Rpc2FibGU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/disable?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2Rpc2FibGU/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "44ea985f-5b21-46bf-ab27-fcfc57609c9a" + "c9d6cf71-9267-47cd-8620-788924b91f27" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -96,10 +96,10 @@ "0" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "request-id": [ - "8e20ad61-bf00-4c35-bf46-3c9a05863002" + "4c35df08-091a-4192-b0b9-440dd325f507" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,13 +111,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/disable" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/disable" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "ETag": [ - "0x8D50C67B0B9F5A5" + "0x8D5C26F0EE0D325" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,41 +126,41 @@ "StatusCode": 204 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "892f4494-0fdb-4fec-9b43-02e104b99e9e" + "7a9bad6b-11ac-4ee5-94a8-c7aaa8987d35" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D50C67B0B9F5A5\",\r\n \"lastModified\": \"2017-10-06T03:09:42.8935077Z\",\r\n \"creationTime\": \"2017-10-06T03:09:42.5090991Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:42.8935077Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:09:42.5090991Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D5C26F0EE0D325\",\r\n \"lastModified\": \"2018-05-25T18:40:58.9566757Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4143661Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:58.9566757Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.4143661Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "788dd7af-c661-4fac-93f6-ae8228d67543" + "8b26422e-9af6-453a-b7eb-d82fb6e92e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,10 +172,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "ETag": [ - "0x8D50C67B0B9F5A5" + "0x8D5C26F0EE0D325" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,41 +184,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9a1ad066-bd50-4294-a3c1-556cbd08a00c" + "a30b3158-ec90-46ce-a73a-968f734ef495" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D50C67B0E66B25\",\r\n \"lastModified\": \"2017-10-06T03:09:43.1848741Z\",\r\n \"creationTime\": \"2017-10-06T03:09:42.5090991Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:43.1848741Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:09:43.0403959Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D5C26F0F3431D4\",\r\n \"lastModified\": \"2018-05-25T18:40:59.5030484Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4143661Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5030484Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:59.2186777Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:43 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "df91c09a-d2cd-4eda-bc62-475c48dd71ee" + "914cb3c1-71f1-4cfa-9561-4fdb4db96b16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -230,10 +230,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "ETag": [ - "0x8D50C67B0E66B25" + "0x8D5C26F0F3431D4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -242,26 +242,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/enable?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2VuYWJsZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/enable?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2VuYWJsZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ef83c605-c0e2-4571-8d31-e54d688dc047" + "9625fe87-6694-4c9c-bd18-8720df0f93c2" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -270,10 +270,10 @@ "0" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:43 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "request-id": [ - "2c61d2d7-d97b-46b0-adc5-f2ff07d8092e" + "e74a6b6f-ef3b-4879-b3cf-1ac26565d7c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,13 +285,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/enable" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/enable" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "ETag": [ - "0x8D50C67B0D05F77" + "0x8D5C26F0F08CD99" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,29 +300,29 @@ "StatusCode": 204 }, { - "RequestUri": "/jobschedules?api-version=2017-09-01.6.0&$filter=id%20eq%20'testDisableEnableTerminateJobSchedule'", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlJTI3", + "RequestUri": "/jobschedules?api-version=2018-03-01.6.1&$filter=id%20eq%20'testDisableEnableTerminateJobSchedule'", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkZmlsdGVyPWlkJTIwZXElMjAlMjd0ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1dbe596-b8ea-456e-84b6-58ce71905e3b" + "9c3415b7-4ecb-4701-9476-053d091b9c14" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D50C67B0D05F77\",\r\n \"lastModified\": \"2017-10-06T03:09:43.0403959Z\",\r\n \"creationTime\": \"2017-10-06T03:09:42.5090991Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:43.0403959Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:09:42.8935077Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D5C26F0F08CD99\",\r\n \"lastModified\": \"2018-05-25T18:40:59.2186777Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4143661Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.2186777Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.9566757Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -331,7 +331,7 @@ "chunked" ], "request-id": [ - "20d366ea-87e3-4520-835b-930467b06ee9" + "38ee446a-41e6-43cc-91ce-16c300564a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -343,7 +343,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,38 +352,38 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/terminate?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/terminate?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "803038b0-e737-4867-9be6-03b265cd9d82" + "4471448c-3e42-4cee-955f-84e48ee5d8bc" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:43 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1b091ca5-77ee-4849-b433-24405708083f" + "93b3e9d6-4863-46d3-9fce-4914c8059b81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/terminate" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/terminate" ], "Date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "ETag": [ - "0x8D50C67B0E66B25" + "0x8D5C26F0F3431D4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -410,26 +410,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "74614107-d124-4521-bc3f-c7d1dcd96775" + "bce846e9-58ff-4b98-9f62-fadca5e92538" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:42 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -438,7 +438,7 @@ "chunked" ], "request-id": [ - "f7ee445f-827d-4bc8-8e0f-1be871033cb1" + "e990672f-1fcb-4e54-adaa-869df86011e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,7 +450,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:44 GMT" + "Fri, 25 May 2018 18:40:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -461,9 +461,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json index 61a5004b4946..9853d2dab2f3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobschedules?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobschedules?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"jobSchedule1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "132" ], "client-request-id": [ - "dff5b7df-3f34-4d9f-93cd-eb9b932bd384" + "73fbaee4-685d-4e91-8841-581265971cca" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:24 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2fc38456-4349-48e0-81c7-01dfa7bedcfe" + "329ed7cd-52ee-4d5d-951b-18a998a77fca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule1" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule1" ], "Date": [ - "Fri, 06 Oct 2017 03:09:24 GMT" + "Fri, 25 May 2018 18:41:17 GMT" ], "ETag": [ - "0x8D50C67A6542965" + "0x8D5C26F1A693DE6" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule1" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobschedules?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"jobSchedule2\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2020-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "182" ], "client-request-id": [ - "97547fbe-338b-4896-b133-145c13cf017b" + "3a8f5e25-8305-4891-9de3-2752bc5b2ad4" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5ebce85a-51e0-40ad-987e-67b9138a07fa" + "4c8aca3a-8e44-467f-8975-d9a51ea6fd2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule2" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule2" ], "Date": [ - "Fri, 06 Oct 2017 03:09:24 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "ETag": [ - "0x8D50C67A6753BBC" + "0x8D5C26F1A81E8A2" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule2" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -135,29 +135,29 @@ "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2017-09-01.6.0&$filter=id%20eq%20'jobSchedule1'%20or%20id%20eq%20'jobSchedule2'", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdqb2JTY2hlZHVsZTElMjclMjBvciUyMGlkJTIwZXElMjAlMjdqb2JTY2hlZHVsZTIlMjc=", + "RequestUri": "/jobschedules?api-version=2018-03-01.6.1&$filter=id%20eq%20'jobSchedule1'%20or%20id%20eq%20'jobSchedule2'", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMSYkZmlsdGVyPWlkJTIwZXElMjAlMjdqb2JTY2hlZHVsZTElMjclMjBvciUyMGlkJTIwZXElMjAlMjdqb2JTY2hlZHVsZTIlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "00426a78-a944-4df7-81ec-10ee3badf247" + "55a678bb-b87a-4def-84fa-f18f9c4be367" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D50C67A6542965\",\r\n \"lastModified\": \"2017-10-06T03:09:25.4491493Z\",\r\n \"creationTime\": \"2017-10-06T03:09:25.4491493Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:25.4491493Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D50C67A6753BBC\",\r\n \"lastModified\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"creationTime\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2020-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2020-01-01T12:30:00Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D5C26F1A693DE6\",\r\n \"lastModified\": \"2018-05-25T18:41:18.3056358Z\",\r\n \"creationTime\": \"2018-05-25T18:41:18.3056358Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:18.3056358Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://batchtestaccount.westus.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D5C26F1A81E8A2\",\r\n \"lastModified\": \"2018-05-25T18:41:18.467293Z\",\r\n \"creationTime\": \"2018-05-25T18:41:18.467293Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:18.467293Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2020-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2020-01-01T12:30:00Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -166,7 +166,7 @@ "chunked" ], "request-id": [ - "33619b18-0265-47a7-8612-d4e8023b7336" + "b556b145-f9ce-4923-a67c-142303814d42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,7 +178,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:24 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -187,10 +187,10 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noAction\",\r\n \"onTaskFailure\": \"noAction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" @@ -199,32 +199,32 @@ "403" ], "client-request-id": [ - "7580fb73-c214-4f34-aaeb-0dff4a758422" + "f032be1e-d199-416b-9bca-161333fd96b9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:26 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6a8dc227-ecd5-4a37-9d5d-c78d1ae16664" + "656213d4-b7b6-49e0-81c3-cd88e71cd192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,13 +236,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule2" + "https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule2" ], "Date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "ETag": [ - "0x8D50C67A6A8A015" + "0x8D5C26F1AC25D7A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -251,41 +251,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dfd1900c-a3f4-4922-a020-cb69a60cd31d" + "d03fcd39-f76c-4cd7-a925-685c2676d821" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D50C67A6A8A015\",\r\n \"lastModified\": \"2017-10-06T03:09:26.0026901Z\",\r\n \"creationTime\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D5C26F1AC25D7A\",\r\n \"lastModified\": \"2018-05-25T18:41:18.8897146Z\",\r\n \"creationTime\": \"2018-05-25T18:41:18.467293Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:18.467293Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:09:26 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dee1f843-2735-4c76-b5bf-fa20f4fc0e53" + "c36ea063-1943-4a7e-bdda-92748b9c8cfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +297,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "ETag": [ - "0x8D50C67A6A8A015" + "0x8D5C26F1AC25D7A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,26 +309,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTE/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobschedules/jobSchedule1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTE/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "302bcb33-343d-475e-b376-fa086e2cd1ff" + "9a8ce46f-2623-44c8-81a3-2d9ede84f3b1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:19 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -337,7 +337,7 @@ "chunked" ], "request-id": [ - "3b0a8d5b-109a-424d-8dac-5ab4501b546e" + "7865f4dc-7b7a-4971-b901-51911f361dcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +349,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,26 +358,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "177dfd0a-e69b-4f15-a780-1aa1623c919c" + "bf8a28de-6183-48f4-a627-9286f7328df1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:19 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -386,7 +386,7 @@ "chunked" ], "request-id": [ - "a4c8fd12-2b6c-4566-b684-c7f87625d835" + "00e29277-72c3-40e1-b303-a4e6a8632e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -398,7 +398,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -407,29 +407,29 @@ "StatusCode": 202 }, { - "RequestUri": "/jobschedules?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobschedules?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ed0d4d47-1983-40d6-9856-a2966fe370ea" + "ae77d0f9-c650-4cd5-a412-65a985fb4792" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:19 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D50C67A6542965\",\r\n \"lastModified\": \"2017-10-06T03:09:25.4491493Z\",\r\n \"creationTime\": \"2017-10-06T03:09:25.4491493Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:26.1385217Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:09:25.4491493Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D50C67A6A8A015\",\r\n \"lastModified\": \"2017-10-06T03:09:26.0026901Z\",\r\n \"creationTime\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:09:26.1979511Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:09:25.6658876Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D5C26F1A693DE6\",\r\n \"lastModified\": \"2018-05-25T18:41:18.3056358Z\",\r\n \"creationTime\": \"2018-05-25T18:41:18.3056358Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:19.0727425Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:41:18.3056358Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\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://batchtestaccount.westus.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D5C26F1AC25D7A\",\r\n \"lastModified\": \"2018-05-25T18:41:18.8897146Z\",\r\n \"creationTime\": \"2018-05-25T18:41:18.467293Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:19.1608467Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:41:18.467293Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -438,7 +438,7 @@ "chunked" ], "request-id": [ - "eb81c4e9-2a92-4d7d-81d3-f0d34a23f909" + "33864109-c252-40b6-bfa3-1b8fad794c4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,7 +450,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:09:25 GMT" + "Fri, 25 May 2018 18:41:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -461,9 +461,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json index e88fdbc2732d..000a6cd9bbbf 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"priority\": 0,\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 \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"\"\r\n },\r\n \"targetDedicatedNodes\": 3\r\n }\r\n }\r\n },\r\n \"onTaskFailure\": \"performExitOptionsJobAction\",\r\n \"usesTaskDependencies\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"priority\": 0,\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 \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"\"\r\n },\r\n \"targetDedicatedNodes\": 3\r\n }\r\n }\r\n },\r\n \"onTaskFailure\": \"performexitoptionsjobaction\",\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" @@ -13,32 +13,32 @@ "520" ], "client-request-id": [ - "b0478c10-3f64-4455-8412-91dcb64eb1c6" + "d0ab98ca-7f4c-40ce-8ba9-e14bb11674b0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9c8966ec-400b-4365-8217-68b350106ccc" + "30ff3298-5826-4637-a6ae-f655d49321c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:34 GMT" ], "ETag": [ - "0x8D50C69B71E68DB" + "0x8D5C26F48842F97" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testJobCompletesWhenTaskFails/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHMvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testJobCompletesWhenTaskFails/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHMvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"taskId-1\",\r\n \"commandLine\": \"cmd /c exit 3\",\r\n \"exitConditions\": {\r\n \"exitCodeRanges\": [\r\n {\r\n \"start\": 2,\r\n \"end\": 4,\r\n \"exitOptions\": {\r\n \"jobAction\": \"terminate\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "251" ], "client-request-id": [ - "08d97835-2606-4d56-8ad1-ba3c4ab7b9f9" + "7e7360f8-d02d-468a-925a-b48d6d6b0c40" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "30cad118-23d6-4be3-a631-548ed6597156" + "6fa386dd-44dd-4e3e-8d88-7ad2a42f4ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" ], "Date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "ETag": [ - "0x8D50C69B701AA51" + "0x8D5C26F48A397A7" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -135,29 +135,29 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "37694e8e-8af2-4c20-94db-c1ba802c8521" + "aaf04973-d277-4bb3-a28f-e769299e6198" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -166,7 +166,7 @@ "chunked" ], "request-id": [ - "95ea9a70-0b96-4cd1-9ae7-5735fcf4a8a5" + "0016faf3-c795-477c-aab4-14888d70a955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,7 +178,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -187,29 +187,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2832e31b-2b70-4bd5-b651-f23ed840895d" + "02de13d8-61ee-4c35-ac1d-51dd0bccc3e9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -218,7 +218,7 @@ "chunked" ], "request-id": [ - "07a800b7-614c-406c-bffd-170fc33342d0" + "6bde6d96-97de-4ad1-9b9c-715153887cb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -230,7 +230,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:24:12 GMT" + "Fri, 25 May 2018 18:42:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -239,29 +239,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8a8e5b60-f1da-4a16-9150-5af221d30e83" + "e832ea93-4446-4ad3-a9a7-c66452707022" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:24:32 GMT" + "Fri, 25 May 2018 18:42:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -270,7 +270,7 @@ "chunked" ], "request-id": [ - "69f29e35-9b49-4074-8196-f18c42e409d1" + "dd844b62-ab91-4545-a63e-5792acfc8b45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,7 +282,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:24:32 GMT" + "Fri, 25 May 2018 18:42:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -291,29 +291,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe062ccf-9a1a-4027-9443-c680a6908b7e" + "b5eb7036-6489-45f7-98be-5dfcb0cd072f" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:24:52 GMT" + "Fri, 25 May 2018 18:43:16 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -322,7 +322,7 @@ "chunked" ], "request-id": [ - "a44731a6-0e7f-4b24-84ce-da5497794de9" + "fd5563ca-bdc2-41d4-816d-e2b8c9b392d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,7 +334,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:24:52 GMT" + "Fri, 25 May 2018 18:43:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -343,29 +343,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0eb53407-0aaa-481f-88b7-4c0e23955142" + "ad0d9bc2-6538-4c9c-a9be-5bf04f2c5d30" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:25:12 GMT" + "Fri, 25 May 2018 18:43:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -374,7 +374,7 @@ "chunked" ], "request-id": [ - "59f26fb8-c729-43a3-b0e5-741bedbd7fb2" + "4c05d0e2-cb41-40ba-9612-3c80ad455a63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,7 +386,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:25:12 GMT" + "Fri, 25 May 2018 18:43:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -395,29 +395,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a1fafe6-8218-458b-bd10-fd5c0b28a36c" + "466d9296-b2b7-47be-8f38-2e0407da23ad" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:25:32 GMT" + "Fri, 25 May 2018 18:43:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -426,7 +426,7 @@ "chunked" ], "request-id": [ - "a1ded034-5202-40f3-b802-34d0723e5ecf" + "78f4621f-1127-4a42-86a8-e117c0abcc7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,7 +438,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:25:33 GMT" + "Fri, 25 May 2018 18:43:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,29 +447,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7936ccc1-e5f2-482c-be20-41d489e709e9" + "fd9ee365-c50f-4101-a185-703b89715530" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:25:53 GMT" + "Fri, 25 May 2018 18:44:16 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -478,7 +478,7 @@ "chunked" ], "request-id": [ - "f00a93d5-e352-48d9-a054-8b0928c7f640" + "3500f305-a6fd-4ba6-b20f-c51dca27e66c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,7 +490,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:25:53 GMT" + "Fri, 25 May 2018 18:44:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -499,29 +499,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1c7581d-75e1-4126-9669-48d9f3ab4e1f" + "15e87c56-0760-458c-a33b-16a60e61a8e7" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:26:13 GMT" + "Fri, 25 May 2018 18:44:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -530,7 +530,7 @@ "chunked" ], "request-id": [ - "bc3ef108-57cc-45b5-bdae-0118e27ba2be" + "e75693d8-47e1-41c8-9274-aef06f9cd3ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:26:13 GMT" + "Fri, 25 May 2018 18:44:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -551,29 +551,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eef6c490-8f51-453e-bdb1-c7045566f949" + "4ca9555a-95b3-431b-933c-0492415d240c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:26:33 GMT" + "Fri, 25 May 2018 18:44:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -582,7 +582,7 @@ "chunked" ], "request-id": [ - "c80b5b4e-5918-49aa-bc25-ebf57a19e698" + "92771775-05a6-43de-aed0-d4e35147ba2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594,7 +594,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:26:33 GMT" + "Fri, 25 May 2018 18:44:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -603,29 +603,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f087ca57-1b33-45b7-b39f-6f66fefa1091" + "1c79048b-f0ea-4ab9-97b7-22abba1d57cf" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:26:53 GMT" + "Fri, 25 May 2018 18:45:16 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -634,7 +634,7 @@ "chunked" ], "request-id": [ - "7f9bf8eb-e5f4-4a84-8b7f-299070d6c349" + "8c682867-977f-4f5d-bbb7-a8fc46ee4b85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,7 +646,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:26:53 GMT" + "Fri, 25 May 2018 18:45:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -655,29 +655,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c4ab737c-2a9f-4f53-90d9-1eb63838754a" + "dad199b6-319c-439c-a262-a21e0fa95828" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:27:13 GMT" + "Fri, 25 May 2018 18:45:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -686,7 +686,7 @@ "chunked" ], "request-id": [ - "f3b32e4a-7911-4cf0-894f-3c7039fe72e9" + "5b8381ff-d9e0-464d-8c54-4129ca7f10e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -698,7 +698,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:27:13 GMT" + "Fri, 25 May 2018 18:45:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -707,29 +707,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "10fca4ed-7f2f-4bc1-a575-36390d6e9878" + "6c1cb19a-052c-4760-ae13-e13cda0ffc7e" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:27:33 GMT" + "Fri, 25 May 2018 18:45:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -738,7 +738,7 @@ "chunked" ], "request-id": [ - "b915ba1d-6b8e-47bb-aab0-a2dfd4a0358a" + "7c3ec309-76c6-4bab-ad61-7cb4ae91f429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,7 +750,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:27:33 GMT" + "Fri, 25 May 2018 18:45:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -759,29 +759,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c9890939-7235-41c3-8113-dbf929df1e6f" + "46ba6bf2-cd5d-473f-b19a-93b74401ec2f" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:27:53 GMT" + "Fri, 25 May 2018 18:46:16 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -790,7 +790,7 @@ "chunked" ], "request-id": [ - "73d28fdf-3197-4c40-a5ab-0caea0b72289" + "4514968e-e5e6-47b8-a534-d6ca2a01108c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -802,7 +802,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:27:53 GMT" + "Fri, 25 May 2018 18:46:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -811,29 +811,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01e5df43-f60b-4f1f-8e05-4105890819e2" + "3f9749e1-1ec6-4f35-9360-5786a1bc299e" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:28:13 GMT" + "Fri, 25 May 2018 18:46:36 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -842,7 +842,7 @@ "chunked" ], "request-id": [ - "ab72a7ae-9daf-4f9e-91e7-7a393831d30d" + "4019a970-085d-420b-8b2e-e580e7e7d044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -854,7 +854,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:28:13 GMT" + "Fri, 25 May 2018 18:46:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -863,29 +863,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "56ca236f-8fc2-47b8-b117-43a42de88e75" + "29665b96-61e0-4686-beae-f13788dd0113" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:28:33 GMT" + "Fri, 25 May 2018 18:46:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -894,7 +894,7 @@ "chunked" ], "request-id": [ - "ac9844b1-0940-4500-820d-f1104f14a48f" + "12aa202d-88c3-40c6-b3f9-bd7662685400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:28:33 GMT" + "Fri, 25 May 2018 18:46:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -915,29 +915,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "823debb4-c3fc-4231-9c72-907ad1ae26e3" + "f7c942cc-e102-4511-aa7d-1522e075b2a6" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:28:53 GMT" + "Fri, 25 May 2018 18:47:17 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -946,7 +946,7 @@ "chunked" ], "request-id": [ - "0eb28cb0-deb6-447d-8939-fdbf712af69c" + "0ba3a466-005d-48bd-92f6-b7c67db3238e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -958,7 +958,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:28:53 GMT" + "Fri, 25 May 2018 18:47:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -967,29 +967,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6606ebd5-96f1-4560-b7f1-ba68567898de" + "f80bbda2-94c0-4447-868e-a891dcc3905d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:29:13 GMT" + "Fri, 25 May 2018 18:47:37 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C69B71E68DB\",\r\n \"lastModified\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -998,7 +998,7 @@ "chunked" ], "request-id": [ - "8548b094-02c5-4878-8123-92c0acbce97d" + "0d36b71b-0d1b-4a84-9479-269c8e4fdd3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,7 +1010,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:29:13 GMT" + "Fri, 25 May 2018 18:47:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1019,29 +1019,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ead39e41-99b9-4e21-bb88-f587468a9cb5" + "b5d38941-8200-42b1-bff3-ce1e7dccc774" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:29:33 GMT" + "Fri, 25 May 2018 18:47:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C6A6EF3EC75\",\r\n \"lastModified\": \"2017-10-06T03:29:21.0339445Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2017-10-06T03:29:21.0339445Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1050,7 +1050,7 @@ "chunked" ], "request-id": [ - "c4c03222-2427-4139-8e1e-7a262878a7ed" + "6fa52128-b2c3-4aad-b157-7cb33ada6e59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1062,7 +1062,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:29:33 GMT" + "Fri, 25 May 2018 18:47:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1071,29 +1071,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e41c6c28-18eb-42a1-8980-9e40a9f6e755" + "b8703193-c0e8-434d-930e-9534e9c0e3be" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:29:53 GMT" + "Fri, 25 May 2018 18:48:17 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D50C6A6EF3EC75\",\r\n \"lastModified\": \"2017-10-06T03:29:21.0339445Z\",\r\n \"creationTime\": \"2017-10-06T03:24:12.5875951Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:29:51.2590939Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:24:12.6116059Z\",\r\n \"endTime\": \"2017-10-06T03:29:51.2590939Z\",\r\n \"poolId\": \"TestSpecPrefix_B587A395-FE6F-45C8-8F5E-85DF33150AAB\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C26F48842F97\",\r\n \"lastModified\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1102,7 +1102,7 @@ "chunked" ], "request-id": [ - "921507a7-0368-4fcb-8ce8-7f2879eba4cd" + "ba0d5d1f-faa5-4349-b0b6-df5cbaf563e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,7 +1114,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:29:52 GMT" + "Fri, 25 May 2018 18:48:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1123,26 +1123,494 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testJobCompletesWhenTaskFails?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7db670a-c649-4515-abcf-82b895204e07" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:48:37 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "15903609-0682-4c48-bc42-89cb1ff85a91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:48:36 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7a0be8c9-9886-4d79-ab35-55750a91aead" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:48:57 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4232934d-9eef-43e4-bb83-59bd601d11a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:48:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b2da5df3-72c4-4fad-ac84-7aefce7ffd2f" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:49:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fee7e3f9-f21f-41e3-8c08-aa6a29f05683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:49:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "77ca4ca8-c327-4dae-8613-b45c6877d9b4" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:49:37 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "5df6d15b-0005-423e-987b-d5ffbde1e3af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:49:36 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6025547e-8987-426a-8529-e75544f66304" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:49:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f8655189-028a-4d98-871a-18399b5ab755" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:49:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a633cf0d-1022-47a6-a113-f900a6acb11a" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:50:18 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b8f38a2a-6a16-495e-9d6e-7978808028b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:50:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0b63ab55-cd14-4d49-8818-cfd206b2a749" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:50:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "23ccac9a-6646-467c-bd43-8a3de481c27e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:50:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c87f7e93-16c2-42fc-a3e4-24f62ad51d59" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:50:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "cfd99e56-c969-4b16-a572-56cfac39205c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:50:58 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2f955960-673f-4be3-bfa2-106b27f1296d" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 18:51:18 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D5C270201731EE\",\r\n \"lastModified\": \"2018-05-25T18:48:37.3309934Z\",\r\n \"creationTime\": \"2018-05-25T18:42:35.6283563Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:51:08.4190681Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:42:35.6574103Z\",\r\n \"endTime\": \"2018-05-25T18:51:08.4190681Z\",\r\n \"poolId\": \"TestSpecPrefix_1CC0EF2F-E59E-409E-95DB-D52F78721864\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6600eeeb-6682-4a94-8a61-d3bffccfa975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 18:51:18 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testJobCompletesWhenTaskFails?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0d64cde0-1f37-4350-b431-f6215c14a904" + "c771052c-574b-4a2a-a6e2-bb4fcd09204f" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:13 GMT" + "Fri, 25 May 2018 18:51:38 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -1151,7 +1619,7 @@ "chunked" ], "request-id": [ - "82fc7c97-3d5d-4b0e-b373-6f0d49046ec4" + "5e5d2013-627d-4a8e-8135-92bcfd9de39e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1163,7 +1631,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:13 GMT" + "Fri, 25 May 2018 18:51:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1174,9 +1642,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json index f1d2164b23f9..3ffccf4b17c1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "112" ], "client-request-id": [ - "56711de9-b738-42b5-8fc5-ddd29ae17138" + "1626a8bc-681c-461c-ba7f-5ce533b58401" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:03 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c5727013-322e-48cd-9477-d46eedd05f9b" + "2f454934-5b41-471e-b41f-d2c17def4b0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:02 GMT" ], "ETag": [ - "0x8D50C69A53ED705" + "0x8D5C26F357D6BA5" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/disable?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/testDisableEnableTerminateJob/disable?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"disableTasks\": \"terminate\"\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "35" ], "client-request-id": [ - "abfa0a94-752b-4105-bcfe-a412d01c6d38" + "82aebd5c-7c6d-45bb-aed0-aaf32a1668b4" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:03 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:04 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "98fe3b1a-6281-471d-a2d9-216223b67ec1" + "c4d52e46-4265-41f3-8b5c-c1ed404f2e12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,13 +117,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJob/disable" + "https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJob/disable" ], "Date": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:03 GMT" ], "ETag": [ - "0x8D50C69A575C4B7" + "0x8D5C26F35B60A8F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -132,41 +132,41 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4aa45ff7-abdf-44ea-b39e-de92d27fd9ee" + "eca6ceae-e0ed-4cf1-8646-62910fb402bb" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D50C69A575C4B7\",\r\n \"lastModified\": \"2017-10-06T03:23:42.9851319Z\",\r\n \"creationTime\": \"2017-10-06T03:23:42.6101343Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:43.6578821Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:23:42.6251525Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2017-10-06T03:23:42.6251525Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D5C26F35B60A8F\",\r\n \"lastModified\": \"2018-05-25T18:42:04.1074319Z\",\r\n \"creationTime\": \"2018-05-25T18:42:03.7113348Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:04.1214453Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:03.7363621Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:42:03.7363621Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:42 GMT" + "Fri, 25 May 2018 18:42:04 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c1959897-633e-48e6-9714-3be1a1b3148e" + "1d651d15-9e50-4004-8bfc-92de30a42354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,10 +178,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "ETag": [ - "0x8D50C69A575C4B7" + "0x8D5C26F35B60A8F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -190,41 +190,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "819e777d-2d8a-4a76-a935-c79cb00cf5b2" + "930550dc-b296-4ca2-9f95-1e7f621c9205" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D50C69AB968CD6\",\r\n \"lastModified\": \"2017-10-06T03:23:53.2662998Z\",\r\n \"creationTime\": \"2017-10-06T03:23:42.6101343Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:53.2662998Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:23:53.1351531Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2017-10-06T03:23:42.6251525Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D5C26F3BFDC0D2\",\r\n \"lastModified\": \"2018-05-25T18:42:14.643733Z\",\r\n \"creationTime\": \"2018-05-25T18:42:03.7113348Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:14.6889554Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:14.4089271Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:42:03.7363621Z\",\r\n \"endTime\": \"2018-05-25T18:42:14.6889554Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:53 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b05f5458-908e-4a04-a702-1acfa8cd17e8" + "759f75c7-40a5-4d8e-a4d7-3c2f629d39e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,10 +236,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "ETag": [ - "0x8D50C69AB968CD6" + "0x8D5C26F3BFDC0D2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -248,38 +248,38 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/enable?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZW5hYmxlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob/enable?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZW5hYmxlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5abc9a1e-f160-42e1-afc8-e69e67fd3dd5" + "0bc0e5d6-774f-49be-ba7e-18c98a32eb8b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:53 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ede6e57a-7b20-453d-8051-0b7fa9c694c5" + "8fd72ca0-7bb3-48eb-972f-e2b3931cde20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,13 +291,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJob/enable" + "https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJob/enable" ], "Date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "ETag": [ - "0x8D50C69AB8289EB" + "0x8D5C26F3BD9ECB7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,29 +306,29 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0&$filter=id%20eq%20'testDisableEnableTerminateJob'", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IlMjc=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1&$filter=id%20eq%20'testDisableEnableTerminateJob'", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eafa7e92-640a-45bb-9a32-dc6d28451533" + "cbca14d5-c87c-49ba-9c03-11125f47fb90" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D50C69AB8289EB\",\r\n \"lastModified\": \"2017-10-06T03:23:53.1351531Z\",\r\n \"creationTime\": \"2017-10-06T03:23:42.6101343Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:53.1351531Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:23:43.6578821Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2017-10-06T03:23:42.6251525Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D5C26F3BD9ECB7\",\r\n \"lastModified\": \"2018-05-25T18:42:14.4089271Z\",\r\n \"creationTime\": \"2018-05-25T18:42:03.7113348Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:42:14.4089271Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:42:04.1214453Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:42:03.7363621Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -337,7 +337,7 @@ "chunked" ], "request-id": [ - "ae1cb44a-f159-4eca-bfc6-81390539b44e" + "50712403-6520-483d-a994-64f96a54bd41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +349,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,38 +358,38 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/terminate?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvdGVybWluYXRlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob/terminate?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvdGVybWluYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "00d19cb9-0f4b-403b-9cda-cce7978cc897" + "277c7ad9-3b39-4af1-a7da-95bd73e2136d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:53 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "aa450a21-9038-4c14-b834-40a915e96e12" + "933ecd6b-108c-4a28-81ac-b934e787d082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,13 +401,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testDisableEnableTerminateJob/terminate" + "https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJob/terminate" ], "Date": [ - "Fri, 06 Oct 2017 03:23:52 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "ETag": [ - "0x8D50C69AB968CD6" + "0x8D5C26F3BFDC0D2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -416,26 +416,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "50e402ba-4c89-446b-88a0-290ea950c78e" + "bcdad955-d252-4169-8745-0a9103cadd56" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:53 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -444,7 +444,7 @@ "chunked" ], "request-id": [ - "621aa9f7-0536-4a33-b17d-66f2d8f8643f" + "dd8f4d79-d7b9-41e5-bcc0-29ddf7d81cd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,7 +456,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:54 GMT" + "Fri, 25 May 2018 18:42:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -467,9 +467,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json index 51ed70643b81..b790fb4dcfe9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"job1\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "121" ], "client-request-id": [ - "3558601b-e3e9-475c-8d72-853c94dc94be" + "dbea8da2-f715-4e0b-bb2a-d0e266d33535" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "399227ff-7a8e-49c7-bbd2-476cc67e12f1" + "ba865b84-9a50-403d-a6c6-eb5b442221c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "ETag": [ - "0x8D50C699A2DBFD6" + "0x8D5C26F28EFCFEA" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"job2\",\r\n \"priority\": 3,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "122" ], "client-request-id": [ - "262afab9-8147-4d9a-becd-18e1d6a77b05" + "25b5b320-dd89-4ca3-85e2-e9b983d39eab" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0952f58d-6f83-4923-a816-90cb985bbf8c" + "0f19de15-9dcd-4865-ba05-6267c73d1d8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "ETag": [ - "0x8D50C699A416EDC" + "0x8D5C26F2909D2C1" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -135,29 +135,29 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0&$filter=id%20eq%20'job1'%20or%20id%20eq%20'job2'", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3am9iMSUyNyUyMG9yJTIwaWQlMjBlcSUyMCUyN2pvYjIlMjc=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1&$filter=id%20eq%20'job1'%20or%20id%20eq%20'job2'", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3am9iMSUyNyUyMG9yJTIwaWQlMjBlcSUyMCUyN2pvYjIlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "638cdf85-a72b-4254-a5ab-9b3ddc7f6439" + "a8b016b0-098c-4244-a7ad-7f46b3bed23e" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"job1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job1\",\r\n \"eTag\": \"0x8D50C699A2DBFD6\",\r\n \"lastModified\": \"2017-10-06T03:23:24.0582102Z\",\r\n \"creationTime\": \"2017-10-06T03:23:24.0442097Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:24.0582102Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2017-10-06T03:23:24.0582102Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"job2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D50C699A416EDC\",\r\n \"lastModified\": \"2017-10-06T03:23:24.1872092Z\",\r\n \"creationTime\": \"2017-10-06T03:23:24.17421Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:24.1872092Z\",\r\n \"priority\": 3,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:23:24.1872092Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"job1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/job1\",\r\n \"eTag\": \"0x8D5C26F28EFCFEA\",\r\n \"lastModified\": \"2018-05-25T18:41:42.6756586Z\",\r\n \"creationTime\": \"2018-05-25T18:41:42.6476133Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:42.6756586Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:41:42.6756586Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"job2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D5C26F2909D2C1\",\r\n \"lastModified\": \"2018-05-25T18:41:42.8461249Z\",\r\n \"creationTime\": \"2018-05-25T18:41:42.8200922Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:42.8461249Z\",\r\n \"priority\": 3,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:41:42.8461249Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -166,7 +166,7 @@ "chunked" ], "request-id": [ - "25810dd7-e6c1-4afa-9446-2070ff1cf9b9" + "98a463d6-acd9-4939-b139-a15a69651005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,7 +178,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -187,10 +187,10 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/job2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/job2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"priority\": 5,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noAction\"\r\n}", + "RequestBody": "{\r\n \"priority\": 5,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" @@ -199,32 +199,32 @@ "217" ], "client-request-id": [ - "54454ea3-658f-4cdd-ba1f-ed1afe7dfcd3" + "8167e0f4-2015-48cf-abe9-fb14671090a0" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f05b0baf-8085-4e3c-9555-ad4e524775b3" + "ec3cf571-72a4-4fe8-b480-4b3b508495aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,13 +236,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job2" + "https://batchtestaccount.westus.batch.azure.com/jobs/job2" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "ETag": [ - "0x8D50C699A5EBEE0" + "0x8D5C26F2935EBCE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -251,41 +251,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/job2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/job2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "278ce355-b5df-4111-ad45-545e6e124ab4" + "8364eed7-428f-4b7a-9678-3f7916f47fc9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"job2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D50C699A5EBEE0\",\r\n \"lastModified\": \"2017-10-06T03:23:24.379312Z\",\r\n \"creationTime\": \"2017-10-06T03:23:24.17421Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:24.1872092Z\",\r\n \"priority\": 5,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2017-10-06T03:23:24.1872092Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"job2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D5C26F2935EBCE\",\r\n \"lastModified\": \"2018-05-25T18:41:43.1351246Z\",\r\n \"creationTime\": \"2018-05-25T18:41:42.8200922Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:41:42.8461249Z\",\r\n \"priority\": 5,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2018-05-25T18:41:42.8461249Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5b56ed96-5f19-4f93-91f5-302dc4fecf8a" + "da5092ba-d941-4ee2-a68b-5773848e2542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +297,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "ETag": [ - "0x8D50C699A5EBEE0" + "0x8D5C26F2935EBCE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,26 +309,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/job1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvam9iMT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/job1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvam9iMT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0fbdef10-533c-4f5d-9dc9-d7579c3aba41" + "1c3b7f9b-6dae-41d7-9a52-d8332585522f" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -337,7 +337,7 @@ "chunked" ], "request-id": [ - "e5b063f0-bbcc-4861-96d8-93ef0ab9df7d" + "3e5d4abf-ee9d-49a3-a6dd-d35c80108978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +349,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,26 +358,26 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs/job2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/job2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b3b819c4-4fec-41fa-8919-012032a8f006" + "a6e1b9d1-ccf4-4756-a725-33b9e14d7e6a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -386,7 +386,7 @@ "chunked" ], "request-id": [ - "e7a56a3b-8269-4f37-800f-ec2c17f38059" + "79a1af6b-336e-4975-8567-3aa6792664fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -398,7 +398,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -407,29 +407,29 @@ "StatusCode": 202 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "734fee69-0af9-4cd5-9083-2453bc0f09c0" + "c28ca2d3-10ed-4a45-a6dd-dc3397870d08" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:23:24 GMT" + "Fri, 25 May 2018 18:41:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"job1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job1\",\r\n \"eTag\": \"0x8D50C699A2DBFD6\",\r\n \"lastModified\": \"2017-10-06T03:23:24.0582102Z\",\r\n \"creationTime\": \"2017-10-06T03:23:24.0442097Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:23:24.4929349Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:23:24.0582102Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2017-10-06T03:23:24.0582102Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D5C26F0E9DCA4B\",\r\n \"lastModified\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"creationTime\": \"2018-05-25T18:40:58.4923578Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T18:40:58.5173579Z\",\r\n \"endTime\": \"2018-05-25T18:40:59.5582527Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -438,7 +438,7 @@ "chunked" ], "request-id": [ - "8f239cc7-3176-4382-ba5a-b267e9b074d9" + "6c8b200e-21df-4a17-a27c-f57283885d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,7 +450,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:23:23 GMT" + "Fri, 25 May 2018 18:41:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -461,9 +461,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json index 41be8799c0bd..453f5efa690e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/providers/Microsoft.Batch?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"Korea South\",\r\n \"Korea Central\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2613" + "2606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,45 +25,48 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-request-id": [ - "8660f175-693a-4df2-b785-f9965a2297ef" + "4e6bad42-6c55-4fc7-9058-0730e9114616" ], "x-ms-correlation-request-id": [ - "8660f175-693a-4df2-b785-f9965a2297ef" + "4e6bad42-6c55-4fc7-9058-0730e9114616" ], "x-ms-routing-request-id": [ - "WESTUS:20171006T032304Z:8660f175-693a-4df2-b785-f9965a2297ef" + "WESTUS2:20180525T185714Z:4e6bad42-6c55-4fc7-9058-0730e9114616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:23:03 GMT" + "Fri, 25 May 2018 18:57:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/westus/quotas?api-version=2017-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9xdW90YXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestUri": "/subscriptions/ac86108b-e8ec-4858-8603-2f80105f96db/providers/Microsoft.Batch/locations/westus/quotas?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWM4NjEwOGItZThlYy00ODU4LTg2MDMtMmY4MDEwNWY5NmRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9xdW90YXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "456df97b-5536-4300-b7b2-cd83d89d55f5" + "6c1c0218-5627-41f9-a05d-b4a9aa46f472" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Batch.BatchManagementClient/4.2.0.0" ] }, @@ -85,7 +88,7 @@ "14999" ], "x-ms-request-id": [ - "b285a5c2-7d35-4eb8-bc0e-8df10cc1c74e" + "60ef52b4-5ee5-46b2-ad46-3b44bc90e48e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,16 +97,16 @@ "nosniff" ], "x-ms-correlation-request-id": [ - "5f180d5e-ce88-48ce-a126-09b784109e24" + "f6104924-d213-4851-a7e7-336150bfb857" ], "x-ms-routing-request-id": [ - "WESTUS:20171006T032304Z:5f180d5e-ce88-48ce-a126-09b784109e24" + "WESTUS2:20180525T185714Z:f6104924-d213-4851-a7e7-336150bfb857" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 06 Oct 2017 03:23:04 GMT" + "Fri, 25 May 2018 18:57:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,9 +117,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json index 9f4b7cd98e34..e407bda63d4f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"autoscalePool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "244" ], "client-request-id": [ - "a2729cb4-2310-47a1-9c44-f93494be3ee7" + "20f4ecee-1944-4ee9-bee2-4a41e92d076c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:59 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:59 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d29ecb26-d0c5-4e56-a58f-f85ddd5c12bd" + "783bd041-bef3-4208-8426-d172567fc5ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool" + "https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:28 GMT" ], "ETag": [ - "0x8D50C6AA9EC134B" + "0x8D5C26EFD31ADC5" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool" + "https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,41 +68,41 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/autoscalePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/autoscalePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e166492b-2246-4000-aa78-41b8e7773f35" + "23165963-1795-4ace-9166-6ea7d146e16c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D50C6AA9EC134B\",\r\n \"lastModified\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"creationTime\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:31:00.0631029Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D5C26EFD31ADC5\",\r\n \"lastModified\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"creationTime\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:29.4141389Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:59 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cf347627-32b3-437e-b69f-224ce8830b46" + "74ab9412-6f06-463b-933f-327cb6e7c8f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,10 +114,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "ETag": [ - "0x8D50C6AA9EC134B" + "0x8D5C26EFD31ADC5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,41 +126,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/autoscalePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9b9d7195-182a-4e62-a8a6-562e39ad6c3e" + "0f9602fb-b5ef-4695-b99f-a2934d0fe32a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:30 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D50C6AAA652D3E\",\r\n \"lastModified\": \"2017-10-06T03:31:00.7617342Z\",\r\n \"creationTime\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:31:00.7617342Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D5C26EFDDA20A3\",\r\n \"lastModified\": \"2018-05-25T18:40:30.3915171Z\",\r\n \"creationTime\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:30.3915171Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:30 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7b63401-f279-4362-aa08-f227af6bc850" + "20438bf1-29cf-4791-a81f-62a75a8d2bab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,10 +172,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "ETag": [ - "0x8D50C6AAA652D3E" + "0x8D5C26EFDDA20A3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,8 +184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool/enableautoscale?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZW5hYmxlYXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/autoscalePool/enableautoscale?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZW5hYmxlYXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\"\r\n}", "RequestHeaders": { @@ -196,32 +196,32 @@ "95" ], "client-request-id": [ - "f51ff3c9-9a8e-4131-84b3-f83ad0fbac19" + "f7ec5c89-66e7-4a32-bcb1-ef89158e3753" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5d414af6-7f36-4bc6-8140-04d5c6a8de9c" + "4d800303-c280-49c1-94f5-625dff9efaf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,13 +233,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool/enableautoscale" + "https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool/enableautoscale" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "ETag": [ - "0x8D50C6AAA356B79" + "0x8D5C26EFD7D8230" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -248,29 +248,29 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0&$filter=id%20eq%20'autoscalePool'", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN2F1dG9zY2FsZVBvb2wlMjc=", + "RequestUri": "/pools?api-version=2018-03-01.6.1&$filter=id%20eq%20'autoscalePool'", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN2F1dG9zY2FsZVBvb2wlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e4178768-cbe6-4bd8-a95e-ef0983be20cd" + "d6e377e0-7cb6-4a33-ad69-9ab008656856" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D50C6AAA356B79\",\r\n \"lastModified\": \"2017-10-06T03:31:00.4487545Z\",\r\n \"creationTime\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:59.9680843Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:31:00.4487545Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2017-10-06T03:31:00.4487545Z\",\r\n \"results\": \"$TargetDedicatedNodes=0;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D5C26EFD7D8230\",\r\n \"lastModified\": \"2018-05-25T18:40:29.7845296Z\",\r\n \"creationTime\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:29.2875717Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:29.7845296Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2018-05-25T18:40:29.7845296Z\",\r\n \"results\": \"$TargetDedicatedNodes=0;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -279,7 +279,7 @@ "chunked" ], "request-id": [ - "00d54470-5c56-4e4e-acd1-84b001a09ed6" + "5b61f009-fa3d-47e1-996e-607c3010268d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,8 +300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool/evaluateautoscale?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZXZhbHVhdGVhdXRvc2NhbGU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/autoscalePool/evaluateautoscale?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZXZhbHVhdGVhdXRvc2NhbGU/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=1\"\r\n}", "RequestHeaders": { @@ -312,23 +312,23 @@ "53" ], "client-request-id": [ - "891055c4-4404-4bc7-9db3-707ff6242713" + "9c3f72b0-fd2d-4847-968b-66f604a4827c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:30 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2017-10-06T03:31:00.6793682Z\",\r\n \"results\": \"$TargetDedicatedNodes=1;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2018-05-25T18:40:30.2284208Z\",\r\n \"results\": \"$TargetDedicatedNodes=1;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -337,7 +337,7 @@ "chunked" ], "request-id": [ - "013f4b11-d1ff-4c23-92d9-84fb7b265a47" + "e127122a-50f0-4c02-aff2-8004c20e5d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +349,10 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool/evaluateautoscale" + "https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool/evaluateautoscale" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -361,38 +361,38 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool/disableautoscale?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZGlzYWJsZWF1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/autoscalePool/disableautoscale?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZGlzYWJsZWF1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "70e3223e-383d-4c01-bf3e-068ce4bae335" + "0cc02712-9616-48c0-a15f-decb54f58324" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:30 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:30 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "25a871b3-d430-48a0-a928-0ba306031b06" + "2ec29d3b-9a3b-4c7b-8cbe-7d593af76683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,13 +404,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/autoscalePool/disableautoscale" + "https://batchtestaccount.westus.batch.azure.com/pools/autoscalePool/disableautoscale" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "ETag": [ - "0x8D50C6AAA650616" + "0x8D5C26EFDDA20A3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -419,26 +419,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/autoscalePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "67a8011d-76fe-4235-851d-24a425b998e8" + "5babf428-802a-4433-bc8e-4763631b0603" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:30 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -447,7 +447,7 @@ "chunked" ], "request-id": [ - "3986b0d2-d752-499f-bc1d-644fd457a05e" + "4478cfdd-f932-4741-a7de-8207ec06ab42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,7 +459,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:00 GMT" + "Fri, 25 May 2018 18:40:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -470,9 +470,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersion.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersion.json index 7bc1b69dafb3..aed0afffe631 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersion.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestChangeOSVersion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"changeospool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "243" ], "client-request-id": [ - "24119684-999e-4aaa-8b1b-ab3c3e726cf2" + "355fe150-f42b-4a96-9d9d-6b29c3af4c47" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:43 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:43 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "52262839-1d86-4501-b638-dfa77916ced3" + "dbacc793-a36e-4ab8-9a02-9789510e8df9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/changeospool" + "https://batchtestaccount.westus.batch.azure.com/pools/changeospool" ], "Date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:43 GMT" ], "ETag": [ - "0x8D50C6AA261F98D" + "0x8D5C26F05E4ECE2" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/changeospool" + "https://batchtestaccount.westus.batch.azure.com/pools/changeospool" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,41 +68,41 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/changeospool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/changeospool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8df008fd-1532-4506-a706-8fd08876cc58" + "5bb77cb1-342f-4f7a-b6ed-c193a07d9efb" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"changeospool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/changeospool\",\r\n \"eTag\": \"0x8D50C6AA261F98D\",\r\n \"lastModified\": \"2017-10-06T03:30:47.3189773Z\",\r\n \"creationTime\": \"2017-10-06T03:30:47.3189773Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:47.3189773Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:30:47.4161938Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"changeospool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/changeospool\",\r\n \"eTag\": \"0x8D5C26F05E4ECE2\",\r\n \"lastModified\": \"2018-05-25T18:40:43.8840546Z\",\r\n \"creationTime\": \"2018-05-25T18:40:43.8840546Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:43.8840546Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:44.041944Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:43 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0ae4b1bc-22ce-4949-800b-4659f267dd13" + "a2660c88-dfae-49a9-bb01-6ed59055bc91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,10 +114,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:43 GMT" ], "ETag": [ - "0x8D50C6AA261F98D" + "0x8D5C26F05E4ECE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,41 +126,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/changeospool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/changeospool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "87485889-5255-49f4-8e44-0d7a80b66a47" + "f12fbe54-62c2-45b9-ad4f-3594e450fbc9" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"changeospool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/changeospool\",\r\n \"eTag\": \"0x8D50C6AA2A6DEEC\",\r\n \"lastModified\": \"2017-10-06T03:30:47.770494Z\",\r\n \"creationTime\": \"2017-10-06T03:30:47.3189773Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:47.770494Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:30:47.4161938Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-2.51_201605-01\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"changeospool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/changeospool\",\r\n \"eTag\": \"0x8D5C26F062AF0DF\",\r\n \"lastModified\": \"2018-05-25T18:40:44.3429087Z\",\r\n \"creationTime\": \"2018-05-25T18:40:43.8840546Z\",\r\n \"state\": \"upgrading\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:44.3429087Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:44.041944Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"WA-GUEST-OS-2.51_201605-01\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "962a6776-8517-4a5b-b30d-eeabdad29a4a" + "f5cde1e6-d6d8-47cf-a80f-2f95bf710cee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,10 +172,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "ETag": [ - "0x8D50C6AA2A6DEEC" + "0x8D5C26F062AF0DF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,8 +184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/changeospool/upgradeos?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbC91cGdyYWRlb3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/changeospool/upgradeos?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbC91cGdyYWRlb3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetOSVersion\": \"WA-GUEST-OS-2.51_201605-01\"\r\n}", "RequestHeaders": { @@ -196,32 +196,32 @@ "55" ], "client-request-id": [ - "6a2debc3-de21-4be7-9345-c64bb052a59c" + "2451cf28-2712-4df5-9ca6-421652747f5b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "548c497c-be9f-47f8-815a-dbc7eb2f1a71" + "f642b331-9a4b-4c32-9552-1dd380ea2ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,13 +233,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/changeospool/upgradeos" + "https://batchtestaccount.westus.batch.azure.com/pools/changeospool/upgradeos" ], "Date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "ETag": [ - "0x8D50C6AA2A6DEEC" + "0x8D5C26F062AF0DF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -248,26 +248,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/changeospool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/changeospool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL2NoYW5nZW9zcG9vbD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2e701631-7323-42fd-9cdc-6af2910a75ad" + "40081f35-4cfb-476d-af67-4957599ae03c" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -276,7 +276,7 @@ "chunked" ], "request-id": [ - "0f08c2c3-e3f0-4f5b-a5fe-c997f767dda4" + "7b110d43-a005-4ae0-ab07-905c5ad8eede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -288,7 +288,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:47 GMT" + "Fri, 25 May 2018 18:40:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -299,9 +299,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json index d3b8190b5395..28e6c3985673 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"pool1\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "205" ], "client-request-id": [ - "608b6f75-35ee-4858-b1dd-9932b08f997a" + "33ba1216-c9ff-499c-ad9e-483891e83320" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:32 GMT" + "Fri, 25 May 2018 18:40:12 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:33 GMT" + "Fri, 25 May 2018 18:40:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e06cae54-b76d-4c35-ae37-87386e895a45" + "1732925d-0132-49d2-9a1e-de3468e9ec6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool1" + "https://batchtestaccount.westus.batch.azure.com/pools/pool1" ], "Date": [ - "Fri, 06 Oct 2017 03:30:32 GMT" + "Fri, 25 May 2018 18:40:11 GMT" ], "ETag": [ - "0x8D50C6A99EE2A54" + "0x8D5C26EF351140F" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool1" + "https://batchtestaccount.westus.batch.azure.com/pools/pool1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"pool2\",\r\n \"vmSize\": \"standard_a1\",\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "338" ], "client-request-id": [ - "8c8588c1-77de-49fb-9a9f-3691e5318390" + "31d54cde-0443-44f1-a171-6784f70c2011" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:33 GMT" + "Fri, 25 May 2018 18:40:12 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:33 GMT" + "Fri, 25 May 2018 18:40:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3bee0540-42d1-4f36-a657-a6e8bd824052" + "a25ace8b-e216-4b0f-b8e0-59194b82dece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool2" + "https://batchtestaccount.westus.batch.azure.com/pools/pool2" ], "Date": [ - "Fri, 06 Oct 2017 03:30:32 GMT" + "Fri, 25 May 2018 18:40:12 GMT" ], "ETag": [ - "0x8D50C6A9A061E80" + "0x8D5C26EF37453B0" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool2" + "https://batchtestaccount.westus.batch.azure.com/pools/pool2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -135,29 +135,29 @@ "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0&$filter=id%20eq%20'pool1'%20or%20id%20eq%20'pool2'", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Bvb2wxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3cG9vbDIlMjc=", + "RequestUri": "/pools?api-version=2018-03-01.6.1&$filter=id%20eq%20'pool1'%20or%20id%20eq%20'pool2'", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4xJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Bvb2wxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3cG9vbDIlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3070aef6-bee6-415f-98a9-977173194976" + "7dc1d07d-8b2d-4f17-93d1-627d851a5655" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:33 GMT" + "Fri, 25 May 2018 18:40:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"pool1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool1\",\r\n \"eTag\": \"0x8D50C6A99EE2A54\",\r\n \"lastModified\": \"2017-10-06T03:30:33.1382356Z\",\r\n \"creationTime\": \"2017-10-06T03:30:33.1382356Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:33.1382356Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:30:33.2472183Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D50C6A9A061E80\",\r\n \"lastModified\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"creationTime\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"pool1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/pool1\",\r\n \"eTag\": \"0x8D5C26EF351140F\",\r\n \"lastModified\": \"2018-05-25T18:40:12.7161359Z\",\r\n \"creationTime\": \"2018-05-25T18:40:12.7161359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:12.7161359Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:12.8431045Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D5C26EF37453B0\",\r\n \"lastModified\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"creationTime\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -166,7 +166,7 @@ "chunked" ], "request-id": [ - "2b028877-cf9c-4807-921f-75472bdbd4ec" + "59df33f0-2f61-4b60-aefe-c836d319a111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,7 +178,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:32 GMT" + "Fri, 25 May 2018 18:40:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -187,8 +187,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/pool2/updateproperties?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/pool2/updateproperties?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\"\r\n },\r\n \"certificateReferences\": [],\r\n \"applicationPackageReferences\": [],\r\n \"metadata\": []\r\n}", "RequestHeaders": { @@ -199,20 +199,20 @@ "170" ], "client-request-id": [ - "1df6822a-5c15-4bef-8d5a-c26ccff12a2d" + "dbed52a2-5eed-4c6f-8f75-7da0b00176c3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:33 GMT" + "Fri, 25 May 2018 18:40:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -221,10 +221,10 @@ "0" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:35 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "request-id": [ - "3569183b-b3f1-4253-a55a-55749e7631c9" + "40d03728-1eed-49a7-ae79-603b7f74a65d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,13 +236,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool2/updateproperties" + "https://batchtestaccount.westus.batch.azure.com/pools/pool2/updateproperties" ], "Date": [ - "Fri, 06 Oct 2017 03:30:34 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "ETag": [ - "0x8D50C6A9B5F72B6" + "0x8D5C26EF4E58553" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -251,41 +251,41 @@ "StatusCode": 204 }, { - "RequestUri": "/pools/pool2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/pool2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bfcd02b5-e231-4f52-930f-fe849c0e1bf9" + "c46c497d-d35f-4788-a69d-d6afee8303c3" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:35 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"pool2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D50C6A9B5F72B6\",\r\n \"lastModified\": \"2017-10-06T03:30:35.558367Z\",\r\n \"creationTime\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:30:33.9862225Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"pool2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D5C26EF4E58553\",\r\n \"lastModified\": \"2018-05-25T18:40:15.3666899Z\",\r\n \"creationTime\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:13.7551349Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:30:35 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "49af8198-d387-4cfa-877c-8c190b6b8314" + "984db6aa-84ee-42e6-a7ac-d332ba6bd334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +297,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:34 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "ETag": [ - "0x8D50C6A9B5F72B6" + "0x8D5C26EF4E58553" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,26 +309,26 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/pool1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/pool1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wxP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "557cda0e-df61-4617-a700-636df0a26337" + "e3e9518c-3d9a-4ed0-9393-36ffaeedd76b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:35 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -337,7 +337,7 @@ "chunked" ], "request-id": [ - "3e3fd3b4-5c90-4843-979b-0c81ecb4ebc8" + "0eab8979-d0db-4320-a6fe-1b093f7ad580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +349,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:34 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,26 +358,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/pool2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/pool2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3fef6fba-7a60-454f-9231-21f87f37467c" + "f01007b8-4f7f-461c-8a1c-3c5d9eb0fa32" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:35 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -386,7 +386,7 @@ "chunked" ], "request-id": [ - "1b1b2ebe-9482-460f-b08c-b57c21dedf10" + "f2bc3393-caf0-424c-84c1-6f115ee5f70a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -398,7 +398,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:34 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -407,29 +407,29 @@ "StatusCode": 202 }, { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1ce3883-00d0-42b8-9598-58d6d8a72b46" + "aa43a121-8653-47e8-a4b7-8305b6f13993" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:30:35 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D50C49712BACD3\",\r\n \"lastModified\": \"2017-10-05T23:33:11.3626835Z\",\r\n \"creationTime\": \"2017-10-05T23:33:11.3626835Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-05T23:33:11.3626835Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-05T23:34:45.8246391Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D50C6A9B849E2A\",\r\n \"lastModified\": \"2017-10-06T03:30:35.8019626Z\",\r\n \"creationTime\": \"2017-10-06T03:30:33.2952192Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2017-10-06T03:30:35.8019626Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:30:33.9862225Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"testIaasPool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testIaasPool\",\r\n \"eTag\": \"0x8D50C647A6AEC93\",\r\n \"lastModified\": \"2017-10-06T02:46:43.2883859Z\",\r\n \"creationTime\": \"2017-10-06T02:46:43.2883859Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T02:46:43.2883859Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T02:48:29.1598949Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 1,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.5-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 14.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"testpool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/testpool\",\r\n \"eTag\": \"0x8D50C6621C8E394\",\r\n \"lastModified\": \"2017-10-06T02:58:33.5804308Z\",\r\n \"creationTime\": \"2017-10-06T02:58:33.5804308Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T02:58:33.5804308Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T02:59:22.8086339Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 2,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"ubuntu1604\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/ubuntu1604\",\r\n \"eTag\": \"0x8D50C51C47E4E6A\",\r\n \"lastModified\": \"2017-10-06T00:32:47.128945Z\",\r\n \"creationTime\": \"2017-10-06T00:32:47.128945Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T00:32:47.128945Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T00:34:27.8120357Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 1,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"Ubuntu2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/Ubuntu2\",\r\n \"eTag\": \"0x8D50C4B768C8076\",\r\n \"lastModified\": \"2017-10-05T23:47:39.3793142Z\",\r\n \"creationTime\": \"2017-10-05T23:47:39.3793142Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-05T23:47:39.3793142Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-05T23:48:43.9446808Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 1,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.5-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 14.04\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D5C111BDDC236C\",\r\n \"lastModified\": \"2018-05-24T01:00:28.6718828Z\",\r\n \"creationTime\": \"2018-05-24T01:00:28.6718828Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-24T01:00:28.6718828Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-24T01:01:38.41035Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/pool1\",\r\n \"eTag\": \"0x8D5C26EF512365D\",\r\n \"lastModified\": \"2018-05-25T18:40:15.6595805Z\",\r\n \"creationTime\": \"2018-05-25T18:40:12.7161359Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:15.6595805Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:12.8431045Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D5C26EF528A38C\",\r\n \"lastModified\": \"2018-05-25T18:40:15.8065548Z\",\r\n \"creationTime\": \"2018-05-25T18:40:12.9471408Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:40:15.8065548Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:13.7551349Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"Pool3\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/Pool3\",\r\n \"eTag\": \"0x8D5B6C922B9F72F\",\r\n \"lastModified\": \"2018-05-10T22:55:33.0087727Z\",\r\n \"creationTime\": \"2018-05-03T00:12:37.910219Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-03T00:12:37.910219Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-10T22:57:03.6159727Z\",\r\n \"vmSize\": \"basic_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 1,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D5C26EEA73E9B7\",\r\n \"lastModified\": \"2018-05-25T18:39:57.8449335Z\",\r\n \"creationTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2018-05-25T18:39:57.8449335Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:40:05.8643428Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeErrors\": [\r\n {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated nodes could not be allocated due to a stop resize operation\"\r\n }\r\n ],\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -438,7 +438,7 @@ "chunked" ], "request-id": [ - "13e3e053-fc96-49ab-a9fe-acbd8ef0ba22" + "568c343b-2cc9-4a88-8f78-80ac19401497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,7 +450,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:30:34 GMT" + "Fri, 25 May 2018 18:40:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -461,9 +461,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json index 433559225463..d16788f924b2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"resizePool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "241" ], "client-request-id": [ - "4f01bbfc-62da-4746-87b3-b674b9bfce17" + "5adc02b5-d523-4d33-873a-7d5ef14fdf33" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:52 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "60942be8-44ce-45a9-857f-4d052b80dd26" + "0b7ccc6d-50ac-488e-815a-7f316e19be41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool" + "https://batchtestaccount.westus.batch.azure.com/pools/resizePool" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:53 GMT" ], "ETag": [ - "0x8D50C6AB9B1B16D" + "0x8D5C26EE7DA2266" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool" + "https://batchtestaccount.westus.batch.azure.com/pools/resizePool" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,41 +68,41 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/resizePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/resizePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ddf35a1e-7187-4a7b-9a5f-8e36a9b6a05e" + "b5ae6f89-63e2-4d02-a8cc-a3f430e540dd" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D50C6AB9B1B16D\",\r\n \"lastModified\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"creationTime\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:31:26.5360174Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D5C26EE7DA2266\",\r\n \"lastModified\": \"2018-05-25T18:39:53.481687Z\",\r\n \"creationTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:39:53.6236902Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8b728333-1f03-4b31-91dd-34b479db7494" + "0553b27d-199a-4b60-bc38-8ad93b153760" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,10 +114,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:56 GMT" ], "ETag": [ - "0x8D50C6AB9B1B16D" + "0x8D5C26EE7DA2266" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,41 +126,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/resizePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/resizePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1ea8a9ec-9098-4020-b675-9c9d803affe9" + "b70e4460-1a33-4057-b4f8-4320585072eb" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D50C6AB9FA264A\",\r\n \"lastModified\": \"2017-10-06T03:31:26.9038666Z\",\r\n \"creationTime\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:31:26.9038666Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D5C26EEA11E36D\",\r\n \"lastModified\": \"2018-05-25T18:39:57.2025197Z\",\r\n \"creationTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:39:57.2025197Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6b00bbc2-09b4-4ee6-9183-9748d4daab6e" + "32eae4c1-5337-40d7-925e-9a50df4ee64b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,10 +172,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "ETag": [ - "0x8D50C6AB9FA264A" + "0x8D5C26EEA11E36D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,41 +184,41 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/resizePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/resizePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "785b3a80-65ea-43ef-a492-7047a936143a" + "815eda47-7d1c-49fa-9dab-5bae5ee73b96" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:27 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D50C6ABA12912C\",\r\n \"lastModified\": \"2017-10-06T03:31:27.0638892Z\",\r\n \"creationTime\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:31:26.4290157Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2017-10-06T03:31:27.0638892Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D5C26EEA49457F\",\r\n \"lastModified\": \"2018-05-25T18:39:57.5654783Z\",\r\n \"creationTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T18:39:53.481687Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2018-05-25T18:39:57.5654783Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:27 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ae77bf21-8154-40a3-bd9e-f07de9e8226c" + "2037fe66-cb2b-45bb-9c2f-83beae4221b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -230,10 +230,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "ETag": [ - "0x8D50C6ABA12912C" + "0x8D5C26EEA49457F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -242,8 +242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/resizePool/resize?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvcmVzaXplP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/pools/resizePool/resize?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvcmVzaXplP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetDedicatedNodes\": 1\r\n}", "RequestHeaders": { @@ -254,32 +254,32 @@ "33" ], "client-request-id": [ - "18c7a608-9d22-4a4f-9f17-b19d65a41a36" + "830e6698-dbd6-4654-8d9b-8e7417237e08" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e4ac5f6d-9a0d-4c9e-bdcf-a342ac735fbe" + "a206368b-59b1-4419-8631-deadb8856f10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,13 +291,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool/resize" + "https://batchtestaccount.westus.batch.azure.com/pools/resizePool/resize" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:56 GMT" ], "ETag": [ - "0x8D50C6AB9FA264A" + "0x8D5C26EEA11E36D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,38 +306,38 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/resizePool/stopresize?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvc3RvcHJlc2l6ZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/pools/resizePool/stopresize?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvc3RvcHJlc2l6ZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e829a393-93a5-4c61-9bf1-47c7ae8b7721" + "0958c64e-3c7a-4dab-95f3-7a4211d7d90e" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:27 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:31:27 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2a8c8b9a-2dd5-4090-97a7-d5425aef5d0c" + "6d65018b-b685-4729-9680-65b810eb57a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,13 +349,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/resizePool/stopresize" + "https://batchtestaccount.westus.batch.azure.com/pools/resizePool/stopresize" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "ETag": [ - "0x8D50C6ABA12912C" + "0x8D5C26EEA49457F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,26 +364,26 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/resizePool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/resizePool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "87e2b7e2-4878-4840-94b4-6a504a2e3fc2" + "dcf43693-0ea0-47fe-a749-1c4ca4257fe1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:31:27 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -392,7 +392,7 @@ "chunked" ], "request-id": [ - "d213cd59-8057-49e8-bfa2-8ec95ed2e519" + "18185401-4c32-4694-b638-774b12b93a35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,7 +404,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:31:26 GMT" + "Fri, 25 May 2018 18:39:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -415,9 +415,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json index e4dd02bbc78e..8281afef6c01 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"createTaskCollectionJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "106" ], "client-request-id": [ - "c46ed5eb-f0c0-424d-b7c1-a2c8125c3e61" + "dea3206f-446b-42fb-bb0c-5a7f81980456" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:53 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "edb30335-7175-48d9-8c59-78a982c616b8" + "f3149e7d-5e27-4cc6-99c9-68905eefb5f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:10:53 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "ETag": [ - "0x8D50C67DB1EDD6C" + "0x8D5C27626E3B7CB" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,41 +68,41 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/createTaskCollectionJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/createTaskCollectionJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5fb91dba-4ead-4e05-a32a-11cfe4b210db" + "e35e9432-e055-40b4-a734-0be11074e9ea" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:53 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"createTaskCollectionJob\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob\",\r\n \"eTag\": \"0x8D50C67DB1EDD6C\",\r\n \"lastModified\": \"2017-10-06T03:10:54.0191084Z\",\r\n \"creationTime\": \"2017-10-06T03:10:54.0051354Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:54.0191084Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2017-10-06T03:10:54.0191084Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"createTaskCollectionJob\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob\",\r\n \"eTag\": \"0x8D5C27626E3B7CB\",\r\n \"lastModified\": \"2018-05-25T19:31:45.7180619Z\",\r\n \"creationTime\": \"2018-05-25T19:31:45.6630566Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:45.7180619Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\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\": \"2018-05-25T19:31:45.7180619Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1dedad65-4007-4fa5-9cf2-8c751b064445" + "6768a6af-badd-4dc6-b284-de8afd0d0b98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,10 +114,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "ETag": [ - "0x8D50C67DB1EDD6C" + "0x8D5C27626E3B7CB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,8 +126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"simple1\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n },\r\n {\r\n \"id\": \"simple2\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -138,23 +138,23 @@ "176" ], "client-request-id": [ - "1d16fffc-1f81-422b-8d8b-0ac405f002d7" + "30f13f22-7651-4bbe-bd24-1afccf26aea1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple1\",\r\n \"eTag\": \"0x8D50C67DB4A9711\",\r\n \"lastModified\": \"2017-10-06T03:10:54.3056657Z\",\r\n \"location\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple2\",\r\n \"eTag\": \"0x8D50C67DB4E95E7\",\r\n \"lastModified\": \"2017-10-06T03:10:54.3318503Z\",\r\n \"location\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple1\",\r\n \"eTag\": \"0x8D5C2762723FE71\",\r\n \"lastModified\": \"2018-05-25T19:31:46.1393009Z\",\r\n \"location\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple2\",\r\n \"eTag\": \"0x8D5C27627244C9A\",\r\n \"lastModified\": \"2018-05-25T19:31:46.1413018Z\",\r\n \"location\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -163,7 +163,7 @@ "chunked" ], "request-id": [ - "be6c9678-93e6-4632-9be9-b926c8d6620b" + "ef95c95d-45d8-41f1-8c8d-89cd20b4c679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -175,7 +175,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,8 +184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"complex1\",\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\": \"env1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\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 \"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 },\r\n {\r\n \"id\": \"simple3\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -196,23 +196,23 @@ "1057" ], "client-request-id": [ - "0e1d4c3c-c865-4868-8d91-195d733ead94" + "ee6f1515-f31b-45a7-8b30-ac8472ccbc52" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"complex1\",\r\n \"eTag\": \"0x8D50C67DB7FA1F1\",\r\n \"lastModified\": \"2017-10-06T03:10:54.6532849Z\",\r\n \"location\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple3\",\r\n \"eTag\": \"0x8D50C67DB81C42E\",\r\n \"lastModified\": \"2017-10-06T03:10:54.6672686Z\",\r\n \"location\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"complex1\",\r\n \"eTag\": \"0x8D5C2762779CD37\",\r\n \"lastModified\": \"2018-05-25T19:31:46.7016503Z\",\r\n \"location\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple3\",\r\n \"eTag\": \"0x8D5C276277ADFB5\",\r\n \"lastModified\": \"2018-05-25T19:31:46.7086773Z\",\r\n \"location\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -221,7 +221,7 @@ "chunked" ], "request-id": [ - "b2bd4b6b-cf7a-4ae0-9f79-2fdf5049ef98" + "607e23e9-f433-49d5-bcd0-2fd2100e261e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,7 +233,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -242,41 +242,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "91b3c5c9-d757-47a9-b99f-30e11c6e8f63" + "52b13d27-1d23-44a8-b10d-9f8cb79cf28a" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"eTag\": \"0x8D50C67DB4A9711\",\r\n \"creationTime\": \"2017-10-06T03:10:54.3056657Z\",\r\n \"lastModified\": \"2017-10-06T03:10:54.3056657Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:54.3056657Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"eTag\": \"0x8D5C2762723FE71\",\r\n \"creationTime\": \"2018-05-25T19:31:46.1393009Z\",\r\n \"lastModified\": \"2018-05-25T19:31:46.1393009Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:46.1393009Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8262e35a-d07c-4826-a191-5c5f2ad50f86" + "f3be1fad-0e4b-420d-970c-c5b32c0ef65a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -288,10 +288,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "ETag": [ - "0x8D50C67DB4A9711" + "0x8D5C2762723FE71" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,41 +300,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "244e0b88-c965-4748-8484-1e732fc96942" + "3795eec6-4c13-435e-bb56-7d4e8d6813ef" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\",\r\n \"eTag\": \"0x8D50C67DB4E95E7\",\r\n \"creationTime\": \"2017-10-06T03:10:54.3318503Z\",\r\n \"lastModified\": \"2017-10-06T03:10:54.3318503Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:54.3318503Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\",\r\n \"eTag\": \"0x8D5C27627244C9A\",\r\n \"creationTime\": \"2018-05-25T19:31:46.1413018Z\",\r\n \"lastModified\": \"2018-05-25T19:31:46.1413018Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:46.1413018Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7a62e96b-fe9e-494c-b0ce-74c16eba6b93" + "a75fabd9-de92-4565-b8cf-3a102250dc88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -346,10 +346,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:45 GMT" ], "ETag": [ - "0x8D50C67DB4E95E7" + "0x8D5C27627244C9A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,41 +358,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/complex1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3MvY29tcGxleDE/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/complex1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3MvY29tcGxleDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de98e0f4-92e6-4832-8a4e-630f7be740d1" + "96a4682b-0c10-48f1-b122-c26aad864a75" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"complex1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\",\r\n \"eTag\": \"0x8D50C67DB7FA1F1\",\r\n \"creationTime\": \"2017-10-06T03:10:54.6532849Z\",\r\n \"lastModified\": \"2017-10-06T03:10:54.6532849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:54.6532849Z\",\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\": \"env1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"complex1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\",\r\n \"eTag\": \"0x8D5C2762779CD37\",\r\n \"creationTime\": \"2018-05-25T19:31:46.7016503Z\",\r\n \"lastModified\": \"2018-05-25T19:31:46.7016503Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:46.7016503Z\",\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\": \"env1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8dc58967-1221-4dab-8e7a-2409ff8bb62f" + "39368ab7-324a-4061-b14e-5a7a3663bc06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,10 +404,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "ETag": [ - "0x8D50C67DB7FA1F1" + "0x8D5C2762779CD37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -416,41 +416,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple3?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple3?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "505f781f-4329-4885-909e-5d4267caa34c" + "3c2fa30c-478e-4072-b50f-5ac1dbb94bca" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple3\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\",\r\n \"eTag\": \"0x8D50C67DB81C42E\",\r\n \"creationTime\": \"2017-10-06T03:10:54.6672686Z\",\r\n \"lastModified\": \"2017-10-06T03:10:54.6672686Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:54.6672686Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple3\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\",\r\n \"eTag\": \"0x8D5C276277ADFB5\",\r\n \"creationTime\": \"2018-05-25T19:31:46.7086773Z\",\r\n \"lastModified\": \"2018-05-25T19:31:46.7086773Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:46.7086773Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "01482152-f460-4ac8-a421-27af8d368959" + "1b0d639c-0c96-4050-af67-06c8ce4a152d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -462,10 +462,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "ETag": [ - "0x8D50C67DB81C42E" + "0x8D5C276277ADFB5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -474,26 +474,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/createTaskCollectionJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c8a1f20a-73d5-408d-8496-2b122a7215f1" + "7a37c45e-8639-4ce5-8cb0-f6586172d1f5" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:47 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -502,7 +502,7 @@ "chunked" ], "request-id": [ - "6719adc1-d63f-4c96-a30a-149c6050e715" + "d6e91a09-2860-4eaf-b676-44a87ab9712a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,7 +514,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:54 GMT" + "Fri, 25 May 2018 19:31:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -525,9 +525,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file 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 index 84855f9f58cb..dc19f1034c1c 100644 --- 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 @@ -1,41 +1,41 @@ { "Entries": [ { - "RequestUri": "/pools/mpiPool?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/pools/mpiPool?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "940cff9a-0ef2-4a5a-98b1-bdeecf87186f" + "acfc1cef-3d2c-49b4-9755-6372ff8863bb" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D50C49712BACD3\",\r\n \"lastModified\": \"2017-10-05T23:33:11.3626835Z\",\r\n \"creationTime\": \"2017-10-05T23:33:11.3626835Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-05T23:33:11.3626835Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2017-10-05T23:34:45.8246391Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D5C111BDDC236C\",\r\n \"lastModified\": \"2018-05-24T01:00:28.6718828Z\",\r\n \"creationTime\": \"2018-05-24T01:00:28.6718828Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-24T01:00:28.6718828Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2018-05-24T01:01:38.41035Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Oct 2017 23:33:11 GMT" + "Thu, 24 May 2018 01:00:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "30f86716-0bb3-406c-83ea-e7913ba615dd" + "58ac7070-971e-4550-8fa7-e37c730e682f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,10 +47,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:12 GMT" ], "ETag": [ - "0x8D50C49712BACD3" + "0x8D5C111BDDC236C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listSubtaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"mpiPool\"\r\n }\r\n}", "RequestHeaders": { @@ -71,32 +71,32 @@ "96" ], "client-request-id": [ - "4fcaf3ac-8a2d-4614-b649-70120d71ba11" + "81a58026-51bd-41f6-832f-e4afd3f6a893" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:08 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "13e7bf74-a498-486f-91b8-e04e444dacb3" + "1c7746b7-fe41-4a99-89d8-c23b6bc06038" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,16 +108,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:12 GMT" ], "ETag": [ - "0x8D50C67E395A2D9" + "0x8D5C27613BABB95" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,10 +126,10 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonAdmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n }\r\n}", + "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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; charset=utf-8" @@ -138,32 +138,32 @@ "298" ], "client-request-id": [ - "77b1d958-5563-4aa1-95f3-22e9cf4d3fb0" + "0580046d-2cee-433b-9cb2-59202b14daa2" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:08 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3f0c6106-3c03-4a09-8ebe-9b0103017171" + "8fa90336-91af-4174-be42-37bac90ffe24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -175,16 +175,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" + "https://batchtestaccount.westus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" ], "Date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:12 GMT" ], "ETag": [ - "0x8D50C67E37DBD4D" + "0x8D5C27613C733B4" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" + "https://batchtestaccount.westus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -193,41 +193,41 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c07f74e9-1939-41ed-b467-0b750d5dc414" + "6bc1d0db-88fc-4105-9ebb-08374b4fa073" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D50C67E37DBD4D\",\r\n \"creationTime\": \"2017-10-06T03:11:08.0626509Z\",\r\n \"lastModified\": \"2017-10-06T03:11:08.0626509Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:08.0626509Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D5C27613C733B4\",\r\n \"creationTime\": \"2018-05-25T19:31:13.6544692Z\",\r\n \"lastModified\": \"2018-05-25T19:31:13.6544692Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:13.6544692Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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": [ - "Fri, 06 Oct 2017 03:11:08 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5357457a-454b-430f-aa10-a371fa3a2b02" + "dbd6eabd-c3b1-43a3-81bf-0201bf3f387d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,10 +239,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:12 GMT" ], "ETag": [ - "0x8D50C67E37DBD4D" + "0x8D5C27613C733B4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -251,41 +251,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e256f63c-3043-4f67-b6d8-f19796befafb" + "de5932a4-5173-4156-b983-b1380324b184" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:22 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D50C67E37DBD4D\",\r\n \"creationTime\": \"2017-10-06T03:11:08.0626509Z\",\r\n \"lastModified\": \"2017-10-06T03:11:08.0626509Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:09.3111254Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:08.5088164Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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\": \"2017-10-06T03:11:08.5088164Z\",\r\n \"endTime\": \"2017-10-06T03:11:09.3110587Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_1-20171005t233444z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_1-20171005t233444z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-892191217_1-20171005t233444z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\0\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_1-20171005t233444z/files/workitems/listsubtaskjob/job-1/testtask/0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D5C27613C733B4\",\r\n \"creationTime\": \"2018-05-25T19:31:13.6544692Z\",\r\n \"lastModified\": \"2018-05-25T19:31:13.6544692Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:18.7641951Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2018-05-25T19:31:14.8991009Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\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\": \"2018-05-25T19:31:14.8991009Z\",\r\n \"endTime\": \"2018-05-25T19:31:18.7641951Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"Success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-257509324_1-20180524t010137z\",\r\n \"nodeUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_1-20180524t010137z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-257509324_1-20180524t010137z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\0\",\r\n \"taskRootDirectoryUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_1-20180524t010137z/files/workitems/listsubtaskjob/job-1/testtask/0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:08 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c7f294ce-f841-496b-872a-8b664904201d" + "43e679eb-f93a-4601-bcfd-26422cc01523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +297,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:22 GMT" ], "ETag": [ - "0x8D50C67E37DBD4D" + "0x8D5C27613C733B4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,29 +309,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'testTask'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4321c1a6-54be-4903-b96d-1edde674b66b" + "42c3480b-7d32-424e-bf76-ce3c888cd3fd" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:08 GMT" + "Fri, 25 May 2018 19:31:13 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.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" @@ -340,7 +340,7 @@ "chunked" ], "request-id": [ - "15675c94-7834-49b1-af0f-eaced0ffd128" + "e63b1b3e-6c7e-42e2-9a65-73f7456ca361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,7 +352,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:07 GMT" + "Fri, 25 May 2018 19:31:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -361,29 +361,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'testTask'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f63e0408-7d27-4b3b-82d6-f66e05c14d2b" + "94de06e0-0687-4433-b3fb-135cdba1e789" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:10 GMT" + "Fri, 25 May 2018 19:31:15 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.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" @@ -392,7 +392,7 @@ "chunked" ], "request-id": [ - "b6fbbb2d-9d56-402c-90ad-fa7601fcd3ee" + "ce7cb514-4b4c-4830-8903-b8108b97c28c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,7 +404,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:10 GMT" + "Fri, 25 May 2018 19:31:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -413,29 +413,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'testTask'&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8d561797-1620-4239-b929-a089e4e1ebb4" + "96f8952d-1f92-4026-809f-8a868f04064b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:17 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.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" @@ -444,7 +444,7 @@ "chunked" ], "request-id": [ - "cf8e3733-3439-4373-bbcf-e4cf0aeea867" + "180e20c9-50b8-4436-b08c-23fd00e65fe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,7 +456,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -465,29 +465,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b25edd70-14ee-4925-98fe-6622fcc40143" + "5e2328c4-b45d-4b79-b1a5-d6a37cd343a1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:20 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2017-10-06T03:11:08.4691139Z\",\r\n \"endTime\": \"2017-10-06T03:11:09.231692Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:09.231692Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:08.4691139Z\",\r\n \"result\": \"Success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_3-20171005t233444z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_3-20171005t233444z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-892191217_3-20171005t233444z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_3-20171005t233444z/files/workitems/listsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2017-10-06T03:11:08.6038171Z\",\r\n \"endTime\": \"2017-10-06T03:11:09.2778367Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:09.2778367Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:08.6038171Z\",\r\n \"result\": \"Success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171005t233444z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_2-20171005t233444z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-892191217_2-20171005t233444z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_2-20171005t233444z/files/workitems/listsubtaskjob/job-1/testtask/2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.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" @@ -496,7 +496,7 @@ "chunked" ], "request-id": [ - "87f5ce67-f14d-467a-bc70-0287dbb515fd" + "ed3eb5d9-3d55-495e-bc9a-531dacdd8f2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,7 +508,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,29 +517,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'testTask'&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdFRhc2slMjcmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "89956d61-9bcc-4667-85ba-faaf48359393" + "a0580ef3-d35c-4e57-aee6-bb14e2f5cc60" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:22 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2017-10-06T03:11:08.4691139Z\",\r\n \"endTime\": \"2017-10-06T03:11:09.231692Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:09.231692Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:08.4691139Z\",\r\n \"result\": \"Success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_3-20171005t233444z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_3-20171005t233444z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-892191217_3-20171005t233444z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_3-20171005t233444z/files/workitems/listsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2017-10-06T03:11:08.6038171Z\",\r\n \"endTime\": \"2017-10-06T03:11:09.2778367Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:09.2778367Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:08.6038171Z\",\r\n \"result\": \"Success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-892191217_2-20171005t233444z\",\r\n \"nodeUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_2-20171005t233444z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-892191217_2-20171005t233444z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/pools/mpiPool/nodes/tvm-892191217_2-20171005t233444z/files/workitems/listsubtaskjob/job-1/testtask/2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.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" @@ -548,7 +548,7 @@ "chunked" ], "request-id": [ - "268affca-56f3-490d-848a-7814108180c7" + "0efdff25-ec01-4254-ad9d-efa11095b2a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,7 +560,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -569,26 +569,130 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "454cd3f8-a7d0-4d40-b5c7-cc5a907f5467" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 19:31:22 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2018-05-25T19:31:14.6060887Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:14.6060887Z\",\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-257509324_3-20180524t010137z\",\r\n \"nodeUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_3-20180524t010137z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-257509324_3-20180524t010137z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_3-20180524t010137z/files/workitems/listsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2018-05-25T19:31:14.794316Z\",\r\n \"endTime\": \"2018-05-25T19:31:18.7640385Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:18.7640385Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2018-05-25T19:31:14.794316Z\",\r\n \"result\": \"Success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-257509324_2-20180524t010137z\",\r\n \"nodeUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_2-20180524t010137z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-257509324_2-20180524t010137z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_2-20180524t010137z/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": [ + "ee70827f-b2a6-4c08-a8bd-5485c6c31401" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 19:31:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "76d70117-1003-4a76-914c-0d64e4440962" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 25 May 2018 19:31:22 GMT" + ], + "User-Agent": [ + "FxVersion/4.7.2650.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2018-05-25T19:31:14.6060887Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:14.6060887Z\",\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-257509324_3-20180524t010137z\",\r\n \"nodeUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_3-20180524t010137z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-257509324_3-20180524t010137z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\1\",\r\n \"taskRootDirectoryUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_3-20180524t010137z/files/workitems/listsubtaskjob/job-1/testtask/1\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2018-05-25T19:31:14.794316Z\",\r\n \"endTime\": \"2018-05-25T19:31:18.7640385Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:18.7640385Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2018-05-25T19:31:14.794316Z\",\r\n \"result\": \"Success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvm-257509324_2-20180524t010137z\",\r\n \"nodeUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_2-20180524t010137z\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvm-257509324_2-20180524t010137z\",\r\n \"taskRootDirectory\": \"workitems\\\\listsubtaskjob\\\\job-1\\\\testtask\\\\2\",\r\n \"taskRootDirectoryUrl\": \"https://batchtestaccount.westus.batch.azure.com/pools/mpiPool/nodes/tvm-257509324_2-20180524t010137z/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": [ + "2fe2d850-640d-4b62-8497-2e2e622436c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 25 May 2018 19:31:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b4dfca81-0981-43af-8930-b1378ca4ed47" + "e4bd0cc6-2266-4e08-b916-1bf97a998d35" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:22 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -597,7 +701,7 @@ "chunked" ], "request-id": [ - "a0590df2-2bae-4ddf-9d45-9cc51723342e" + "84913abc-f6b0-42a1-9374-eff42c3d415e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,7 +713,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:12 GMT" + "Fri, 25 May 2018 19:31:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -620,9 +724,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json index ecdf8758d758..e67d46bd1f06 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"taskCrudJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "94" ], "client-request-id": [ - "6afd82e6-83b2-460b-94c8-50e39aa345f1" + "dcc18eac-0421-49e2-8b43-94bce5e93911" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:32 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a0c23b0e-c84b-4ad6-9972-32f716fcf5b3" + "06fbec41-250e-4a10-91e2-93c9fe310ffa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:32 GMT" ], "ETag": [ - "0x8D50C67D0F7041B" + "0x8D5C2761F4C334D" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo task1\"\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "60" ], "client-request-id": [ - "155af7ea-e58a-43dd-af4f-b88765c16ff5" + "d25de64b-5803-467d-ba40-6e1614e28571" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "df49d1ce-4573-466b-93cc-2b24041e1bca" + "324dcabc-1e9c-4995-ac44-f5fcbebc15fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task1" + "https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task1" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "ETag": [ - "0x8D50C67D104D823" + "0x8D5C2761F870BE6" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task1" + "https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -135,8 +135,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task2\",\r\n \"commandLine\": \"cmd /c echo task2\"\r\n}", "RequestHeaders": { @@ -147,32 +147,32 @@ "60" ], "client-request-id": [ - "252f6f5e-d3f4-4e11-aa41-5f00d4267cd8" + "bc227d36-f90c-4f88-b8f1-d42bcbe64193" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "08b9f842-1c9f-4a4c-b6d8-4a891adcaadc" + "1136ff60-24ab-4794-a21f-ddaaff366845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,16 +184,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task2" + "https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task2" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "ETag": [ - "0x8D50C67D1152A0E" + "0x8D5C2761FC1828A" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task2" + "https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -202,29 +202,29 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2017-09-01.6.0&$filter=id%20eq%20'task1'%20or%20id%20eq%20'task2'", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjclMjBvciUyMGlkJTIwZXElMjAlMjd0YXNrMiUyNw==", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2018-03-01.6.1&$filter=id%20eq%20'task1'%20or%20id%20eq%20'task2'", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjEmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGFzazElMjclMjBvciUyMGlkJTIwZXElMjAlMjd0YXNrMiUyNw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cdf381c3-6864-4324-8a53-c5ac1c645381" + "428bf0b4-6998-4ee3-b2b7-1bdf2b936934" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D50C67D104D823\",\r\n \"creationTime\": \"2017-10-06T03:10:37.0713635Z\",\r\n \"lastModified\": \"2017-10-06T03:10:37.0713635Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:37.0713635Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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 },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D50C67D1152A0E\",\r\n \"creationTime\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"lastModified\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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 }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D5C2761F870BE6\",\r\n \"creationTime\": \"2018-05-25T19:31:33.366679Z\",\r\n \"lastModified\": \"2018-05-25T19:31:33.366679Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:33.366679Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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 },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D5C2761FC1828A\",\r\n \"creationTime\": \"2018-05-25T19:31:33.749825Z\",\r\n \"lastModified\": \"2018-05-25T19:31:33.749825Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:33.749825Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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 }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -233,7 +233,7 @@ "chunked" ], "request-id": [ - "c0d098e4-d05e-4514-80df-7a672e42cbcf" + "afb57f5e-a51e-42a1-8591-a5ef285cc618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -245,7 +245,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -254,8 +254,8 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"constraints\": {\r\n \"maxTaskRetryCount\": 3\r\n }\r\n}", "RequestHeaders": { @@ -266,32 +266,32 @@ "57" ], "client-request-id": [ - "14e2f3e5-7de1-45d3-9f1e-c2c5a4137e5e" + "1f53e736-9f1c-412f-85be-7d35af425068" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "12b2d7f0-c8bd-45d6-a119-ce6ee76580a9" + "82824bed-eb9c-419e-aa26-b225c0706608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,13 +303,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task2" + "https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task2" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "ETag": [ - "0x8D50C67D14A1F37" + "0x8D5C2761FF98336" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -318,41 +318,41 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9569ab02-fc69-4b4f-b968-ec7f2d56f940" + "b10ceb24-08ae-4a3f-b584-994d76c7da7e" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D50C67D14A1F37\",\r\n \"creationTime\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"lastModified\": \"2017-10-06T03:10:37.5253815Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 3\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D5C2761FF98336\",\r\n \"creationTime\": \"2018-05-25T19:31:33.749825Z\",\r\n \"lastModified\": \"2018-05-25T19:31:34.1168438Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:33.749825Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 3\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": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d6aa0c10-5ad9-42d8-9d63-4d358b546686" + "0404eff0-4225-47fe-9520-93f66062e37f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -364,10 +364,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "ETag": [ - "0x8D50C67D14A1F37" + "0x8D5C2761FF98336" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -376,29 +376,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6b1949bb-be22-44be-a65f-d6aa6dd27c68" + "5b7a59ef-f7ff-4032-8fe2-608331d631db" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D50C67D104D823\",\r\n \"creationTime\": \"2017-10-06T03:10:37.0713635Z\",\r\n \"lastModified\": \"2017-10-06T03:10:37.0713635Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:37.0713635Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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 },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D50C67D14A1F37\",\r\n \"creationTime\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"lastModified\": \"2017-10-06T03:10:37.5253815Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:10:37.1783182Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 3\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://batchtestaccount.westus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D5C2761F870BE6\",\r\n \"creationTime\": \"2018-05-25T19:31:33.366679Z\",\r\n \"lastModified\": \"2018-05-25T19:31:33.366679Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:33.366679Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\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 },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D5C2761FF98336\",\r\n \"creationTime\": \"2018-05-25T19:31:33.749825Z\",\r\n \"lastModified\": \"2018-05-25T19:31:34.1168438Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:31:33.749825Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 3\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" @@ -407,7 +407,7 @@ "chunked" ], "request-id": [ - "0112bf7f-c593-4b87-b159-ae88c0994adc" + "2b5c31a6-1320-4e9f-ad09-a5db34896f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -419,7 +419,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -428,29 +428,29 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "51895045-8667-442b-bfa5-b60799aaca83" + "6a2cd3d1-8d92-4362-97b0-02bd63577535" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks\",\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -459,7 +459,7 @@ "chunked" ], "request-id": [ - "6bdae69e-a119-424d-9ae1-0bbb3fb310ac" + "fd9447c9-e797-4bc6-a033-faa6fec38bb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,7 +471,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,26 +480,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task1?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks/task1?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a730321d-135d-4cce-be15-995877d09b09" + "967e6538-e06f-4fe6-a1e7-59d4034a672b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -508,7 +508,7 @@ "chunked" ], "request-id": [ - "84464da5-1d26-4e19-8125-e3e484d2d7d8" + "aa79db20-45bb-4552-a385-ae70a747749e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,7 +520,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -529,26 +529,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae385b3b-bea8-465a-af77-379d0bd893f4" + "4a1cec7d-ac0a-47bc-8fcf-ea36d1b512ba" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -557,7 +557,7 @@ "chunked" ], "request-id": [ - "131ceb63-76a4-44c4-87d4-339b9da467fb" + "77408dc9-bd13-476b-b693-76fb7afe5567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,7 +569,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:36 GMT" + "Fri, 25 May 2018 19:31:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -578,26 +578,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/taskCrudJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4b4dfb0f-73ce-49d0-a19a-aa33ca60ee49" + "a41b6875-6be6-4737-a766-c90b8bd99e3d" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:10:37 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -606,7 +606,7 @@ "chunked" ], "request-id": [ - "83edeccb-8dca-4447-a051-0994b1612ddb" + "2192e27c-e3b3-4925-a920-30d5d2bb1df8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:10:38 GMT" + "Fri, 25 May 2018 19:31:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -629,9 +629,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file 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 8f8d6d364fb3..7f95c9c8e5a6 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 @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTerminateTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { @@ -13,32 +13,32 @@ "103" ], "client-request-id": [ - "28b6f5db-df62-4724-b007-e714907ad8bb" + "b409a85a-4dd6-49e5-83e2-dc166032cba1" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:25 GMT" + "Fri, 25 May 2018 19:30:54 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3558368b-d56d-48de-b1ba-e5e940e55481" + "e1707f68-bd59-43ea-8f41-b30c5dbd4b9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,16 +50,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:54 GMT" ], "ETag": [ - "0x8D50C67EE944146" + "0x8D5C27608CDB0D7" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/job-1" + "https://batchtestaccount.westus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -68,8 +68,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -80,32 +80,32 @@ "180" ], "client-request-id": [ - "9766395e-0eb2-4d3a-aba0-026cec5e251b" + "a2f80e8d-cb58-42ae-95aa-ba1955490976" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:55 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cc99b915-fd45-418a-bd1a-b6a46ed42e46" + "d9961dcd-2a94-49bb-bba3-d46ceb503fec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + "https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" ], "Date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:54 GMT" ], "ETag": [ - "0x8D50C67EE7C218B" + "0x8D5C27608E4D48F" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + "https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -135,8 +135,8 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -147,32 +147,32 @@ "180" ], "client-request-id": [ - "4910f98a-0bc6-4005-a4b9-833a2faf4ea2" + "362b6f47-9e71-459f-902e-dd22fd817363" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:55 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5ed77911-42c4-46c4-be38-5366e227defa" + "926b4512-dd2d-4a61-b0c2-a0b11330b601" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,16 +184,16 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + "https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" ], "Date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:54 GMT" ], "ETag": [ - "0x8D50C67EE8811E9" + "0x8D5C2760917E0E8" ], "Location": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + "https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -202,26 +202,26 @@ "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1/terminate?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1/terminate?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "864347bc-057c-4cb7-a889-56a54810358b" + "9e7a51de-5106-44a2-9611-e298354e148b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:56 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -230,10 +230,10 @@ "0" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:57 GMT" ], "request-id": [ - "cb1c2ad8-254e-426d-a5e2-45084a087d56" + "25c18cb4-ddd4-4061-a9b6-37dd5f8acbf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -245,13 +245,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1/terminate" + "https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1/terminate" ], "Date": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:56 GMT" ], "ETag": [ - "0x8D50C67EEC833BF" + "0x8D5C27609DBDFAF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -260,41 +260,41 @@ "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMTctMDktMDEuNi4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEuNi4x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a213458e-7477-43bc-8f11-cd084f33e4a5" + "ddd50e62-042b-41de-8f78-25886c10f243" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D50C67EE8811E9\",\r\n \"creationTime\": \"2017-10-06T03:11:26.5852905Z\",\r\n \"lastModified\": \"2017-10-06T03:11:26.5852905Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:26.5852905Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D5C2760917E0E8\",\r\n \"creationTime\": \"2018-05-25T19:30:55.7282536Z\",\r\n \"lastModified\": \"2018-05-25T19:30:55.7282536Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2018-05-25T19:30:55.7282536Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a860ccee-de7e-4435-af69-b668357ce77a" + "838259ed-8956-4057-b319-ba02c1fbc4be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,10 +306,10 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:56 GMT" ], "ETag": [ - "0x8D50C67EE8811E9" + "0x8D5C2760917E0E8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -318,26 +318,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2/terminate?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLjYuMA==", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2/terminate?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLjYuMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "84810858-0ab0-43f7-8b5f-751c92032c78" + "b8fd7eb0-b22e-491e-8e3e-0db9e29021ce" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -346,10 +346,10 @@ "0" ], "Last-Modified": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:57 GMT" ], "request-id": [ - "62d79a2f-21fa-4af8-8fb0-a30124114187" + "7b8910a5-1ad0-4819-a934-727297366a3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,13 +361,13 @@ "3.0" ], "DataServiceId": [ - "https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2/terminate" + "https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2/terminate" ], "Date": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:56 GMT" ], "ETag": [ - "0x8D50C67EEDA806A" + "0x8D5C27609FE3540" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -376,29 +376,29 @@ "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d9943d94-2ab9-4c02-ba08-d979c9fa4bd9" + "f2e52b4d-6d12-43e2-bade-b570e0387e06" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D50C67EEC833BF\",\r\n \"creationTime\": \"2017-10-06T03:11:26.5070475Z\",\r\n \"lastModified\": \"2017-10-06T03:11:27.0055871Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:27.0055871Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:26.5070475Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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 \"endTime\": \"2017-10-06T03:11:27.0055871Z\",\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://matthchrwestcentralus.westcentralus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D50C67EEDA806A\",\r\n \"creationTime\": \"2017-10-06T03:11:26.5852905Z\",\r\n \"lastModified\": \"2017-10-06T03:11:27.1255146Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2017-10-06T03:11:27.1255146Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2017-10-06T03:11:26.5852905Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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 \"endTime\": \"2017-10-06T03:11:27.1255146Z\",\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://batchtestaccount.westus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D5C27609DBDFAF\",\r\n \"creationTime\": \"2018-05-25T19:30:55.3937039Z\",\r\n \"lastModified\": \"2018-05-25T19:30:57.0127279Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T19:30:57.0127279Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T19:30:55.3937039Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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 \"endTime\": \"2018-05-25T19:30:57.0127279Z\",\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"result\": \"Failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://batchtestaccount.westus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D5C27609FE3540\",\r\n \"creationTime\": \"2018-05-25T19:30:55.7282536Z\",\r\n \"lastModified\": \"2018-05-25T19:30:57.2377408Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2018-05-25T19:30:57.2377408Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2018-05-25T19:30:55.7282536Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\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 \"endTime\": \"2018-05-25T19:30:57.2377408Z\",\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"result\": \"Failure\",\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" @@ -407,7 +407,7 @@ "chunked" ], "request-id": [ - "063d19c4-1896-475b-9689-104da0bccda5" + "83c1afc4-9953-4767-a4b1-b936173627b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -419,7 +419,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -428,26 +428,26 @@ "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob?api-version=2017-09-01.6.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNy0wOS0wMS42LjA=", + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2018-03-01.6.1", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxOC0wMy0wMS42LjE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e53153c6-0768-4775-953a-2edc7a858f62" + "f64fab4e-2e72-45cb-8d42-4be709f3a88b" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Fri, 06 Oct 2017 03:11:27 GMT" + "Fri, 25 May 2018 19:30:57 GMT" ], "User-Agent": [ - "FxVersion/4.7.2110.0", + "FxVersion/4.7.2650.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.0.0.0", - "AzurePowershell/v4.4.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/8.1.1.0", + "AzurePowershell/v6.0.0" ] }, "ResponseBody": "", @@ -456,7 +456,7 @@ "chunked" ], "request-id": [ - "fe2b9722-6270-49a8-b398-8399bb033604" + "a7549ea3-72ad-4edf-873f-834c781cb6e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -468,7 +468,7 @@ "3.0" ], "Date": [ - "Fri, 06 Oct 2017 03:11:26 GMT" + "Fri, 25 May 2018 19:30:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -479,9 +479,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9", - "AZURE_BATCH_ACCOUNT": "matthchrwestcentralus", - "AZURE_BATCH_ENDPOINT": "https://matthchrwestcentralus.westcentralus.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "matthchrwestcentralus" + "SubscriptionId": "ac86108b-e8ec-4858-8603-2f80105f96db", + "AZURE_BATCH_ACCOUNT": "batchtestaccount", + "AZURE_BATCH_ENDPOINT": "https://batchtestaccount.westus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "antoniowtestbatchrg" } } \ No newline at end of file diff --git a/tools/AzureRM/AzureRM.psm1 b/tools/AzureRM/AzureRM.psm1 index 89f87b00ca1c..2e72cb29c40c 100644 --- a/tools/AzureRM/AzureRM.psm1 +++ b/tools/AzureRM/AzureRM.psm1 @@ -1 +1 @@ -# Placeholder for script template +# Placeholder for script template