diff --git a/ChangeLog.md b/ChangeLog.md index 5a5f10d64612..e7fdc7a5a479 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,4 @@ -## 2015.09.03 version 0.9.8 +## 2015.09.03 version 0.9.8 * Azure Compute (ARM) Cmdlets * Add -Launch parameter for Get-AzureRemoteDesktopFile cmdlet * Azure Backup - added the following cmdlets @@ -18,6 +18,14 @@ * Set-AzureRMBackupProtectionPolicy * Get-AzureRMBackupRecoveryPoint * Restore-AzureRMBackupItem +* Azure Batch - added the following cmdlets + * Enable-AzureBatchJob + * Disable-AzureBatchJob + * Enable-AzureBatchJobSchedule + * Disable-AzureBatchJobSchedule + * Stop-AzureBatchJob + * Stop-AzureBatchJobSchedule + * Stop-AzureBatchTask ## 2015.08.17 version 0.9.7 * Azure Profile cmdlets diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj index 46099a6a1074..3c601a43d400 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -169,11 +169,13 @@ + + @@ -204,6 +206,7 @@ + @@ -372,6 +375,12 @@ Always + + Always + + + Always + Always @@ -399,6 +408,12 @@ Always + + Always + + + Always + Always @@ -480,6 +495,9 @@ Always + + Always + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs new file mode 100644 index 000000000000..d9c4fbb806cb --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs @@ -0,0 +1,79 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Batch; +using Microsoft.Azure.Batch.Protocol; +using Microsoft.Azure.Batch.Protocol.Models; +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Threading.Tasks; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; + +namespace Microsoft.Azure.Commands.Batch.Test.Pools +{ + public class StopBatchJobScheduleCommandTests + { + private StopBatchJobScheduleCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public StopBatchJobScheduleCommandTests() + { + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new StopBatchJobScheduleCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void StopJobScheduleParametersTest() + { + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.Id = null; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.Id = "testJobSchedule"; + + // Don't go to the service on a Terminate CloudJobSchedule call + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest request = + (BatchRequest)baseRequest; + + request.ServiceRequestFunc = (cancellationToken) => + { + CloudJobScheduleTerminateResponse response = new CloudJobScheduleTerminateResponse(); + Task task = Task.FromResult(response); + return task; + }; + }); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Verify no exceptions when required parameter is set + cmdlet.ExecuteCmdlet(); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs new file mode 100644 index 000000000000..1bf3bae3e512 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs @@ -0,0 +1,116 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Batch; +using Microsoft.Azure.Batch.Common; +using Microsoft.Azure.Batch.Protocol; +using Microsoft.Azure.Batch.Protocol.Models; +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Threading.Tasks; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; + +namespace Microsoft.Azure.Commands.Batch.Test.Pools +{ + public class StopBatchJobCommandTests + { + private StopBatchJobCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public StopBatchJobCommandTests() + { + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new StopBatchJobCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void StopJobParametersTest() + { + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.Id = null; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.Id = "testJob"; + + // Don't go to the service on a Terminate CloudJob call + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest request = + (BatchRequest)baseRequest; + + request.ServiceRequestFunc = (cancellationToken) => + { + CloudJobTerminateResponse response = new CloudJobTerminateResponse(); + Task task = Task.FromResult(response); + return task; + }; + }); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Verify no exceptions when required parameter is set + cmdlet.ExecuteCmdlet(); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void StopJobRequestTest() + { + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + + string terminateReason = "testing"; + string requestTerminateReason = null; + + cmdlet.Id = "testJob"; + cmdlet.TerminateReason = terminateReason; + + // Don't go to the service on a Terminate CloudJob call + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest request = + (BatchRequest)baseRequest; + + requestTerminateReason = request.TypedParameters.TerminateReason; + + request.ServiceRequestFunc = (cancellationToken) => + { + CloudJobTerminateResponse response = new CloudJobTerminateResponse(); + Task task = Task.FromResult(response); + return task; + }; + }); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + cmdlet.ExecuteCmdlet(); + + // Verify that the job terminate reason was properly set on the outgoing request + Assert.Equal(terminateReason, requestTerminateReason); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs index fbcc0ce43708..881d80755a9c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs @@ -206,6 +206,40 @@ public void TestDisableAndEnableJobSchedule() TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTerminateJobScheduleById() + { + TestTerminateJobSchedule(false); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTerminateJobSchedulePipeline() + { + TestTerminateJobSchedule(true); + } + + private void TestTerminateJobSchedule(bool usePipeline) + { + BatchController controller = BatchController.NewInstance; + BatchAccountContext context = null; + string jobScheduleId = "testTerminateJobSchedule" + (usePipeline ? "Pipeline" : "Id"); + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-TerminateJobSchedule '{0}' '{1}' '{2}'", accountName, jobScheduleId, usePipeline ? 1 : 0) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + ScenarioTestHelpers.CreateTestJobSchedule(controller, context, jobScheduleId, null); + }, + () => + { + ScenarioTestHelpers.DeleteJobSchedule(controller, context, jobScheduleId); + }, + TestUtilities.GetCallingClass(), + usePipeline ? "TestTerminateJobSchedulePipeline" : "TestTerminateJobScheduleById"); + } } // Cmdlets that use the HTTP Recorder interceptor for use with scenario tests @@ -258,4 +292,14 @@ public override void ExecuteCmdlet() base.ExecuteCmdlet(); } } + + [Cmdlet(VerbsLifecycle.Stop, "AzureBatchJobSchedule_ST")] + public class StopBatchJobScheduleScenarioTestCommand : StopBatchJobScheduleCommand + { + public override void ExecuteCmdlet() + { + AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; + base.ExecuteCmdlet(); + } + } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.ps1 index 21e0947eb889..0bf84d9461a2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.ps1 @@ -390,4 +390,28 @@ function Test-DisableAndEnableJobSchedule $jobSchedule | Enable-AzureBatchJobSchedule_ST -BatchContext $context $jobSchedule = Get-AzureBatchJobSchedule_ST -Filter "id eq '$jobScheduleId'" -BatchContext $context Assert-AreEqual 'Active' $jobSchedule.State +} + +<# +.SYNOPSIS +Tests terminating a job schedule +#> +function Test-TerminateJobSchedule +{ + param([string]$accountName, [string]$jobScheduleId, [string]$usePipeline) + + $context = Get-AzureBatchAccountKeys -Name $accountName + + if ($usePipeline -eq '1') + { + Get-AzureBatchJobSchedule_ST -Id $jobScheduleId -BatchContext $context | Stop-AzureBatchJobSchedule_ST -BatchContext $context + } + else + { + Stop-AzureBatchJobSchedule_ST $jobScheduleId -BatchContext $context + } + + # Verify the job schedule was terminated + $jobSchedule = Get-AzureBatchJobSchedule_ST $jobScheduleId -BatchContext $context + Assert-True { ($jobSchedule.State.ToString().ToLower() -eq 'terminating') -or ($jobSchedule.State.ToString().ToLower() -eq 'completed') } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs index a273df84216a..a01cf0bba944 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs @@ -77,7 +77,7 @@ public void TestListJobsByFilter() ScenarioTestHelpers.CreateTestJob(controller, context, jobId1); ScenarioTestHelpers.CreateTestJob(controller, context, jobId2); ScenarioTestHelpers.CreateTestJob(controller, context, jobId3); - ScenarioTestHelpers.TerminateJob(context, jobId1); + ScenarioTestHelpers.TerminateJob(controller, context, jobId1); }, () => { @@ -167,7 +167,7 @@ public void TestListJobsUnderSchedule() ScenarioTestHelpers.CreateTestJob(controller, context, runOnceJob); ScenarioTestHelpers.CreateTestJobSchedule(controller, context, jobScheduleId, recurrence); jobId = ScenarioTestHelpers.WaitForRecentJob(controller, context, jobScheduleId); - ScenarioTestHelpers.TerminateJob(context, jobId); + ScenarioTestHelpers.TerminateJob(controller, context, jobId); jobId2 = ScenarioTestHelpers.WaitForRecentJob(controller, context, jobScheduleId, jobId); }, () => @@ -243,6 +243,40 @@ public void TestDisableAndEnableJob() TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTerminateJobById() + { + TestTerminateJob(false); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTerminateJobPipeline() + { + TestTerminateJob(true); + } + + private void TestTerminateJob(bool usePipeline) + { + BatchController controller = BatchController.NewInstance; + BatchAccountContext context = null; + string jobId = "testTerminateJob" + (usePipeline ? "Pipeline" : "Id"); + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-TerminateJob '{0}' '{1}' '{2}'", accountName, jobId, usePipeline ? 1 : 0) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + ScenarioTestHelpers.CreateTestJob(controller, context, jobId); + }, + () => + { + ScenarioTestHelpers.DeleteJob(controller, context, jobId); + }, + TestUtilities.GetCallingClass(), + usePipeline ? "TestTerminateJobPipeline" : "TestTerminateJobById"); + } } // Cmdlets that use the HTTP Recorder interceptor for use with scenario tests @@ -295,4 +329,14 @@ public override void ExecuteCmdlet() base.ExecuteCmdlet(); } } + + [Cmdlet(VerbsLifecycle.Stop, "AzureBatchJob_ST")] + public class StopBatchJobScenarioTestCommand : StopBatchJobCommand + { + public override void ExecuteCmdlet() + { + AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; + base.ExecuteCmdlet(); + } + } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.ps1 index cba2f55693c4..3a6626625f6c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.ps1 @@ -387,4 +387,30 @@ function Test-DisableAndEnableJob $job | Enable-AzureBatchJob_ST -BatchContext $context $job = Get-AzureBatchJob_ST -Filter "id eq '$jobId'" -BatchContext $context Assert-AreEqual 'Active' $job.State +} + +<# +.SYNOPSIS +Tests terminating a job +#> +function Test-TerminateJob +{ + param([string]$accountName, [string]$jobId, [string]$usePipeline) + + $context = Get-AzureBatchAccountKeys -Name $accountName + $terminateReason = "test" + + if ($usePipeline -eq '1') + { + Get-AzureBatchJob_ST -Id $jobId -BatchContext $context | Stop-AzureBatchJob_ST -TerminateReason $terminateReason -BatchContext $context + } + else + { + Stop-AzureBatchJob_ST $jobId $terminateReason -BatchContext $context + } + + # Verify the job was terminated and that the terminate reason was set + $job = Get-AzureBatchJob_ST $jobId -BatchContext $context + Assert-True { ($job.State.ToString().ToLower() -eq 'terminating') -or ($job.State.ToString().ToLower() -eq 'completed') } + Assert-AreEqual $terminateReason $job.ExecutionInformation.TerminateReason } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs index 6637f00829fe..cb5b63e3982c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs @@ -373,14 +373,16 @@ public static void DeleteJob(BatchController controller, BatchAccountContext con /// /// Terminates a job - /// TODO: Replace with terminate Job client method when it exists. /// - public static void TerminateJob(BatchAccountContext context, string jobId) + public static void TerminateJob(BatchController controller, BatchAccountContext context, string jobId) { RequestInterceptor interceptor = CreateHttpRecordingInterceptor(); BatchClientBehavior[] behaviors = new BatchClientBehavior[] { interceptor }; + BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); + + TerminateJobParameters parameters = new TerminateJobParameters(context, jobId, null, behaviors); - context.BatchOMClient.JobOperations.TerminateJob(jobId, additionalBehaviors: behaviors); + client.TerminateJob(parameters); } /// @@ -445,10 +447,8 @@ public static void CreateComputeNodeUser(BatchController controller, BatchAccoun /// /// Creates an interceptor that can be used to support the HTTP recorder scenario tests. - /// This behavior grabs the outgoing Protocol request, converts it to an HttpRequestMessage compatible with the - /// HTTP recorder, sends the request through the HTTP recorder, and converts the response to an HttpWebResponse - /// for serialization by the Protocol Layer. - /// NOTE: This is a temporary behavior that should no longer be needed when the Batch OM switches to Hyak. + /// Since the BatchRestClient is not generated from the test infrastructure, the HTTP + /// recording delegate must be explicitly added. /// public static RequestInterceptor CreateHttpRecordingInterceptor() { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs index 17fa3ce70ac0..ec2c343952e0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs @@ -235,6 +235,32 @@ public void TestDeleteTaskPipeline() TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTerminateTask() + { + BatchController controller = BatchController.NewInstance; + BatchAccountContext context = null; + string jobId = "testTerminateTaskJob"; + string taskId1 = "testTask1"; + string taskId2 = "testTask2"; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-TerminateTask '{0}' '{1}' '{2}' '{3}'", accountName, jobId, taskId1, taskId2) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + ScenarioTestHelpers.CreateTestJob(controller, context, jobId); + ScenarioTestHelpers.CreateTestTask(controller, context, jobId, taskId1); + ScenarioTestHelpers.CreateTestTask(controller, context, jobId, taskId2); + }, + () => + { + ScenarioTestHelpers.DeleteJob(controller, context, jobId); + }, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName()); + } } // Cmdlets that use the HTTP Recorder interceptor for use with scenario tests @@ -267,4 +293,14 @@ public override void ExecuteCmdlet() base.ExecuteCmdlet(); } } + + [Cmdlet(VerbsLifecycle.Stop, "AzureBatchTask_ST")] + public class StopBatchTaskScenarioTestCommand : StopBatchTaskCommand + { + public override void ExecuteCmdlet() + { + AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; + base.ExecuteCmdlet(); + } + } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 index 732b27caedeb..0b6a5aec729d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.ps1 @@ -201,4 +201,24 @@ function Test-DeleteTask # Verify the task was deleted $tasks = Get-AzureBatchTask_ST -JobId $jobId -BatchContext $context Assert-Null $tasks +} + +<# +.SYNOPSIS +Tests terminating a task +#> +function Test-TerminateTask +{ + param([string]$accountName, [string]$jobId, [string]$taskId1, [string]$taskId2) + + $context = Get-AzureBatchAccountKeys -Name $accountName + + Stop-AzureBatchTask_ST $jobId $taskId1 -BatchContext $context + Get-AzureBatchTask_ST $jobId $taskId2 -BatchContext $context | Stop-AzureBatchTask_ST -BatchContext $context + + # Verify the tasks were terminated + foreach ($task in Get-AzureBatchTask_ST $jobId -BatchContext $context) + { + Assert-AreEqual 'completed' $task.State.ToString().ToLower() + } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json new file mode 100644 index 000000000000..af6d2567dedc --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobScheduleById.json @@ -0,0 +1,665 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "5f117509-d39f-4d41-90d8-a6cc62e5c1a0" + ], + "x-ms-correlation-request-id": [ + "5f117509-d39f-4d41-90d8-a6cc62e5c1a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192416Z:5f117509-d39f-4d41-90d8-a6cc62e5c1a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "8550b04d-83f8-404c-89e7-3d35b70905b2" + ], + "x-ms-correlation-request-id": [ + "8550b04d-83f8-404c-89e7-3d35b70905b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192419Z:8550b04d-83f8-404c-89e7-3d35b70905b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "567d9071-444b-433a-8f1b-4f854c81eff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "c0a8033b-40ff-4519-952e-3f534469f02c" + ], + "x-ms-correlation-request-id": [ + "c0a8033b-40ff-4519-952e-3f534469f02c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192417Z:c0a8033b-40ff-4519-952e-3f534469f02c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:17 GMT" + ], + "ETag": [ + "0x8D2AF151972293D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "892cafb1-7848-488a-8542-b8114cc977bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "aee71580-4cb8-426e-835f-1a65b014b969" + ], + "x-ms-correlation-request-id": [ + "aee71580-4cb8-426e-835f-1a65b014b969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192419Z:aee71580-4cb8-426e-835f-1a65b014b969" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "ETag": [ + "0x8D2AF151AEF2134" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "6a3adb8a-79c1-433d-b338-298901316b56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "20912066-08e9-4165-8ba8-186314f0605f" + ], + "x-ms-correlation-request-id": [ + "20912066-08e9-4165-8ba8-186314f0605f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192417Z:20912066-08e9-4165-8ba8-186314f0605f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "6a033635-d31d-429f-94a3-685a7a8cd8a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "04ed2f56-bfc9-4758-b821-8bb60abd62e8" + ], + "x-ms-correlation-request-id": [ + "04ed2f56-bfc9-4758-b821-8bb60abd62e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192419Z:04ed2f56-bfc9-4758-b821-8bb60abd62e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "184" + ], + "client-request-id": [ + "0aea6df2-498e-42b1-af46-8655a04bfdf7" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:17 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:17 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3d6e17e2-4c63-4374-aee3-ebacd9448582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0aea6df2-498e-42b1-af46-8655a04bfdf7" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:18 GMT" + ], + "ETag": [ + "0x8D2AF1519B60550" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobschedules/testTerminateJobScheduleId?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e21784ce-2ee5-450b-9224-cec132e264ed" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "67d27fa0-b7d6-4176-9b96-62340c07f2d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e21784ce-2ee5-450b-9224-cec132e264ed" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "ETag": [ + "0x8D2AF151B007E26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "427592a4-d60e-40a3-a1ed-c28a10ddda57" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId\",\r\n \"eTag\": \"0x8D2AF151B007E26\",\r\n \"lastModified\": \"2015-08-27T19:24:19.485239Z\",\r\n \"creationTime\": \"2015-08-27T19:24:17.3194576Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:24:19.6141991Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:24:17.3194576Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobScheduleId:job-1\",\r\n \"id\": \"testTerminateJobScheduleId:job-1\"\r\n },\r\n \"endTime\": \"2015-08-27T19:24:19.6141991Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "af008536-ca39-4753-a89d-308c53bb93dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "427592a4-d60e-40a3-a1ed-c28a10ddda57" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:21 GMT" + ], + "ETag": [ + "0x8D2AF151B007E26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "427592a4-d60e-40a3-a1ed-c28a10ddda57" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobScheduleId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobScheduleId\",\r\n \"eTag\": \"0x8D2AF151B007E26\",\r\n \"lastModified\": \"2015-08-27T19:24:19.485239Z\",\r\n \"creationTime\": \"2015-08-27T19:24:17.3194576Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:24:19.6141991Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:24:17.3194576Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobScheduleId:job-1\",\r\n \"id\": \"testTerminateJobScheduleId:job-1\"\r\n },\r\n \"endTime\": \"2015-08-27T19:24:19.6141991Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:19 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "af008536-ca39-4753-a89d-308c53bb93dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "427592a4-d60e-40a3-a1ed-c28a10ddda57" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:21 GMT" + ], + "ETag": [ + "0x8D2AF151B007E26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3163937a-7ed2-4635-808a-c8c256656a7b" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0f4177a6-ee9d-444a-92b6-6a7a2ab0daec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3163937a-7ed2-4635-808a-c8c256656a7b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobschedules/testTerminateJobScheduleId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVJZD9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3163937a-7ed2-4635-808a-c8c256656a7b" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0f4177a6-ee9d-444a-92b6-6a7a2ab0daec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3163937a-7ed2-4635-808a-c8c256656a7b" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json new file mode 100644 index 000000000000..34cf1eb094ad --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestTerminateJobSchedulePipeline.json @@ -0,0 +1,830 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "54f2b75f-9235-4e3d-a0b5-faf94bd8aab8" + ], + "x-ms-correlation-request-id": [ + "54f2b75f-9235-4e3d-a0b5-faf94bd8aab8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192441Z:54f2b75f-9235-4e3d-a0b5-faf94bd8aab8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "52b15005-996f-4f57-a7cb-6862a9583e55" + ], + "x-ms-correlation-request-id": [ + "52b15005-996f-4f57-a7cb-6862a9583e55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192443Z:52b15005-996f-4f57-a7cb-6862a9583e55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "c959fbec-77c4-4daa-b659-62390e974cd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "e002fc63-1cda-4660-8b62-c1246a3d9bee" + ], + "x-ms-correlation-request-id": [ + "e002fc63-1cda-4660-8b62-c1246a3d9bee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192442Z:e002fc63-1cda-4660-8b62-c1246a3d9bee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ], + "ETag": [ + "0x8D2AF15288EE96C" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "5ba9a0f6-e78f-4fe6-a42c-342146831546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "952a0d3a-e99e-42a1-b964-0005a9fb9985" + ], + "x-ms-correlation-request-id": [ + "952a0d3a-e99e-42a1-b964-0005a9fb9985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192443Z:952a0d3a-e99e-42a1-b964-0005a9fb9985" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF1529354A05" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "a1a32d87-6305-4770-8ca6-44b8f06ee6b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "c7d62c23-2acc-4abe-986c-1ba0f6d0b33d" + ], + "x-ms-correlation-request-id": [ + "c7d62c23-2acc-4abe-986c-1ba0f6d0b33d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192442Z:c7d62c23-2acc-4abe-986c-1ba0f6d0b33d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "a307b365-5b16-4e6c-b5e7-4e676112ec9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "ebd32cb5-8e78-4b08-a9f9-5f839b5b38a2" + ], + "x-ms-correlation-request-id": [ + "ebd32cb5-8e78-4b08-a9f9-5f839b5b38a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T192443Z:ebd32cb5-8e78-4b08-a9f9-5f839b5b38a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "190" + ], + "client-request-id": [ + "dc5edb57-3d67-476a-92b5-80c7f3c63019" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f3173794-c685-435b-933b-f21fe99000e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "dc5edb57-3d67-476a-92b5-80c7f3c63019" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF152898D47D" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "939eeca9-1978-47e9-a829-2bc3b623ea62" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D2AF152898D47D\",\r\n \"lastModified\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"creationTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:42 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "47c9b84c-4cb1-4c1a-be6d-0f8dce4f948e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "939eeca9-1978-47e9-a829-2bc3b623ea62" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF152898D47D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "99d353a0-b08c-4e36-a195-7f86080eba30" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D2AF15294CE66D\",\r\n \"lastModified\": \"2015-08-27T19:24:43.4740845Z\",\r\n \"creationTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:24:43.5576797Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n },\r\n \"endTime\": \"2015-08-27T19:24:43.5576797Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "05447cf4-101c-4bf4-b666-efd5d9eeff67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "99d353a0-b08c-4e36-a195-7f86080eba30" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF15294CE66D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "99d353a0-b08c-4e36-a195-7f86080eba30" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D2AF15294CE66D\",\r\n \"lastModified\": \"2015-08-27T19:24:43.4740845Z\",\r\n \"creationTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:24:43.5576797Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n },\r\n \"endTime\": \"2015-08-27T19:24:43.5576797Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "05447cf4-101c-4bf4-b666-efd5d9eeff67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "99d353a0-b08c-4e36-a195-7f86080eba30" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF15294CE66D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "99d353a0-b08c-4e36-a195-7f86080eba30" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testTerminateJobSchedulePipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline\",\r\n \"eTag\": \"0x8D2AF15294CE66D\",\r\n \"lastModified\": \"2015-08-27T19:24:43.4740845Z\",\r\n \"creationTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:24:43.5576797Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:24:42.2939773Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobSchedulePipeline:job-1\",\r\n \"id\": \"testTerminateJobSchedulePipeline:job-1\"\r\n },\r\n \"endTime\": \"2015-08-27T19:24:43.5576797Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "05447cf4-101c-4bf4-b666-efd5d9eeff67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "99d353a0-b08c-4e36-a195-7f86080eba30" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF15294CE66D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac30fd5a-ec17-4c10-adcd-1991b66d72a2" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a5e8296a-446f-4945-b81f-fbaa8c00a4e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ac30fd5a-ec17-4c10-adcd-1991b66d72a2" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF15294CE66D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT90ZXJtaW5hdGUmYXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac30fd5a-ec17-4c10-adcd-1991b66d72a2" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "a5e8296a-446f-4945-b81f-fbaa8c00a4e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ac30fd5a-ec17-4c10-adcd-1991b66d72a2" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobschedules/testTerminateJobSchedulePipeline" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:43 GMT" + ], + "ETag": [ + "0x8D2AF15294CE66D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7e10e3d3-68f4-4ca9-99ba-8a192f951486" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8ccc688e-08e0-4463-9cc1-cd3af8f83cbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7e10e3d3-68f4-4ca9-99ba-8a192f951486" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:45 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobschedules/testTerminateJobSchedulePipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0VGVybWluYXRlSm9iU2NoZWR1bGVQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7e10e3d3-68f4-4ca9-99ba-8a192f951486" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:24:44 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "8ccc688e-08e0-4463-9cc1-cd3af8f83cbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7e10e3d3-68f4-4ca9-99ba-8a192f951486" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:24:45 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json index 2813f741a178..52bd921172d8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14997" ], "x-ms-request-id": [ - "9e4e0a53-b2e1-473f-aac8-00bc1a082d52" + "64a13eef-f5ef-47aa-a5db-8b66a0350044" ], "x-ms-correlation-request-id": [ - "9e4e0a53-b2e1-473f-aac8-00bc1a082d52" + "64a13eef-f5ef-47aa-a5db-8b66a0350044" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170350Z:9e4e0a53-b2e1-473f-aac8-00bc1a082d52" + "WESTUS:20150827T214428Z:64a13eef-f5ef-47aa-a5db-8b66a0350044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:03:49 GMT" + "Thu, 27 Aug 2015 21:44:27 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14996" ], "x-ms-request-id": [ - "9611bee9-acc3-47f2-8803-295752cf38a8" + "417c00bf-a38e-4ba0-8d9a-b4cee8f77734" ], "x-ms-correlation-request-id": [ - "9611bee9-acc3-47f2-8803-295752cf38a8" + "417c00bf-a38e-4ba0-8d9a-b4cee8f77734" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170352Z:9611bee9-acc3-47f2-8803-295752cf38a8" + "WESTUS:20150827T214430Z:417c00bf-a38e-4ba0-8d9a-b4cee8f77734" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7e99c79b-2020-44b6-8530-3483d3997c5c" + "e09926a6-f9f0-46dd-bbd8-1de8970d5c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14997" ], "x-ms-request-id": [ - "ec39bc37-2e2b-4a6e-8b02-78f0c6d5c70e" + "ffb11766-c57c-4631-9373-6b460b5029e2" ], "x-ms-correlation-request-id": [ - "ec39bc37-2e2b-4a6e-8b02-78f0c6d5c70e" + "ffb11766-c57c-4631-9373-6b460b5029e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170351Z:ec39bc37-2e2b-4a6e-8b02-78f0c6d5c70e" + "WESTUS:20150827T214428Z:ffb11766-c57c-4631-9373-6b460b5029e2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:03:50 GMT" + "Thu, 27 Aug 2015 21:44:28 GMT" ], "ETag": [ - "0x8D29900D7AE3E19" + "0x8D2AF28B0252FDD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "59ef6c3b-e866-44fa-a47f-f824818fc6bf" + "56c83410-6047-4401-975b-3d012cddcbf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14996" ], "x-ms-request-id": [ - "a1724779-7331-43a0-a498-55531d8ad113" + "b4440e38-9ff6-48f8-8090-53ad5a5bc434" ], "x-ms-correlation-request-id": [ - "a1724779-7331-43a0-a498-55531d8ad113" + "b4440e38-9ff6-48f8-8090-53ad5a5bc434" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170353Z:a1724779-7331-43a0-a498-55531d8ad113" + "WESTUS:20150827T214430Z:b4440e38-9ff6-48f8-8090-53ad5a5bc434" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "ETag": [ - "0x8D29900D8BC77B7" + "0x8D2AF28B15B52F0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LjcPYhLUNjgOzrdNciMQS1TZJUoKgOrqhNYv9pbKdNn6GHMBuYwyt9dEx6uSdjzPV4U1N8RFm1EjiakXhq2hng==\",\r\n \"secondary\": \"Y8oHFA4f8afHXYmqwcvL2Bigg+GkjKhDBBUGGAEkGVoj77rskty8DnAqaqMpntUwQK+yEAJWbgfvoho5AfcM+w==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "0c9a7cdb-6e55-4e3d-866d-42081f2852bf" + "f73ca5b6-5989-4e21-a892-6d05ecac4008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1197" ], "x-ms-request-id": [ - "c9245ab5-2570-4023-a0fb-b73e3bdea09b" + "cf78196a-aa56-4bb3-8ed3-7a4e5f2b9200" ], "x-ms-correlation-request-id": [ - "c9245ab5-2570-4023-a0fb-b73e3bdea09b" + "cf78196a-aa56-4bb3-8ed3-7a4e5f2b9200" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170351Z:c9245ab5-2570-4023-a0fb-b73e3bdea09b" + "WESTUS:20150827T214429Z:cf78196a-aa56-4bb3-8ed3-7a4e5f2b9200" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:03:50 GMT" + "Thu, 27 Aug 2015 21:44:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LjcPYhLUNjgOzrdNciMQS1TZJUoKgOrqhNYv9pbKdNn6GHMBuYwyt9dEx6uSdjzPV4U1N8RFm1EjiakXhq2hng==\",\r\n \"secondary\": \"Y8oHFA4f8afHXYmqwcvL2Bigg+GkjKhDBBUGGAEkGVoj77rskty8DnAqaqMpntUwQK+yEAJWbgfvoho5AfcM+w==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "29501777-196d-4b97-9681-ff15552a22e9" + "5aad5708-8790-41ea-afa9-62a69f7518ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1196" ], "x-ms-request-id": [ - "43ef44e1-dfa3-40dc-87fd-0ac11df97dc0" + "bb93e8c3-2e3f-46ab-931f-8577c263a400" ], "x-ms-correlation-request-id": [ - "43ef44e1-dfa3-40dc-87fd-0ac11df97dc0" + "bb93e8c3-2e3f-46ab-931f-8577c263a400" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170353Z:43ef44e1-dfa3-40dc-87fd-0ac11df97dc0" + "WESTUS:20150827T214431Z:bb93e8c3-2e3f-46ab-931f-8577c263a400" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -349,10 +349,10 @@ "90" ], "client-request-id": [ - "b681a3cc-6e18-4fd5-995c-ed4073a53c42" + "0c48ff13-0701-4a6a-8d79-ce0bc768cc8e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:28 GMT" ], "return-client-request-id": [ "true" @@ -365,19 +365,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9a284e91-8ecd-491c-9e9a-c5fe7b868180" + "b0fa073e-c9ab-4ab6-940b-f12e5ba9e151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "b681a3cc-6e18-4fd5-995c-ed4073a53c42" + "0c48ff13-0701-4a6a-8d79-ce0bc768cc8e" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "ETag": [ - "0x8D29900D842834E" + "0x8D2AF28AF5DE56F" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -413,10 +413,10 @@ "90" ], "client-request-id": [ - "154fbbc1-c759-4b12-a510-20fdaa5ccdfd" + "fd99f8e9-bdb0-4fec-9d74-b62b3bd834ad" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "return-client-request-id": [ "true" @@ -429,19 +429,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7092a550-db32-4a23-bc21-0d75e93893eb" + "ff024829-9890-4cc2-ba42-182994e08403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "154fbbc1-c759-4b12-a510-20fdaa5ccdfd" + "fd99f8e9-bdb0-4fec-9d74-b62b3bd834ad" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "ETag": [ - "0x8D29900D86B22FC" + "0x8D2AF28AF91BA99" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -477,10 +477,10 @@ "90" ], "client-request-id": [ - "154fbbc1-c759-4b12-a510-20fdaa5ccdfd" + "fd99f8e9-bdb0-4fec-9d74-b62b3bd834ad" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "return-client-request-id": [ "true" @@ -493,19 +493,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7092a550-db32-4a23-bc21-0d75e93893eb" + "ff024829-9890-4cc2-ba42-182994e08403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "154fbbc1-c759-4b12-a510-20fdaa5ccdfd" + "fd99f8e9-bdb0-4fec-9d74-b62b3bd834ad" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:51 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "ETag": [ - "0x8D29900D86B22FC" + "0x8D2AF28AF91BA99" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -541,10 +541,10 @@ "94" ], "client-request-id": [ - "7eb207b9-bb31-48e7-834b-a3015d42db8b" + "d9be7a9a-4fc5-4a3c-ae3f-58844858e7ae" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "return-client-request-id": [ "true" @@ -557,19 +557,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a265344a-2385-4d4e-b857-6544bce0a96b" + "79aa0717-c74a-4bda-8a4f-c9dfb5580e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7eb207b9-bb31-48e7-834b-a3015d42db8b" + "d9be7a9a-4fc5-4a3c-ae3f-58844858e7ae" ], "DataServiceVersion": [ "3.0" @@ -578,10 +578,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "ETag": [ - "0x8D29900D88B12E7" + "0x8D2AF28AFC39F54" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -605,10 +605,10 @@ "94" ], "client-request-id": [ - "7eb207b9-bb31-48e7-834b-a3015d42db8b" + "d9be7a9a-4fc5-4a3c-ae3f-58844858e7ae" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "return-client-request-id": [ "true" @@ -621,19 +621,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a265344a-2385-4d4e-b857-6544bce0a96b" + "79aa0717-c74a-4bda-8a4f-c9dfb5580e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7eb207b9-bb31-48e7-834b-a3015d42db8b" + "d9be7a9a-4fc5-4a3c-ae3f-58844858e7ae" ], "DataServiceVersion": [ "3.0" @@ -642,10 +642,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "ETag": [ - "0x8D29900D88B12E7" + "0x8D2AF28AFC39F54" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -669,10 +669,10 @@ "94" ], "client-request-id": [ - "7eb207b9-bb31-48e7-834b-a3015d42db8b" + "d9be7a9a-4fc5-4a3c-ae3f-58844858e7ae" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "return-client-request-id": [ "true" @@ -685,19 +685,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a265344a-2385-4d4e-b857-6544bce0a96b" + "79aa0717-c74a-4bda-8a4f-c9dfb5580e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "7eb207b9-bb31-48e7-834b-a3015d42db8b" + "d9be7a9a-4fc5-4a3c-ae3f-58844858e7ae" ], "DataServiceVersion": [ "3.0" @@ -706,10 +706,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "ETag": [ - "0x8D29900D88B12E7" + "0x8D2AF28AFC39F54" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -733,10 +733,10 @@ "2" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "return-client-request-id": [ "true" @@ -749,19 +749,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6d84a352-dc5f-43ca-b026-37340ede96bc" + "88e63f4d-4eb5-4fb8-9b50-7190fdb848bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "DataServiceVersion": [ "3.0" @@ -770,10 +770,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testId1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "ETag": [ - "0x8D29900D8A42E95" + "0x8D2AF28AFEBAD67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -794,10 +794,10 @@ "2" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "return-client-request-id": [ "true" @@ -810,19 +810,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6d84a352-dc5f-43ca-b026-37340ede96bc" + "88e63f4d-4eb5-4fb8-9b50-7190fdb848bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "DataServiceVersion": [ "3.0" @@ -831,10 +831,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testId1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "ETag": [ - "0x8D29900D8A42E95" + "0x8D2AF28AFEBAD67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -855,10 +855,10 @@ "2" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "return-client-request-id": [ "true" @@ -871,19 +871,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6d84a352-dc5f-43ca-b026-37340ede96bc" + "88e63f4d-4eb5-4fb8-9b50-7190fdb848bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "DataServiceVersion": [ "3.0" @@ -892,10 +892,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testId1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "ETag": [ - "0x8D29900D8A42E95" + "0x8D2AF28AFEBAD67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -916,10 +916,10 @@ "2" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "return-client-request-id": [ "true" @@ -932,19 +932,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:29 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6d84a352-dc5f-43ca-b026-37340ede96bc" + "88e63f4d-4eb5-4fb8-9b50-7190fdb848bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2a047490-06c2-453f-9ec6-8fe9d7ae1dfd" + "f58a279e-c96b-4e62-8b86-1169ec313d21" ], "DataServiceVersion": [ "3.0" @@ -953,10 +953,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testId1" ], "Date": [ - "Thu, 30 Jul 2015 17:03:52 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "ETag": [ - "0x8D29900D8A42E95" + "0x8D2AF28AFEBAD67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -971,10 +971,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "98cf9dc2-74c1-4ebd-9220-75e0928bff8d" + "4a5b94de-5a41-4f36-9863-0066e767c870" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:30 GMT" ], "return-client-request-id": [ "true" @@ -984,7 +984,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testId2\",\r\n \"eTag\": \"0x8D29900D86B22FC\",\r\n \"lastModified\": \"2015-07-30T17:03:52.261094Z\",\r\n \"creationTime\": \"2015-07-30T17:03:52.2440865Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:03:52.261094Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:03:52.261094Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/thirdtestId\",\r\n \"eTag\": \"0x8D29900D88B12E7\",\r\n \"lastModified\": \"2015-07-30T17:03:52.4703975Z\",\r\n \"creationTime\": \"2015-07-30T17:03:52.4522625Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:03:52.4703975Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:03:52.4703975Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testId2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testId2\",\r\n \"eTag\": \"0x8D2AF28AF91BA99\",\r\n \"lastModified\": \"2015-08-27T21:44:29.1777177Z\",\r\n \"creationTime\": \"2015-08-27T21:44:29.1594834Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:29.1777177Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:29.1777177Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"thirdtestId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/thirdtestId\",\r\n \"eTag\": \"0x8D2AF28AFC39F54\",\r\n \"lastModified\": \"2015-08-27T21:44:29.5046996Z\",\r\n \"creationTime\": \"2015-08-27T21:44:29.4850215Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:29.5046996Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:29.5046996Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -993,19 +993,19 @@ "chunked" ], "request-id": [ - "a71d2ee9-6d66-43c3-98fc-312795ef57b0" + "e0125274-b3c3-4342-af09-f7181c42916d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "98cf9dc2-74c1-4ebd-9220-75e0928bff8d" + "4a5b94de-5a41-4f36-9863-0066e767c870" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1020,10 +1020,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1039,19 +1039,19 @@ "chunked" ], "request-id": [ - "7c45dd4f-38b6-4137-a01a-9a706303bbe2" + "c3d66b4e-2025-4d70-b901-da86b92179c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1066,10 +1066,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1085,19 +1085,19 @@ "chunked" ], "request-id": [ - "7c45dd4f-38b6-4137-a01a-9a706303bbe2" + "c3d66b4e-2025-4d70-b901-da86b92179c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1112,10 +1112,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1131,19 +1131,19 @@ "chunked" ], "request-id": [ - "7c45dd4f-38b6-4137-a01a-9a706303bbe2" + "c3d66b4e-2025-4d70-b901-da86b92179c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1158,10 +1158,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1177,19 +1177,19 @@ "chunked" ], "request-id": [ - "7c45dd4f-38b6-4137-a01a-9a706303bbe2" + "c3d66b4e-2025-4d70-b901-da86b92179c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1204,10 +1204,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1223,19 +1223,19 @@ "chunked" ], "request-id": [ - "7c45dd4f-38b6-4137-a01a-9a706303bbe2" + "c3d66b4e-2025-4d70-b901-da86b92179c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "48d85eb5-452e-44ac-bb66-1a275b253527" + "c1e1438a-81b3-4cbe-91c3-3161d4d708d3" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1250,10 +1250,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1269,19 +1269,19 @@ "chunked" ], "request-id": [ - "6fffca4f-5960-4b06-bddd-9fcb6a91741f" + "2602f53d-396e-4652-a1c0-6e02b75df83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1296,10 +1296,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1315,19 +1315,19 @@ "chunked" ], "request-id": [ - "6fffca4f-5960-4b06-bddd-9fcb6a91741f" + "2602f53d-396e-4652-a1c0-6e02b75df83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1342,10 +1342,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1361,19 +1361,19 @@ "chunked" ], "request-id": [ - "6fffca4f-5960-4b06-bddd-9fcb6a91741f" + "2602f53d-396e-4652-a1c0-6e02b75df83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1388,10 +1388,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1407,19 +1407,19 @@ "chunked" ], "request-id": [ - "6fffca4f-5960-4b06-bddd-9fcb6a91741f" + "2602f53d-396e-4652-a1c0-6e02b75df83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1434,10 +1434,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1453,19 +1453,19 @@ "chunked" ], "request-id": [ - "6fffca4f-5960-4b06-bddd-9fcb6a91741f" + "2602f53d-396e-4652-a1c0-6e02b75df83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1480,10 +1480,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1499,19 +1499,19 @@ "chunked" ], "request-id": [ - "6fffca4f-5960-4b06-bddd-9fcb6a91741f" + "2602f53d-396e-4652-a1c0-6e02b75df83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "8f1806db-cdb8-40e2-8855-7a65e85996de" + "01e399d9-f231-4a4b-9d74-dc5caa126514" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1526,10 +1526,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1545,19 +1545,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,10 +1572,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1591,19 +1591,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1618,10 +1618,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1637,19 +1637,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1664,10 +1664,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1683,19 +1683,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1710,10 +1710,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1729,19 +1729,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1756,10 +1756,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1775,19 +1775,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1802,10 +1802,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:31 GMT" ], "return-client-request-id": [ "true" @@ -1821,19 +1821,19 @@ "chunked" ], "request-id": [ - "9dbe08c2-2faa-40c2-899f-55bc306ae973" + "e3e79352-b231-4360-84c3-f28c7ac0df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "27d1f524-c1ea-495f-9e44-b81359dd4728" + "fa06e60f-e3d1-4db0-bd54-592c1f7bbdb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:03:53 GMT" + "Thu, 27 Aug 2015 21:44:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json index 1d44d4d36a6f..45756e5187da 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsUnderSchedule.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14999" ], "x-ms-request-id": [ - "c1113b8b-0c7c-449d-8b75-88a7112597d5" + "1155a96c-01b6-4048-81de-2145738dc9c3" ], "x-ms-correlation-request-id": [ - "c1113b8b-0c7c-449d-8b75-88a7112597d5" + "1155a96c-01b6-4048-81de-2145738dc9c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170145Z:c1113b8b-0c7c-449d-8b75-88a7112597d5" + "WESTUS:20150827T214301Z:1155a96c-01b6-4048-81de-2145738dc9c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:01:44 GMT" + "Thu, 27 Aug 2015 21:43:01 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14998" ], "x-ms-request-id": [ - "0babb474-ef27-4247-8213-0749bfa5c4d5" + "b1b4a0cb-1c61-4d86-b426-12d32e3bafc1" ], "x-ms-correlation-request-id": [ - "0babb474-ef27-4247-8213-0749bfa5c4d5" + "b1b4a0cb-1c61-4d86-b426-12d32e3bafc1" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170249Z:0babb474-ef27-4247-8213-0749bfa5c4d5" + "WESTUS:20150827T214406Z:b1b4a0cb-1c61-4d86-b426-12d32e3bafc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ] }, "StatusCode": 200 @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:46 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2cb8c470-d144-4883-a747-cdff568a9292" + "f3bbb0d2-e745-449a-9a5a-2de0171b812c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14999" ], "x-ms-request-id": [ - "b648deef-d7f8-4f79-8452-f2ceecc91591" + "aac85f50-eef4-4eb1-80c7-3ca233b6eac7" ], "x-ms-correlation-request-id": [ - "b648deef-d7f8-4f79-8452-f2ceecc91591" + "aac85f50-eef4-4eb1-80c7-3ca233b6eac7" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170146Z:b648deef-d7f8-4f79-8452-f2ceecc91591" + "WESTUS:20150827T214302Z:aac85f50-eef4-4eb1-80c7-3ca233b6eac7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:01:45 GMT" + "Thu, 27 Aug 2015 21:43:02 GMT" ], "ETag": [ - "0x8D299008D8039F1" + "0x8D2AF287CE5A720" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b84828f7-dec7-4d93-93fd-42574a4da82a" + "a34ffa98-5047-4a1e-abe1-0b534bd7a919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14998" ], "x-ms-request-id": [ - "aa412460-0dd2-47ff-b671-f40ede81145a" + "0dcd2195-a98c-4d31-a28d-63b5303e997a" ], "x-ms-correlation-request-id": [ - "aa412460-0dd2-47ff-b671-f40ede81145a" + "0dcd2195-a98c-4d31-a28d-63b5303e997a" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170249Z:aa412460-0dd2-47ff-b671-f40ede81145a" + "WESTUS:20150827T214407Z:0dcd2195-a98c-4d31-a28d-63b5303e997a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D29900B2EAFF68" + "0x8D2AF28A35760FE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LjcPYhLUNjgOzrdNciMQS1TZJUoKgOrqhNYv9pbKdNn6GHMBuYwyt9dEx6uSdjzPV4U1N8RFm1EjiakXhq2hng==\",\r\n \"secondary\": \"Y8oHFA4f8afHXYmqwcvL2Bigg+GkjKhDBBUGGAEkGVoj77rskty8DnAqaqMpntUwQK+yEAJWbgfvoho5AfcM+w==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "c27d9ef3-3ea9-44cb-8c8d-3dc95bfbf3c2" + "c069cc09-15b4-4030-a44d-f63bab02cec7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "528a1ddd-577e-4dd3-ad1a-917acf86182d" + "2315a99d-c604-45f3-b816-229f03f121bb" ], "x-ms-correlation-request-id": [ - "528a1ddd-577e-4dd3-ad1a-917acf86182d" + "2315a99d-c604-45f3-b816-229f03f121bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170146Z:528a1ddd-577e-4dd3-ad1a-917acf86182d" + "WESTUS:20150827T214303Z:2315a99d-c604-45f3-b816-229f03f121bb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:01:45 GMT" + "Thu, 27 Aug 2015 21:43:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LjcPYhLUNjgOzrdNciMQS1TZJUoKgOrqhNYv9pbKdNn6GHMBuYwyt9dEx6uSdjzPV4U1N8RFm1EjiakXhq2hng==\",\r\n \"secondary\": \"Y8oHFA4f8afHXYmqwcvL2Bigg+GkjKhDBBUGGAEkGVoj77rskty8DnAqaqMpntUwQK+yEAJWbgfvoho5AfcM+w==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "c777d3e6-547a-4af2-8a69-7cd1c5bed991" + "bd4f5d12-788e-4528-88cd-a452e5f69f7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "b9534ea4-e916-4a01-bfc4-4f19de77daef" + "61869b83-ab78-46d0-a654-1eefc7077aea" ], "x-ms-correlation-request-id": [ - "b9534ea4-e916-4a01-bfc4-4f19de77daef" + "61869b83-ab78-46d0-a654-1eefc7077aea" ], "x-ms-routing-request-id": [ - "WESTUS:20150730T170249Z:b9534ea4-e916-4a01-bfc4-4f19de77daef" + "WESTUS:20150827T214407Z:61869b83-ab78-46d0-a654-1eefc7077aea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -349,10 +349,10 @@ "92" ], "client-request-id": [ - "1204c03b-4866-4647-961b-6ec5d85a48f2" + "788e78f3-e314-4403-b479-c1a0206f12a2" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:46 GMT" + "Thu, 27 Aug 2015 21:43:02 GMT" ], "return-client-request-id": [ "true" @@ -365,19 +365,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b79bc3ef-0c47-4f6c-a4ba-f480515012e7" + "cba4a738-d3e3-42cf-9379-d379de591c9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "1204c03b-4866-4647-961b-6ec5d85a48f2" + "788e78f3-e314-4403-b479-c1a0206f12a2" ], "DataServiceVersion": [ "3.0" @@ -386,10 +386,10 @@ "https://pstests.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:01:46 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008DD651C0" + "0x8D2AF287C1FF69C" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobs/job-1" @@ -413,10 +413,10 @@ "211" ], "client-request-id": [ - "6fb111a0-337f-4b60-98d6-843972841146" + "b209cd93-af2d-4dc0-9e4f-82a4579d6655" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "return-client-request-id": [ "true" @@ -429,19 +429,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "110a23fa-48fd-4f53-a796-4c48f565eebb" + "59d3eb5d-3f0b-46cd-8a14-3ddd4dd8e4b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6fb111a0-337f-4b60-98d6-843972841146" + "b209cd93-af2d-4dc0-9e4f-82a4579d6655" ], "DataServiceVersion": [ "3.0" @@ -450,10 +450,10 @@ "https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule" ], "Date": [ - "Thu, 30 Jul 2015 17:01:46 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule" @@ -477,10 +477,10 @@ "211" ], "client-request-id": [ - "6fb111a0-337f-4b60-98d6-843972841146" + "b209cd93-af2d-4dc0-9e4f-82a4579d6655" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "return-client-request-id": [ "true" @@ -493,19 +493,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "110a23fa-48fd-4f53-a796-4c48f565eebb" + "59d3eb5d-3f0b-46cd-8a14-3ddd4dd8e4b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6fb111a0-337f-4b60-98d6-843972841146" + "b209cd93-af2d-4dc0-9e4f-82a4579d6655" ], "DataServiceVersion": [ "3.0" @@ -514,10 +514,10 @@ "https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule" ], "Date": [ - "Thu, 30 Jul 2015 17:01:46 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Location": [ "https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule" @@ -535,10 +535,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "59cb1bf9-5111-441e-a075-53ade6128e0e" + "e90342a4-47ab-49b0-964d-b4c652cfd2ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "return-client-request-id": [ "true" @@ -548,34 +548,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53bcfa20-0aed-4b84-8e78-1e6cc8065e6e" + "5d0c832e-7e5d-4846-bc52-b29ab9c072fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "59cb1bf9-5111-441e-a075-53ade6128e0e" + "e90342a4-47ab-49b0-964d-b4c652cfd2ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -590,10 +590,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "59cb1bf9-5111-441e-a075-53ade6128e0e" + "e90342a4-47ab-49b0-964d-b4c652cfd2ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "return-client-request-id": [ "true" @@ -603,34 +603,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53bcfa20-0aed-4b84-8e78-1e6cc8065e6e" + "5d0c832e-7e5d-4846-bc52-b29ab9c072fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "59cb1bf9-5111-441e-a075-53ade6128e0e" + "e90342a4-47ab-49b0-964d-b4c652cfd2ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,10 +645,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "59cb1bf9-5111-441e-a075-53ade6128e0e" + "e90342a4-47ab-49b0-964d-b4c652cfd2ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "return-client-request-id": [ "true" @@ -658,34 +658,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "53bcfa20-0aed-4b84-8e78-1e6cc8065e6e" + "5d0c832e-7e5d-4846-bc52-b29ab9c072fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "59cb1bf9-5111-441e-a075-53ade6128e0e" + "e90342a4-47ab-49b0-964d-b4c652cfd2ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -700,10 +700,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -713,34 +713,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "77c3c47a-3196-4acc-bd97-84bc955b4cf1" + "d0739b73-fc90-416f-9972-81889e1d608b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -755,10 +755,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -768,34 +768,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "77c3c47a-3196-4acc-bd97-84bc955b4cf1" + "d0739b73-fc90-416f-9972-81889e1d608b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -810,10 +810,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -823,34 +823,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "77c3c47a-3196-4acc-bd97-84bc955b4cf1" + "d0739b73-fc90-416f-9972-81889e1d608b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -865,10 +865,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -878,34 +878,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "77c3c47a-3196-4acc-bd97-84bc955b4cf1" + "d0739b73-fc90-416f-9972-81889e1d608b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -920,10 +920,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -933,34 +933,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "77c3c47a-3196-4acc-bd97-84bc955b4cf1" + "d0739b73-fc90-416f-9972-81889e1d608b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "c33fb4e3-f043-4cfb-8316-6a695768e82a" + "fd521c65-f28d-4662-a96c-e7ea40811d73" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -975,10 +975,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "return-client-request-id": [ "true" @@ -988,34 +988,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c739cd9f-deaa-4de8-8a51-43e93d847c51" + "80ee1b10-3184-4b79-9f97-746958f1f7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1030,10 +1030,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "return-client-request-id": [ "true" @@ -1043,34 +1043,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c739cd9f-deaa-4de8-8a51-43e93d847c51" + "80ee1b10-3184-4b79-9f97-746958f1f7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1085,10 +1085,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "return-client-request-id": [ "true" @@ -1098,34 +1098,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c739cd9f-deaa-4de8-8a51-43e93d847c51" + "80ee1b10-3184-4b79-9f97-746958f1f7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1140,10 +1140,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "return-client-request-id": [ "true" @@ -1153,34 +1153,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c739cd9f-deaa-4de8-8a51-43e93d847c51" + "80ee1b10-3184-4b79-9f97-746958f1f7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1195,10 +1195,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "return-client-request-id": [ "true" @@ -1208,34 +1208,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c739cd9f-deaa-4de8-8a51-43e93d847c51" + "80ee1b10-3184-4b79-9f97-746958f1f7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1250,10 +1250,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "return-client-request-id": [ "true" @@ -1263,34 +1263,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c739cd9f-deaa-4de8-8a51-43e93d847c51" + "80ee1b10-3184-4b79-9f97-746958f1f7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3a919b8b-2008-40c7-848c-6104bc144e89" + "04ef23eb-fb69-4a1a-b98f-20ff4c70f42f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:52 GMT" + "Thu, 27 Aug 2015 21:43:09 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1305,10 +1305,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1318,34 +1318,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1360,10 +1360,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1373,34 +1373,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1415,10 +1415,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1428,34 +1428,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1470,10 +1470,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1483,34 +1483,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1525,10 +1525,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1538,34 +1538,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1580,10 +1580,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1593,34 +1593,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1635,10 +1635,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "return-client-request-id": [ "true" @@ -1648,34 +1648,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9f1ae9f7-f9ce-4a11-a4aa-78a7cb4dca97" + "82294121-0f92-44fe-9e49-9f353de3ff9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "2012b3da-6f32-47dc-9b39-b049ee364c71" + "70929a48-a903-4a77-ae20-ce66564ad6a8" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:01:57 GMT" + "Thu, 27 Aug 2015 21:43:14 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1690,10 +1690,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -1703,34 +1703,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1745,10 +1745,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -1758,34 +1758,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1800,10 +1800,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -1813,34 +1813,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1855,10 +1855,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -1868,34 +1868,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1910,10 +1910,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -1923,34 +1923,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1965,10 +1965,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -1978,34 +1978,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2020,10 +2020,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -2033,34 +2033,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2075,10 +2075,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "return-client-request-id": [ "true" @@ -2088,34 +2088,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5176ace8-3d8f-47b5-ad82-411a7ccbee23" + "baa4c465-e763-4c0a-8167-72431098ca28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "93013c93-c88a-43da-88dc-73b530e40e90" + "fa2f359b-8f30-4e7b-8b99-d99f656e1dd0" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:02 GMT" + "Thu, 27 Aug 2015 21:43:19 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2130,10 +2130,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2143,34 +2143,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2185,10 +2185,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2198,34 +2198,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2240,10 +2240,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2253,34 +2253,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2295,10 +2295,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2308,34 +2308,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2350,10 +2350,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2363,34 +2363,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2405,10 +2405,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2418,34 +2418,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2460,10 +2460,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2473,34 +2473,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2515,10 +2515,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2528,34 +2528,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2570,10 +2570,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "return-client-request-id": [ "true" @@ -2583,34 +2583,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ea9c0fee-2e50-4b01-8af9-8abb77fad440" + "dac96351-b14d-4e7e-a72a-b7c1a0ebffeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "0c98953e-987c-475b-98dc-88523d509ff9" + "79bd9b99-c916-40b5-88a0-170b57af5f59" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:07 GMT" + "Thu, 27 Aug 2015 21:43:24 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2625,10 +2625,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2638,34 +2638,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2680,10 +2680,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2693,34 +2693,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2735,10 +2735,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2748,34 +2748,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2790,10 +2790,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2803,34 +2803,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2845,10 +2845,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2858,34 +2858,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2900,10 +2900,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2913,34 +2913,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2955,10 +2955,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -2968,34 +2968,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3010,10 +3010,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -3023,34 +3023,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3065,10 +3065,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -3078,34 +3078,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3120,10 +3120,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:12 GMT" + "Thu, 27 Aug 2015 21:43:29 GMT" ], "return-client-request-id": [ "true" @@ -3133,34 +3133,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "70c8d190-2899-43aa-a73c-f10abe5b3507" + "8ed0f0fb-a831-4f6a-bebe-10bf18a49242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "feaff08b-66c4-4e0e-b9b2-f2bc449812f2" + "f1bc2fc1-0949-4e42-ae72-471e2b15e73b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:13 GMT" + "Thu, 27 Aug 2015 21:43:30 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3175,10 +3175,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3188,34 +3188,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3230,10 +3230,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3243,34 +3243,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3285,10 +3285,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3298,34 +3298,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3340,10 +3340,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3353,34 +3353,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3395,10 +3395,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3408,34 +3408,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3450,10 +3450,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3463,34 +3463,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3505,10 +3505,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3518,34 +3518,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3560,10 +3560,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3573,34 +3573,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3615,10 +3615,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3628,34 +3628,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3670,10 +3670,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3683,34 +3683,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3725,10 +3725,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:18 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "return-client-request-id": [ "true" @@ -3738,34 +3738,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7c6a3d2-2780-46c4-a026-b04e773d2438" + "0725050b-631a-4b2d-8a38-f863aa07826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4dc3e025-3219-4ff2-b5c7-b95b43839bd8" + "33c1b5af-84c6-4348-8a27-b48743ff46c5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:17 GMT" + "Thu, 27 Aug 2015 21:43:34 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3780,10 +3780,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -3793,34 +3793,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3835,10 +3835,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -3848,34 +3848,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3890,10 +3890,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -3903,34 +3903,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3945,10 +3945,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -3958,34 +3958,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4000,10 +4000,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4013,34 +4013,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4055,10 +4055,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4068,34 +4068,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4110,10 +4110,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4123,34 +4123,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4165,10 +4165,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4178,34 +4178,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4220,10 +4220,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4233,34 +4233,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4275,10 +4275,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4288,34 +4288,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4330,10 +4330,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4343,34 +4343,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4385,10 +4385,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:23 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "return-client-request-id": [ "true" @@ -4398,34 +4398,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab76ee7e-cda4-4ece-a01d-90a303d5c287" + "58badf8a-0c15-4c48-b87d-840d07f9b313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "58f7da0a-d1cb-4fa2-abff-8d3afd24e820" + "a7e8cba4-8447-4e8e-849d-72f6ad69694b" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:22 GMT" + "Thu, 27 Aug 2015 21:43:39 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4440,10 +4440,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4453,34 +4453,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4495,10 +4495,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4508,34 +4508,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4550,10 +4550,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4563,34 +4563,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4605,10 +4605,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4618,34 +4618,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4660,10 +4660,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4673,34 +4673,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4715,10 +4715,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4728,34 +4728,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4770,10 +4770,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4783,34 +4783,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4825,10 +4825,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4838,34 +4838,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4880,10 +4880,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4893,34 +4893,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4935,10 +4935,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -4948,34 +4948,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4990,10 +4990,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -5003,34 +5003,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5045,10 +5045,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -5058,34 +5058,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5100,10 +5100,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:28 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "return-client-request-id": [ "true" @@ -5113,34 +5113,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "621b3ec8-f5fe-48ac-8bab-0cc858e43d45" + "a2619f54-4c03-4df5-8fce-7cceb9770d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "4079db00-54c1-4938-9852-c791e7be2686" + "167a5d53-b7c1-4a5b-a172-b2d8748a8c45" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:27 GMT" + "Thu, 27 Aug 2015 21:43:45 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5155,10 +5155,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5168,34 +5168,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5210,10 +5210,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5223,34 +5223,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5265,10 +5265,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5278,34 +5278,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5320,10 +5320,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5333,34 +5333,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5375,10 +5375,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5388,34 +5388,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5430,10 +5430,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5443,34 +5443,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5485,10 +5485,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5498,34 +5498,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5540,10 +5540,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5553,34 +5553,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5595,10 +5595,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5608,34 +5608,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5650,10 +5650,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5663,34 +5663,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5705,10 +5705,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5718,34 +5718,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5760,10 +5760,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5773,34 +5773,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5815,10 +5815,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5828,34 +5828,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5870,10 +5870,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:33 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "return-client-request-id": [ "true" @@ -5883,34 +5883,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dcfba2aa-0d81-421c-90e5-835714b6e977" + "50e92fcd-b2a0-4345-9923-07b5e01df62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac6c95fd-d631-4a3f-a599-1c38b3651a0c" + "39cbcfd4-f72b-46f4-abaf-70a6fb062083" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:32 GMT" + "Thu, 27 Aug 2015 21:43:50 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5925,10 +5925,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -5938,34 +5938,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5980,10 +5980,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -5993,34 +5993,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6035,10 +6035,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6048,34 +6048,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6090,10 +6090,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6103,34 +6103,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6145,10 +6145,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6158,34 +6158,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6200,10 +6200,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6213,34 +6213,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6255,10 +6255,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6268,34 +6268,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6310,10 +6310,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6323,34 +6323,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6365,10 +6365,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6378,34 +6378,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6420,10 +6420,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6433,34 +6433,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6475,10 +6475,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6488,34 +6488,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6530,10 +6530,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6543,34 +6543,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6585,10 +6585,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6598,34 +6598,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6640,10 +6640,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6653,34 +6653,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6695,10 +6695,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:38 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "return-client-request-id": [ "true" @@ -6708,34 +6708,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c2a8c4af-99f6-45c0-a8f9-7e289832a06e" + "3585bf41-2301-4df2-922c-965dee582e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "6417789d-d4ee-4d47-93ea-575c1a65f2e7" + "f6a846ff-1b53-42eb-8db5-b824f103137f" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:37 GMT" + "Thu, 27 Aug 2015 21:43:55 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6750,10 +6750,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -6763,34 +6763,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6805,10 +6805,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -6818,34 +6818,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6860,10 +6860,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -6873,34 +6873,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6915,10 +6915,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -6928,34 +6928,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6970,10 +6970,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -6983,34 +6983,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7025,10 +7025,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7038,34 +7038,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7080,10 +7080,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7093,34 +7093,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7135,10 +7135,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7148,34 +7148,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7190,10 +7190,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7203,34 +7203,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7245,10 +7245,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7258,34 +7258,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7300,10 +7300,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7313,34 +7313,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7355,10 +7355,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7368,34 +7368,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7410,10 +7410,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7423,34 +7423,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7465,10 +7465,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7478,34 +7478,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7520,10 +7520,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7533,34 +7533,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7575,10 +7575,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "return-client-request-id": [ "true" @@ -7588,34 +7588,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:02:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:44:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"id\": \"testJobSchedule:job-1\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1f05c23-a43a-4f76-9c2d-2d16676c5861" + "5cf8b8cc-9deb-4c5c-920d-683f7e6a9f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "de988e85-be08-4e54-b505-c702b5b71a47" + "6312b8cd-eeb3-4b67-9518-7f9839626f84" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:43 GMT" + "Thu, 27 Aug 2015 21:44:00 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7630,10 +7630,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7643,34 +7643,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7685,10 +7685,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7698,34 +7698,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7740,10 +7740,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7753,34 +7753,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7795,10 +7795,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7808,34 +7808,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7850,10 +7850,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7863,34 +7863,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7905,10 +7905,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7918,34 +7918,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7960,10 +7960,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -7973,34 +7973,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8015,10 +8015,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8028,34 +8028,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8070,10 +8070,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8083,34 +8083,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8125,10 +8125,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8138,34 +8138,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8180,10 +8180,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8193,34 +8193,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8235,10 +8235,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8248,34 +8248,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8290,10 +8290,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8303,34 +8303,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8345,10 +8345,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8358,34 +8358,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8400,10 +8400,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8413,34 +8413,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8455,10 +8455,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8468,34 +8468,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8510,10 +8510,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:48 GMT" + "Thu, 27 Aug 2015 21:44:05 GMT" ], "return-client-request-id": [ "true" @@ -8523,34 +8523,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "20a3d0c1-9469-4c94-b65b-61054a83fb8a" + "7da303bb-5625-4463-958d-295972532764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "dffe28ec-82f3-43d5-9e5f-8a482e7749bd" + "d4cdaad6-8a51-439d-84dc-b5dbda9ff866" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:47 GMT" + "Thu, 27 Aug 2015 21:44:06 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8565,10 +8565,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "702b08f3-d97a-4e1b-9c13-93f96b0d8f00" + "720ecd9f-17b0-40f6-ae7b-36b86267190e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "return-client-request-id": [ "true" @@ -8578,34 +8578,34 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D299008DF7C86C\",\r\n \"lastModified\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.3537132Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-30T17:03:47.3537132Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testJobSchedule\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobschedules/testJobSchedule\",\r\n \"eTag\": \"0x8D2AF287C499EE2\",\r\n \"lastModified\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.1413474Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-08-27T21:45:03.1413474Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"id\": \"testJobSchedule:job-2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "82c60d69-7e9b-4970-971c-ff8d0072332f" + "cda466ae-3ba2-4742-b571-8657f5bd0ed6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "702b08f3-d97a-4e1b-9c13-93f96b0d8f00" + "720ecd9f-17b0-40f6-ae7b-36b86267190e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "ETag": [ - "0x8D299008DF7C86C" + "0x8D2AF287C499EE2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8626,10 +8626,10 @@ "2" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -8642,19 +8642,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5cab3ae2-97fc-4bcd-a36e-1e4698fe5432" + "1fb6b18b-2dc6-43b7-8468-7d25f0d6c125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "DataServiceVersion": [ "3.0" @@ -8663,10 +8663,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008E2AE5B5" + "0x8D2AF287C89377A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8687,10 +8687,10 @@ "2" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -8703,19 +8703,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5cab3ae2-97fc-4bcd-a36e-1e4698fe5432" + "1fb6b18b-2dc6-43b7-8468-7d25f0d6c125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "DataServiceVersion": [ "3.0" @@ -8724,10 +8724,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008E2AE5B5" + "0x8D2AF287C89377A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8748,10 +8748,10 @@ "2" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -8764,19 +8764,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5cab3ae2-97fc-4bcd-a36e-1e4698fe5432" + "1fb6b18b-2dc6-43b7-8468-7d25f0d6c125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "DataServiceVersion": [ "3.0" @@ -8785,10 +8785,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008E2AE5B5" + "0x8D2AF287C89377A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8809,10 +8809,10 @@ "2" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:04 GMT" ], "return-client-request-id": [ "true" @@ -8825,19 +8825,19 @@ "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5cab3ae2-97fc-4bcd-a36e-1e4698fe5432" + "1fb6b18b-2dc6-43b7-8468-7d25f0d6c125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ac54c311-faac-4f7e-ac1e-ff79689bb3db" + "f738c690-7782-4483-b436-765d24a68803" ], "DataServiceVersion": [ "3.0" @@ -8846,10 +8846,10 @@ "https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1" ], "Date": [ - "Thu, 30 Jul 2015 17:01:47 GMT" + "Thu, 27 Aug 2015 21:43:03 GMT" ], "ETag": [ - "0x8D299008E2AE5B5" + "0x8D2AF287C89377A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8864,10 +8864,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fffd4124-6dfe-4efd-bfa5-1d8948a830e8" + "f1026cd9-9c91-4361-8a55-ab1d0d5d3a1c" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "return-client-request-id": [ "true" @@ -8877,7 +8877,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"runOnceId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/runOnceId\",\r\n \"eTag\": \"0x8D299008DD651C0\",\r\n \"lastModified\": \"2015-07-30T17:01:47.1344064Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.115397Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.1344064Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.1344064Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"runOnceId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/runOnceId\",\r\n \"eTag\": \"0x8D2AF287C1FF69C\",\r\n \"lastModified\": \"2015-08-27T21:43:02.868342Z\",\r\n \"creationTime\": \"2015-08-27T21:43:02.8523347Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:02.868342Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:02.868342Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -8886,19 +8886,19 @@ "chunked" ], "request-id": [ - "8e1e6dd9-2e42-4eb2-9fcd-51748282c68a" + "4ccbee59-baf4-457e-bfee-55237d75a29f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fffd4124-6dfe-4efd-bfa5-1d8948a830e8" + "f1026cd9-9c91-4361-8a55-ab1d0d5d3a1c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8913,10 +8913,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fffd4124-6dfe-4efd-bfa5-1d8948a830e8" + "f1026cd9-9c91-4361-8a55-ab1d0d5d3a1c" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "return-client-request-id": [ "true" @@ -8926,7 +8926,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"runOnceId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/runOnceId\",\r\n \"eTag\": \"0x8D299008DD651C0\",\r\n \"lastModified\": \"2015-07-30T17:01:47.1344064Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.115397Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:47.1344064Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.1344064Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"runOnceId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/runOnceId\",\r\n \"eTag\": \"0x8D2AF287C1FF69C\",\r\n \"lastModified\": \"2015-08-27T21:43:02.868342Z\",\r\n \"creationTime\": \"2015-08-27T21:43:02.8523347Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:02.868342Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:02.868342Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -8935,19 +8935,19 @@ "chunked" ], "request-id": [ - "8e1e6dd9-2e42-4eb2-9fcd-51748282c68a" + "4ccbee59-baf4-457e-bfee-55237d75a29f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "fffd4124-6dfe-4efd-bfa5-1d8948a830e8" + "f1026cd9-9c91-4361-8a55-ab1d0d5d3a1c" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8962,10 +8962,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3d7cc387-5fda-44f5-b107-ca0ff6b50a38" + "44a558a1-9581-4436-a6f5-2720dd30aeb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -8975,7 +8975,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -8984,19 +8984,19 @@ "chunked" ], "request-id": [ - "0517376b-8710-45d2-b377-a019a6e84882" + "1fa63b19-c47c-45e2-acdc-14a3c53686b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3d7cc387-5fda-44f5-b107-ca0ff6b50a38" + "44a558a1-9581-4436-a6f5-2720dd30aeb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9011,10 +9011,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3d7cc387-5fda-44f5-b107-ca0ff6b50a38" + "44a558a1-9581-4436-a6f5-2720dd30aeb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9024,7 +9024,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9033,19 +9033,19 @@ "chunked" ], "request-id": [ - "0517376b-8710-45d2-b377-a019a6e84882" + "1fa63b19-c47c-45e2-acdc-14a3c53686b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3d7cc387-5fda-44f5-b107-ca0ff6b50a38" + "44a558a1-9581-4436-a6f5-2720dd30aeb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9060,10 +9060,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3d7cc387-5fda-44f5-b107-ca0ff6b50a38" + "44a558a1-9581-4436-a6f5-2720dd30aeb5" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9073,7 +9073,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9082,19 +9082,19 @@ "chunked" ], "request-id": [ - "0517376b-8710-45d2-b377-a019a6e84882" + "1fa63b19-c47c-45e2-acdc-14a3c53686b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "3d7cc387-5fda-44f5-b107-ca0ff6b50a38" + "44a558a1-9581-4436-a6f5-2720dd30aeb5" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9109,10 +9109,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9122,7 +9122,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9131,19 +9131,19 @@ "chunked" ], "request-id": [ - "b4b0ea5d-f28e-4737-9de1-d2b31724ebdf" + "2cf152db-5439-460a-91a4-486d12264bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9158,10 +9158,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9171,7 +9171,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9180,19 +9180,19 @@ "chunked" ], "request-id": [ - "b4b0ea5d-f28e-4737-9de1-d2b31724ebdf" + "2cf152db-5439-460a-91a4-486d12264bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9207,10 +9207,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9220,7 +9220,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9229,19 +9229,19 @@ "chunked" ], "request-id": [ - "b4b0ea5d-f28e-4737-9de1-d2b31724ebdf" + "2cf152db-5439-460a-91a4-486d12264bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9256,10 +9256,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9269,7 +9269,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D29900B1BD82FB\",\r\n \"lastModified\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"creationTime\": \"2015-07-30T17:02:47.3538392Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:02:47.3698043Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-2\",\r\n \"eTag\": \"0x8D2AF28A00F6CCA\",\r\n \"lastModified\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"creationTime\": \"2015-08-27T21:44:03.1419342Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:44:03.1579338Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9278,19 +9278,19 @@ "chunked" ], "request-id": [ - "b4b0ea5d-f28e-4737-9de1-d2b31724ebdf" + "2cf152db-5439-460a-91a4-486d12264bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bcf0553b-fcdf-4196-843d-74cba1fb1339" + "6ccec73e-0efa-40f3-b472-63e8c826c992" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9305,10 +9305,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9318,7 +9318,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9327,19 +9327,19 @@ "chunked" ], "request-id": [ - "2efc964c-117f-4788-8b74-1d7a98294e3e" + "0c8a456e-90c6-44d2-a683-7ec341c20a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9354,10 +9354,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9367,7 +9367,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9376,19 +9376,19 @@ "chunked" ], "request-id": [ - "2efc964c-117f-4788-8b74-1d7a98294e3e" + "0c8a456e-90c6-44d2-a683-7ec341c20a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9403,10 +9403,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9416,7 +9416,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9425,19 +9425,19 @@ "chunked" ], "request-id": [ - "2efc964c-117f-4788-8b74-1d7a98294e3e" + "0c8a456e-90c6-44d2-a683-7ec341c20a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9452,10 +9452,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9465,7 +9465,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9474,19 +9474,19 @@ "chunked" ], "request-id": [ - "2efc964c-117f-4788-8b74-1d7a98294e3e" + "0c8a456e-90c6-44d2-a683-7ec341c20a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9501,10 +9501,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9514,7 +9514,7 @@ "AzBatch/2.0.1.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D299008E2AE5B5\",\r\n \"lastModified\": \"2015-07-30T17:01:47.6886965Z\",\r\n \"creationTime\": \"2015-07-30T17:01:47.4066684Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-30T17:01:47.4256695Z\",\r\n \"endTime\": \"2015-07-30T17:01:48.3828629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobSchedule:job-1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testJobSchedule:job-1\",\r\n \"eTag\": \"0x8D2AF287C89377A\",\r\n \"lastModified\": \"2015-08-27T21:43:03.5581306Z\",\r\n \"creationTime\": \"2015-08-27T21:43:03.2219855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T21:43:03.2450308Z\",\r\n \"endTime\": \"2015-08-27T21:43:03.5981618Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -9523,19 +9523,19 @@ "chunked" ], "request-id": [ - "2efc964c-117f-4788-8b74-1d7a98294e3e" + "0c8a456e-90c6-44d2-a683-7ec341c20a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "a67d6702-f147-43a0-be53-4c7da31b8e4f" + "d4d766b7-9fdb-42e8-90cd-8ef14217c2d7" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:49 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9550,10 +9550,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9569,19 +9569,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9596,10 +9596,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9615,19 +9615,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9642,10 +9642,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9661,19 +9661,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9688,10 +9688,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9707,19 +9707,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9734,10 +9734,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9753,19 +9753,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9780,10 +9780,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9799,19 +9799,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9826,10 +9826,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9845,19 +9845,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9872,10 +9872,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9891,19 +9891,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9918,10 +9918,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9937,19 +9937,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9964,10 +9964,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -9983,19 +9983,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10010,10 +10010,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10029,19 +10029,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10056,10 +10056,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10075,19 +10075,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10102,10 +10102,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10121,19 +10121,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10148,10 +10148,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10167,19 +10167,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10194,10 +10194,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10213,19 +10213,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10240,10 +10240,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10259,19 +10259,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10286,10 +10286,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10305,19 +10305,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10332,10 +10332,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10351,19 +10351,19 @@ "chunked" ], "request-id": [ - "5b794799-0200-4c91-a599-8580086f3854" + "d7424307-896e-4861-8081-67bdd285760e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "ae2c5b42-6bae-40a4-a60d-16f99b1d6e4f" + "8fb36203-9226-4cb1-b617-b0f01fd3199d" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10378,10 +10378,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10397,19 +10397,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10424,10 +10424,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10443,19 +10443,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10470,10 +10470,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10489,19 +10489,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10516,10 +10516,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10535,19 +10535,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10562,10 +10562,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10581,19 +10581,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10608,10 +10608,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10627,19 +10627,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10654,10 +10654,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10673,19 +10673,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10700,10 +10700,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10719,19 +10719,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10746,10 +10746,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10765,19 +10765,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10792,10 +10792,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10811,19 +10811,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10838,10 +10838,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10857,19 +10857,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10884,10 +10884,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10903,19 +10903,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10930,10 +10930,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10949,19 +10949,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -10976,10 +10976,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -10995,19 +10995,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11022,10 +11022,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -11041,19 +11041,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11068,10 +11068,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -11087,19 +11087,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11114,10 +11114,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -11133,19 +11133,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11160,10 +11160,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -11179,19 +11179,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11206,10 +11206,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "return-client-request-id": [ "true" @@ -11225,19 +11225,19 @@ "chunked" ], "request-id": [ - "be4805d0-b20b-4955-bfe1-b0da4fde64bd" + "7e64d9ae-4aac-4b36-b85a-7fd43d26a380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "9312a52a-e46c-4042-adda-bba9b10577b4" + "65c573af-6b58-47b8-8819-ad2963445911" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11252,10 +11252,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11271,19 +11271,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11298,10 +11298,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11317,19 +11317,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11344,10 +11344,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11363,19 +11363,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11390,10 +11390,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11409,19 +11409,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11436,10 +11436,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11455,19 +11455,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11482,10 +11482,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11501,19 +11501,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11528,10 +11528,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11547,19 +11547,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11574,10 +11574,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11593,19 +11593,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11620,10 +11620,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11639,19 +11639,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11666,10 +11666,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11685,19 +11685,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11712,10 +11712,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11731,19 +11731,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11758,10 +11758,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11777,19 +11777,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11804,10 +11804,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11823,19 +11823,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11850,10 +11850,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11869,19 +11869,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11896,10 +11896,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11915,19 +11915,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11942,10 +11942,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -11961,19 +11961,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11988,10 +11988,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12007,19 +12007,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12034,10 +12034,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12053,19 +12053,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12080,10 +12080,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12099,19 +12099,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12126,10 +12126,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12145,19 +12145,19 @@ "chunked" ], "request-id": [ - "7fbe9502-0ab0-4f92-b3ee-79a6b13ee0d8" + "c516c0bc-a71d-40de-b7f1-594a2aa02917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "bc40924b-8295-4a79-8e28-15fb43cd33af" + "24b16732-3f7b-437b-90b9-8e12e5f4a8ab" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12172,10 +12172,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12191,19 +12191,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12218,10 +12218,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12237,19 +12237,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12264,10 +12264,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12283,19 +12283,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12310,10 +12310,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12329,19 +12329,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12356,10 +12356,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12375,19 +12375,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12402,10 +12402,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12421,19 +12421,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12448,10 +12448,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12467,19 +12467,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12494,10 +12494,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12513,19 +12513,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12540,10 +12540,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12559,19 +12559,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12586,10 +12586,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12605,19 +12605,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12632,10 +12632,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12651,19 +12651,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12678,10 +12678,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12697,19 +12697,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12724,10 +12724,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12743,19 +12743,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12770,10 +12770,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12789,19 +12789,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12816,10 +12816,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12835,19 +12835,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12862,10 +12862,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12881,19 +12881,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12908,10 +12908,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12927,19 +12927,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -12954,10 +12954,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -12973,19 +12973,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -13000,10 +13000,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -13019,19 +13019,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -13046,10 +13046,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -13065,19 +13065,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -13092,10 +13092,10 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "ocp-date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "return-client-request-id": [ "true" @@ -13111,19 +13111,19 @@ "chunked" ], "request-id": [ - "5f68c7e8-c231-4906-91e9-4812124aa35d" + "1527cea5-8540-4b74-8efb-ba81963af106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "client-request-id": [ - "f992e9b7-b459-4fb4-b038-b998ee11898a" + "1b0b9c05-16f6-4341-9459-5f58a0ad7c0e" ], "DataServiceVersion": [ "3.0" ], "Date": [ - "Thu, 30 Jul 2015 17:02:50 GMT" + "Thu, 27 Aug 2015 21:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json new file mode 100644 index 000000000000..0403eab202e1 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobById.json @@ -0,0 +1,671 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "71ceb868-bd93-46f3-86f4-515a775f60f2" + ], + "x-ms-correlation-request-id": [ + "71ceb868-bd93-46f3-86f4-515a775f60f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194359Z:71ceb868-bd93-46f3-86f4-515a775f60f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:43:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "ae2534b7-15b1-4f15-8c82-954e59f855f9" + ], + "x-ms-correlation-request-id": [ + "ae2534b7-15b1-4f15-8c82-954e59f855f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194403Z:ae2534b7-15b1-4f15-8c82-954e59f855f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "64dd9eba-8102-4032-a030-18b309112218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "105957f0-26b2-481c-8bf0-ccb68ccc25e7" + ], + "x-ms-correlation-request-id": [ + "105957f0-26b2-481c-8bf0-ccb68ccc25e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194400Z:105957f0-26b2-481c-8bf0-ccb68ccc25e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:00 GMT" + ], + "ETag": [ + "0x8D2AF17DAD2A9D6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "77494996-4ffc-4890-a34b-ff7a3b9bc400" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "50e47bb7-dd9d-4c2e-82e2-86b2950410ad" + ], + "x-ms-correlation-request-id": [ + "50e47bb7-dd9d-4c2e-82e2-86b2950410ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194403Z:50e47bb7-dd9d-4c2e-82e2-86b2950410ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "ETag": [ + "0x8D2AF17DC8B3FC7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "fd9b5ad2-b8ba-4330-96e1-a75db9b070a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "64c7908e-1092-4be2-a213-f24b66d0568f" + ], + "x-ms-correlation-request-id": [ + "64c7908e-1092-4be2-a213-f24b66d0568f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194400Z:64c7908e-1092-4be2-a213-f24b66d0568f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "1b813c04-f6de-4d8e-97aa-27dc8143aaab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "4b898804-a33e-48ce-bfb1-1af9953e61c7" + ], + "x-ms-correlation-request-id": [ + "4b898804-a33e-48ce-bfb1-1af9953e61c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194403Z:4b898804-a33e-48ce-bfb1-1af9953e61c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTerminateJobId\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "101" + ], + "client-request-id": [ + "02c2261a-4d7f-4044-8a84-59e2838d302a" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:00 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "516462b1-28a0-4b9a-8f9e-234fc659f4c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "02c2261a-4d7f-4044-8a84-59e2838d302a" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/job-1" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:00 GMT" + ], + "ETag": [ + "0x8D2AF17DB35D1B7" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/job-1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateJobId?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"terminateReason\": \"test\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "33" + ], + "client-request-id": [ + "e990075b-a909-4132-96f5-335b1ac34064" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "81d2e54c-3e3c-4c32-ab79-9cfa960dfdb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "e990075b-a909-4132-96f5-335b1ac34064" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateJobId" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "ETag": [ + "0x8D2AF17DCA95737" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateJobId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ec890e66-d809-4829-b910-5744b7503b59" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobId\",\r\n \"eTag\": \"0x8D2AF17DCA95737\",\r\n \"lastModified\": \"2015-08-27T19:44:03.3855287Z\",\r\n \"creationTime\": \"2015-08-27T19:44:00.9211168Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:44:03.4215206Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:44:00.9507255Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T19:44:00.9507255Z\",\r\n \"endTime\": \"2015-08-27T19:44:03.4215206Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "36fb3159-042d-4fc5-8954-6198f2078753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ec890e66-d809-4829-b910-5744b7503b59" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "ETag": [ + "0x8D2AF17DCA95737" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateJobId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ec890e66-d809-4829-b910-5744b7503b59" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobId\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobId\",\r\n \"eTag\": \"0x8D2AF17DCA95737\",\r\n \"lastModified\": \"2015-08-27T19:44:03.3855287Z\",\r\n \"creationTime\": \"2015-08-27T19:44:00.9211168Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:44:03.4215206Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:44:00.9507255Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T19:44:00.9507255Z\",\r\n \"endTime\": \"2015-08-27T19:44:03.4215206Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:03 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "36fb3159-042d-4fc5-8954-6198f2078753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "ec890e66-d809-4829-b910-5744b7503b59" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "ETag": [ + "0x8D2AF17DCA95737" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateJobId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2edda85e-b3c4-4e8c-9180-f1e5d8d7a822" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b29a0f94-7ed6-498d-a3de-c52f6c672fd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2edda85e-b3c4-4e8c-9180-f1e5d8d7a822" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateJobId?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYklkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2edda85e-b3c4-4e8c-9180-f1e5d8d7a822" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b29a0f94-7ed6-498d-a3de-c52f6c672fd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2edda85e-b3c4-4e8c-9180-f1e5d8d7a822" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json new file mode 100644 index 000000000000..e170bcd991c8 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestTerminateJobPipeline.json @@ -0,0 +1,842 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "99a67c46-14a6-4a63-a98c-96d8df6d72a6" + ], + "x-ms-correlation-request-id": [ + "99a67c46-14a6-4a63-a98c-96d8df6d72a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194424Z:99a67c46-14a6-4a63-a98c-96d8df6d72a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "e5254a6a-023f-4804-877c-fdb27ffd3d33" + ], + "x-ms-correlation-request-id": [ + "e5254a6a-023f-4804-877c-fdb27ffd3d33" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194426Z:e5254a6a-023f-4804-877c-fdb27ffd3d33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "e74eb81e-e002-44d0-9de7-58a0a61bfef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "944de566-4001-4695-81ca-29771242fdc3" + ], + "x-ms-correlation-request-id": [ + "944de566-4001-4695-81ca-29771242fdc3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194425Z:944de566-4001-4695-81ca-29771242fdc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:25 GMT" + ], + "ETag": [ + "0x8D2AF17EAA2A7F6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "7c069a96-9243-41bd-a04b-3e65d3cbb8de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "74b0bcb9-fd61-45d6-8d0a-fde08c87ea0f" + ], + "x-ms-correlation-request-id": [ + "74b0bcb9-fd61-45d6-8d0a-fde08c87ea0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194426Z:74b0bcb9-fd61-45d6-8d0a-fde08c87ea0f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17EB51182D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "d2523c87-a55f-495d-9c80-9123d9e20ec2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c55ab95a-f2f0-4c97-bec1-1b1601ca0788" + ], + "x-ms-correlation-request-id": [ + "c55ab95a-f2f0-4c97-bec1-1b1601ca0788" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194425Z:c55ab95a-f2f0-4c97-bec1-1b1601ca0788" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "58168e19-182e-44d0-a485-0ca8fc1ac2ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "e07a6b71-4ced-46eb-9514-280206002fcd" + ], + "x-ms-correlation-request-id": [ + "e07a6b71-4ced-46eb-9514-280206002fcd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150827T194426Z:e07a6b71-4ced-46eb-9514-280206002fcd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "107" + ], + "client-request-id": [ + "d7eb2e09-1458-4d2f-902d-2641146b758f" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:25 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "22dcd5ee-bae6-4694-8aae-bdce7a6e07c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d7eb2e09-1458-4d2f-902d-2641146b758f" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/job-1" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17E9C767E0" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/job-1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0afec69b-4b97-4757-bf1d-29ec4367bdd0" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D2AF17E9C767E0\",\r\n \"lastModified\": \"2015-08-27T19:44:25.392944Z\",\r\n \"creationTime\": \"2015-08-27T19:44:25.3719131Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "76f1e82b-6eec-4abd-885b-c9bc73de1e36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "0afec69b-4b97-4757-bf1d-29ec4367bdd0" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17E9C767E0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2d368377-b620-4d80-b45c-fc35b9cad64d" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D2AF17EA7B5738\",\r\n \"lastModified\": \"2015-08-27T19:44:26.5721656Z\",\r\n \"creationTime\": \"2015-08-27T19:44:25.3719131Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:44:26.6081629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"endTime\": \"2015-08-27T19:44:26.6081629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e5be6832-8170-40ca-8641-79bf731eae79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2d368377-b620-4d80-b45c-fc35b9cad64d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17EA7B5738" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2d368377-b620-4d80-b45c-fc35b9cad64d" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D2AF17EA7B5738\",\r\n \"lastModified\": \"2015-08-27T19:44:26.5721656Z\",\r\n \"creationTime\": \"2015-08-27T19:44:25.3719131Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:44:26.6081629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"endTime\": \"2015-08-27T19:44:26.6081629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e5be6832-8170-40ca-8641-79bf731eae79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2d368377-b620-4d80-b45c-fc35b9cad64d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17EA7B5738" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2d368377-b620-4d80-b45c-fc35b9cad64d" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testTerminateJobPipeline\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateJobPipeline\",\r\n \"eTag\": \"0x8D2AF17EA7B5738\",\r\n \"lastModified\": \"2015-08-27T19:44:26.5721656Z\",\r\n \"creationTime\": \"2015-08-27T19:44:25.3719131Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:44:26.6081629Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"priority\": 0,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-08-27T19:44:25.392944Z\",\r\n \"endTime\": \"2015-08-27T19:44:26.6081629Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"test\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e5be6832-8170-40ca-8641-79bf731eae79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2d368377-b620-4d80-b45c-fc35b9cad64d" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17EA7B5738" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"terminateReason\": \"test\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "33" + ], + "client-request-id": [ + "06d8b997-37f8-4aa4-b50a-87864c5b64ee" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c41b3b40-5f3b-488e-8854-a62ec5b3935f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "06d8b997-37f8-4aa4-b50a-87864c5b64ee" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateJobPipeline" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17EA7B5738" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"terminateReason\": \"test\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "33" + ], + "client-request-id": [ + "06d8b997-37f8-4aa4-b50a-87864c5b64ee" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "c41b3b40-5f3b-488e-8854-a62ec5b3935f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "06d8b997-37f8-4aa4-b50a-87864c5b64ee" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateJobPipeline" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:26 GMT" + ], + "ETag": [ + "0x8D2AF17EA7B5738" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2cfc953e-5efe-4d8b-b7d0-719cfed6ca36" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "15973c5f-c0e6-49d8-a861-9d359ea8645d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2cfc953e-5efe-4d8b-b7d0-719cfed6ca36" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateJobPipeline?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZUpvYlBpcGVsaW5lP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2cfc953e-5efe-4d8b-b7d0-719cfed6ca36" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:44:27 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "15973c5f-c0e6-49d8-a861-9d359ea8645d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "2cfc953e-5efe-4d8b-b7d0-719cfed6ca36" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:44:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/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 new file mode 100644 index 000000000000..a59b12f273df --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json @@ -0,0 +1,1438 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "5df4de37-23f0-4467-afcd-a121db352f9d" + ], + "x-ms-correlation-request-id": [ + "5df4de37-23f0-4467-afcd-a121db352f9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T195329Z:5df4de37-23f0-4467-afcd-a121db352f9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatchtest\",\r\n \"name\": \"jaschneibatchtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "c3bb12ce-58d7-47fa-8eaf-2fbeace5f3c6" + ], + "x-ms-correlation-request-id": [ + "c3bb12ce-58d7-47fa-8eaf-2fbeace5f3c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T195332Z:c3bb12ce-58d7-47fa-8eaf-2fbeace5f3c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "72a0931f-56c5-419f-b7a6-113414a9c2f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "812dbf77-4aa4-41ac-8bdb-b54fb0b3e320" + ], + "x-ms-correlation-request-id": [ + "812dbf77-4aa4-41ac-8bdb-b54fb0b3e320" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T195330Z:812dbf77-4aa4-41ac-8bdb-b54fb0b3e320" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:30 GMT" + ], + "ETag": [ + "0x8D2AF192E99C6B7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "2b06c585-8559-455f-891e-d62e19ee534c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "e76ec303-d4a4-4a10-9e5d-a37edc2d2f92" + ], + "x-ms-correlation-request-id": [ + "e76ec303-d4a4-4a10-9e5d-a37edc2d2f92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T195332Z:e76ec303-d4a4-4a10-9e5d-a37edc2d2f92" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF192FE94FD9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "26a7c725-784c-461e-a944-04966992dc15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "3cc703fb-b4da-4f38-9b07-edef4df177e1" + ], + "x-ms-correlation-request-id": [ + "3cc703fb-b4da-4f38-9b07-edef4df177e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T195330Z:3cc703fb-b4da-4f38-9b07-edef4df177e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:30 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"XXFZ+jAijJoB8YsqvHU7t0es8xUSVpgCoQ2sK1MxOWPFiMkBl1NhQ2TdzkmA9dH3YfXTaE26kMRRvYG1gax9gw==\",\r\n \"secondary\": \"Wk38jkxm7UKVR3Yp7x5IhHvPdLuzOEwVEXlwrF9DvTp0YhkP8zvG0Kc0BM4kMJP0wu9IEOHMwklmykjgikTchg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "fba41a93-4865-4bf3-847e-8e5409bdab5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "4990ef94-d9ad-4bbd-9fde-a395362050f7" + ], + "x-ms-correlation-request-id": [ + "4990ef94-d9ad-4bbd-9fde-a395362050f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150827T195333Z:4990ef94-d9ad-4bbd-9fde-a395362050f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTerminateTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "103" + ], + "client-request-id": [ + "3a1f59e6-a44b-4a73-b99e-88ddf7853fba" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:30 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:30 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "1535612d-cd2c-494b-b104-abbc72e91ad7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3a1f59e6-a44b-4a73-b99e-88ddf7853fba" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/job-1" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF192EE24E88" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/job-1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "84" + ], + "client-request-id": [ + "1bec9ca4-5dd3-4116-b196-8178c630bd02" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "300aaf63-ea61-4185-88b6-104a4ec3064c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1bec9ca4-5dd3-4116-b196-8178c630bd02" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF192FE222B5" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "84" + ], + "client-request-id": [ + "1bec9ca4-5dd3-4116-b196-8178c630bd02" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "300aaf63-ea61-4185-88b6-104a4ec3064c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "1bec9ca4-5dd3-4116-b196-8178c630bd02" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF192FE222B5" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "84" + ], + "client-request-id": [ + "7dc1de96-a23b-416a-be7f-1a859fed1791" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f8efdcbd-a2e2-4446-b350-41f06906a959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7dc1de96-a23b-416a-be7f-1a859fed1791" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF193008482D" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "84" + ], + "client-request-id": [ + "7dc1de96-a23b-416a-be7f-1a859fed1791" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f8efdcbd-a2e2-4446-b350-41f06906a959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7dc1de96-a23b-416a-be7f-1a859fed1791" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF193008482D" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Content-Length": [ + "84" + ], + "client-request-id": [ + "7dc1de96-a23b-416a-be7f-1a859fed1791" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:31 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f8efdcbd-a2e2-4446-b350-41f06906a959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "7dc1de96-a23b-416a-be7f-1a859fed1791" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "ETag": [ + "0x8D2AF193008482D" + ], + "Location": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3f29e5ff-41cb-4216-8f72-5aafcbb354f0" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "request-id": [ + "8f92abb5-fa94-49f5-a04f-e0e5d70c489f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "3f29e5ff-41cb-4216-8f72-5aafcbb354f0" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "ETag": [ + "0x8D2AF1930891197" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d0381f57-054c-417b-bfa2-9a3af4005936" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2AF193008482D\",\r\n \"creationTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"lastModified\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "99cc810b-b9ce-419a-82a6-24ed7d005dca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d0381f57-054c-417b-bfa2-9a3af4005936" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "ETag": [ + "0x8D2AF193008482D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDEuMi4wJnRpbWVvdXQ9MzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d0381f57-054c-417b-bfa2-9a3af4005936" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2AF193008482D\",\r\n \"creationTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"lastModified\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:32 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "99cc810b-b9ce-419a-82a6-24ed7d005dca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d0381f57-054c-417b-bfa2-9a3af4005936" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "ETag": [ + "0x8D2AF193008482D" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c84ca0ec-b179-4a55-9a4f-42aec02edb48" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "request-id": [ + "386bfd40-63a5-4535-bda8-d77adec64db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c84ca0ec-b179-4a55-9a4f-42aec02edb48" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "ETag": [ + "0x8D2AF1930C57D98" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c84ca0ec-b179-4a55-9a4f-42aec02edb48" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "request-id": [ + "386bfd40-63a5-4535-bda8-d77adec64db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c84ca0ec-b179-4a55-9a4f-42aec02edb48" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "ETag": [ + "0x8D2AF1930C57D98" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?terminate&api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP3Rlcm1pbmF0ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTAxLjIuMCZ0aW1lb3V0PTMw", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c84ca0ec-b179-4a55-9a4f-42aec02edb48" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Last-Modified": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "request-id": [ + "386bfd40-63a5-4535-bda8-d77adec64db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "c84ca0ec-b179-4a55-9a4f-42aec02edb48" + ], + "DataServiceVersion": [ + "3.0" + ], + "DataServiceId": [ + "https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "ETag": [ + "0x8D2AF1930C57D98" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2AF1930891197\",\r\n \"creationTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2AF1930C57D98\",\r\n \"creationTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.995356Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9b59c200-0078-4a2e-9051-0fb033dfb1bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2AF1930891197\",\r\n \"creationTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2AF1930C57D98\",\r\n \"creationTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.995356Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9b59c200-0078-4a2e-9051-0fb033dfb1bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2AF1930891197\",\r\n \"creationTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2AF1930C57D98\",\r\n \"creationTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.995356Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9b59c200-0078-4a2e-9051-0fb033dfb1bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D2AF1930891197\",\r\n \"creationTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.5053621Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.5993751Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://pstests.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D2AF1930C57D98\",\r\n \"creationTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"lastModified\": \"2015-08-27T19:53:33.995356Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-08-27T19:53:32.7553581Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2015-08-27T19:53:33.995356Z\",\r\n \"schedulingError\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "9b59c200-0078-4a2e-9051-0fb033dfb1bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "d3daf139-9984-4989-be07-78245601afce" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bce9dcf3-0fbb-40a1-bd92-efa9b31ec3bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bce9dcf3-0fbb-40a1-bd92-efa9b31ec3bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bce9dcf3-0fbb-40a1-bd92-efa9b31ec3bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2015-06-01.2.0&timeout=30", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAxNS0wNi0wMS4yLjAmdGltZW91dD0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "ocp-date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "return-client-request-id": [ + "true" + ], + "User-Agent": [ + "Microsoft.Azure.Batch.Protocol.BatchRestClient/2.0.1.0", + "AzBatch/2.0.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "bce9dcf3-0fbb-40a1-bd92-efa9b31ec3bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "client-request-id": [ + "f81dfa6a-b6a6-4891-802b-dfbe11d8e711" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 27 Aug 2015 19:53:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs new file mode 100644 index 000000000000..0f1c7144255a --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs @@ -0,0 +1,81 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Batch; +using Microsoft.Azure.Batch.Protocol; +using Microsoft.Azure.Batch.Protocol.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System.Collections.Generic; +using System.Management.Automation; +using System.Threading.Tasks; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; + +namespace Microsoft.Azure.Commands.Batch.Test.Tasks +{ + public class StopBatchTaskCommandTests + { + private StopBatchTaskCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public StopBatchTaskCommandTests() + { + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new StopBatchTaskCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void StopBatchTaskParametersTest() + { + // Setup cmdlet without the required parameters + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.JobId = "job-1"; + + Assert.Throws(() => cmdlet.ExecuteCmdlet()); + + cmdlet.Id = "testTask"; + + // Don't go to the service on a Terminate CloudTask call + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest request = + (BatchRequest)baseRequest; + + request.ServiceRequestFunc = (cancellationToken) => + { + CloudTaskTerminateResponse response = new CloudTaskTerminateResponse(); + Task task = Task.FromResult(response); + return task; + }; + }); + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Verify no exceptions when required parameters are set + cmdlet.ExecuteCmdlet(); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj index 85a73eef86da..0ff531a62022 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj @@ -161,10 +161,12 @@ + + @@ -254,6 +256,7 @@ + @@ -274,6 +277,7 @@ + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs new file mode 100644 index 000000000000..4cdeaa45b1d4 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs @@ -0,0 +1,33 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchJobSchedule)] + public class StopBatchJobScheduleCommand : BatchObjectModelCmdletBase + { + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job schedule to terminate.")] + [ValidateNotNullOrEmpty] + public string Id { get; set; } + + public override void ExecuteCmdlet() + { + BatchClient.TerminateJobSchedule(this.BatchContext, this.Id, this.AdditionalBehaviors); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs new file mode 100644 index 000000000000..6d405eb8353b --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs @@ -0,0 +1,41 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Commands.Batch.Models; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchJob)] + public class StopBatchJobCommand : BatchObjectModelCmdletBase + { + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job to terminate.")] + [ValidateNotNullOrEmpty] + public string Id { get; set; } + + [Parameter(Position = 1)] + public string TerminateReason { get; set; } + + public override void ExecuteCmdlet() + { + TerminateJobParameters parameters = new TerminateJobParameters(this.BatchContext, this.Id, null, this.AdditionalBehaviors) + { + TerminateReason = this.TerminateReason + }; + BatchClient.TerminateJob(parameters); + } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml b/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml index d3b6ab87f9e2..ab915fad1894 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml @@ -8869,5 +8869,552 @@ cmdletexample westus cmdletexamplerg {System.Collection https: - + + + + Stop-AzureBatchJobSchedule + + + Terminates the specified job schedule. + + + + + Stop + AzureBatchJobSchedule + + + + Terminates the specified job schedule. + + + + + Stop-AzureBatchJobSchedule + + Id + + The id of the job schedule to terminate. + + string + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + + + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + + BatchAccountContext + + BatchAccountContext + + + + + + Id + + The id of the job schedule to terminate. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Stop-AzureBatchJobSchedule "myJobSchedule" -BatchContext $context + + + Description + ----------- + Terminates the job schedule with id "myJobSchedule" + + + + + + + + + + + + + + + + + + + + + + + + Stop-AzureBatchJob + + + Terminates the specified job. + + + + + Stop + AzureBatchJob + + + + Terminates the specified job, marking it as completed. + + + + + Stop-AzureBatchJob + + Id + + The id of the job to terminate. + + string + + + TerminateReason + + The text you want to appear as the job's TerminateReason. + + DisableJobOption + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + + + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + + BatchAccountContext + + BatchAccountContext + + + + + + TerminateReason + + The text you want to appear as the job's TerminateReason. + + + DisableJobOption + + DisableJobOption + + + + + + Id + + The id of the job to terminate. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Stop-AzureBatchJob "myJob" "No more tasks to run" -BatchContext $context + + + Description + ----------- + Terminates the job with id "myJob". The supplied terminate reason is "No more tasks to run". + + + + + + + + + + + + + + + + + + + + + + + + Stop-AzureBatchTask + + + Terminates the specified task. + + + + + Stop + AzureBatchTask + + + + Terminates the specified task. + + + + + Stop-AzureBatchTask + + JobId + + The id of the job containing the task to terminate. + + string + + + Id + + The id of the task to terminate. + + string + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + + Stop-AzureBatchTask + + Task + + The PSCloudTask object representing the task to terminate. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object. + + PSCloudTask + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + BatchAccountContext + + + + + + + BatchContext + + The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated. + + + BatchAccountContext + + BatchAccountContext + + + + + + Task + + The PSCloudTask object representing the task to terminate. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object. + + + PSCloudTask + + PSCloudTask + + + + + + JobId + + The id of the job containing the task to terminate. + + + string + + string + + + + + + Id + + The id of the task to terminate. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Stop-AzureBatchTask "myJob" "myTask" -BatchContext $context + + + Description + ----------- + Terminates the task with id "myTask" under job "myJob". + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + Get-AzureBatchTask "myJob" "myTask" -BatchContext $context | Stop-AzureBatchTask -BatchContext $context + + + Description + ----------- + Terminates the task with id "myTask" under job "myJob" using the pipeline. + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs index fc76ff74b0b6..10afecb74dae 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs @@ -165,5 +165,24 @@ public void DisableJobSchedule(BatchAccountContext context, string jobScheduleId JobScheduleOperations jobScheduleOperations = context.BatchOMClient.JobScheduleOperations; jobScheduleOperations.DisableJobSchedule(jobScheduleId, additionBehaviors); } + + /// + /// Terminates the specified job schedule. + /// + /// The account to use. + /// The id of the job schedule to terminate. + /// Additional client behaviors to perform. + public void TerminateJobSchedule(BatchAccountContext context, string jobScheduleId, IEnumerable additionBehaviors = null) + { + if (string.IsNullOrWhiteSpace(jobScheduleId)) + { + throw new ArgumentNullException("jobScheduleId"); + } + + WriteVerbose(string.Format(Resources.TerminateJobSchedule, jobScheduleId)); + + JobScheduleOperations jobScheduleOperations = context.BatchOMClient.JobScheduleOperations; + jobScheduleOperations.TerminateJobSchedule(jobScheduleId, additionBehaviors); + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs index d935a3939a33..a0c6f1b595d1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs @@ -207,5 +207,23 @@ public void DisableJob(DisableJobParameters parameters) JobOperations jobOperations = parameters.Context.BatchOMClient.JobOperations; jobOperations.DisableJob(jobId, parameters.DisableJobOption, parameters.AdditionalBehaviors); } + + /// + /// Terminates the specified job. + /// + /// Specifies the job to terminate as well as the terminate reason. + public void TerminateJob(TerminateJobParameters parameters) + { + if (parameters == null) + { + throw new ArgumentNullException("parameters"); + } + + string jobId = parameters.Job == null ? parameters.JobId : parameters.Job.Id; + WriteVerbose(string.Format(Resources.TerminateJob, jobId)); + + JobOperations jobOperations = parameters.Context.BatchOMClient.JobOperations; + jobOperations.TerminateJob(jobId, parameters.TerminateReason, parameters.AdditionalBehaviors); + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs index f532dbb468b4..fae8c65a92d6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs @@ -156,5 +156,29 @@ public void DeleteTask(TaskOperationParameters parameters) jobOperations.DeleteTask(parameters.JobId, parameters.TaskId, parameters.AdditionalBehaviors); } } + + /// + /// Terminates the specified task. + /// + /// The parameters indicating which task to terminate. + public void TerminateTask(TaskOperationParameters parameters) + { + if (parameters == null) + { + throw new ArgumentNullException("parameters"); + } + + WriteVerbose(string.Format(Resources.TerminateTask, parameters.Task == null ? parameters.TaskId : parameters.Task.Id)); + + if (parameters.Task != null) + { + parameters.Task.omObject.Terminate(parameters.AdditionalBehaviors); + } + else + { + JobOperations jobOperations = parameters.Context.BatchOMClient.JobOperations; + jobOperations.TerminateTask(parameters.JobId, parameters.TaskId, parameters.AdditionalBehaviors); + } + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/TerminateJobParameters.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/TerminateJobParameters.cs new file mode 100644 index 000000000000..8fe0513e2039 --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/TerminateJobParameters.cs @@ -0,0 +1,33 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Batch; +using Microsoft.Azure.Batch.Common; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public class TerminateJobParameters : JobOperationParameters + { + public TerminateJobParameters(BatchAccountContext context, string jobId, PSCloudJob job, IEnumerable additionalBehaviors = null) + : base(context, jobId, job, additionalBehaviors) + { } + + /// + /// The text you want to appear as the job's TerminateReason. + /// + public string TerminateReason { get; set; } + } +} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs index ebf520d63f09..2cdd535fcb21 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs @@ -806,5 +806,32 @@ internal static string SBPR_StopResizingPool { return ResourceManager.GetString("SBPR_StopResizingPool", resourceCulture); } } + + /// + /// Looks up a localized string similar to Terminating job {0}.. + /// + internal static string TerminateJob { + get { + return ResourceManager.GetString("TerminateJob", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Terminating job schedule {0}.. + /// + internal static string TerminateJobSchedule { + get { + return ResourceManager.GetString("TerminateJobSchedule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Terminating task {0}.. + /// + internal static string TerminateTask { + get { + return ResourceManager.GetString("TerminateTask", resourceCulture); + } + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx index b92e2ee2a8ca..48f631cd23a2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx @@ -367,4 +367,13 @@ Stopping resize operation on pool {0}. + + Terminating job {0}. + + + Terminating job schedule {0}. + + + Terminating task {0}. + \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs new file mode 100644 index 000000000000..cc2f156c964c --- /dev/null +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Batch.Models; +using System; +using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchTask)] + public class StopBatchTaskCommand : BatchObjectModelCmdletBase + { + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the task to terminate.")] + [ValidateNotNullOrEmpty] + public string JobId { get; set; } + + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task to terminate.")] + [ValidateNotNullOrEmpty] + public string Id { get; set; } + + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, Mandatory = true, ValueFromPipeline = true, HelpMessage = "The PSCloudTask object representing the task to terminate.")] + [ValidateNotNullOrEmpty] + public PSCloudTask Task { get; set; } + + public override void ExecuteCmdlet() + { + TaskOperationParameters parameters = new TaskOperationParameters(this.BatchContext, this.JobId, + this.Id, this.Task, this.AdditionalBehaviors); + BatchClient.TerminateTask(parameters); + } + } +}